You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the current implementation of hipSYCL supposed to have support for popcount()?
I get the following error when compiling SYCL code that uses popcount with the syclcc compiler from hipSYCL.
error: ‘popcount’ is not a member of ‘cl::sycl’
The text was updated successfully, but these errors were encountered:
popcount is not yet implemented. We will add it together with other bit count functions such as ctz and clz which are also still missing.
If you need this functionality urgently, you can use hipSYCL's backend interoperability mechanisms to invoke CUDA/HIP intrinsics such as __popc().
See https://github.com/illuhad/hipSYCL/blob/develop/doc/hip-source-interop.md
Is the current implementation of hipSYCL supposed to have support for popcount()?
I get the following error when compiling SYCL code that uses popcount with the syclcc compiler from hipSYCL.
error: ‘popcount’ is not a member of ‘cl::sycl’
The text was updated successfully, but these errors were encountered: