Skip to content

Commit

Permalink
Use syclcompat::dp4a
Browse files Browse the repository at this point in the history
  • Loading branch information
aacostadiaz committed Dec 5, 2024
1 parent e322028 commit 174c0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cutlass/numeric_conversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -3667,7 +3667,7 @@ struct NumericArrayConverter<float, int8_t, N, Round> {
#if defined(__CUDA_ARCH__)
t[ii] = __dp4a(x, mask[ii], 0);
#else
t[ii] = x * mask[ii];
t[ii] = syclcompat::dp4a(x, mask[ii], 0);
#endif
r[ii] = static_cast<float>(t[ii]);
}
Expand Down

0 comments on commit 174c0b9

Please sign in to comment.