Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 9984605

Browse files
gshtrascharlifu
andauthored
[AMD][CI/Build] Disambiguation of the function call for ROCm 6.2 headers compatibility (vllm-project#7477)
Co-authored-by: Charlie Fu <[email protected]>
1 parent 7eebe8c commit 9984605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csrc/attention/attention_utils.cuh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ inline __device__ float qk_dot_(const Vec (&q)[N], const Vec (&k)[N]) {
3434
A_vec qk_vec = mul<A_vec, Vec, Vec>(q[0], k[0]);
3535
#pragma unroll
3636
for (int ii = 1; ii < N; ++ii) {
37-
qk_vec = fma(q[ii], k[ii], qk_vec);
37+
qk_vec = vllm::fma(q[ii], k[ii], qk_vec);
3838
}
3939

4040
// Finalize the reduction across lanes.

0 commit comments

Comments
 (0)