-
Notifications
You must be signed in to change notification settings - Fork 10.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sycl: Use syclcompat::dp4a #10267
sycl: Use syclcompat::dp4a #10267
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1830,33 +1830,6 @@ namespace dpct | |
: id); | ||
} | ||
|
||
template <typename T> | ||
sycl::vec<T, 4> extract_and_sign_or_zero_extend4(T val) | ||
{ | ||
return sycl::vec<T, 1>(val) | ||
.template as<sycl::vec< | ||
std::conditional_t<std::is_signed_v<T>, int8_t, uint8_t>, 4>>() | ||
.template convert<T>(); | ||
} | ||
|
||
template <typename T1, typename T2> | ||
using dot_product_acc_t = | ||
std::conditional_t<std::is_unsigned_v<T1> && std::is_unsigned_v<T2>, | ||
uint32_t, int32_t>; | ||
|
||
template <typename T1, typename T2, typename T3> | ||
inline auto dp4a(T1 a, T2 b, T3 c) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggest replacing the dp4a() implementation by syclcompat::dp4a().
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We tried this approach some time ago in a different PR, but it was closed because faster implementations requires asm and intrinsics for every backend, and we agreed to limit ourselves to pure SYCL code. Right now, there is no way to get visibility of int intrinsics (dp4a equivalents), and the syclcompat layer shipped as part of oneAPI is trying to bridge that (and other gaps) until they are made avialable through SYCL or an extension. With this approach, backend specific improvements are removed from the app itself. do you think we could use this PR to agree what to do with regards to syclcompat? The main problem is that dp4a is a major performance gap with other backends due to the software implementation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I didn't clarify my idea. Because there is no test data for Intel GPU. If it's bad, we can add code branch in dpct::dp4a() for Intel GPU with old code. If all models call syclcompat::dp4a() directly as this PR, it's complex to implement for more branches case. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have to be careful of branching inside dp4a though, as we would introduce branching inside the kernels. Thanks for the clarification! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As long as we don't add any branching I'm fine with wrapping |
||
{ | ||
dot_product_acc_t<T1, T2> res = c; | ||
auto va = extract_and_sign_or_zero_extend4(a); | ||
auto vb = extract_and_sign_or_zero_extend4(b); | ||
res += va[0] * vb[0]; | ||
res += va[1] * vb[1]; | ||
res += va[2] * vb[2]; | ||
res += va[3] * vb[3]; | ||
return res; | ||
} | ||
|
||
struct sub_sat | ||
{ | ||
template <typename T> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"some backends" is strange to SYCL backend.
Maybe "some platforms" or “some GPUs".
"more recent" -> "newer"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reworded this in 1c16516