We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae57ff commit 4a3ec54Copy full SHA for 4a3ec54
sycl/include/sycl/types.hpp
@@ -678,6 +678,10 @@ template <typename Type, int NumElements> class vec {
678
679
// Whole vector conversion can only be done, if:
680
constexpr bool canUseNativeVectorConvert =
681
+#ifdef __NVPTX__
682
+ // - we are on CUDA, see intel/llvm#11840
683
+ false &&
684
+#endif // __NVPTX__
685
// - both vectors are represented using native vector types;
686
NativeVec && vec<convertT, NumElements>::NativeVec &&
687
// - it is not a signed to unsigned (or vice versa) conversion
0 commit comments