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 afb1e61 commit a7dd8cbCopy full SHA for a7dd8cb
sycl/test/multi_ptr/multi_ptr.cpp
@@ -98,8 +98,11 @@ template <typename T> void testMultPtr() {
98
global_ptr<void> ptr_8 = global_ptr<void>(ptr_7);
99
host_ptr<void> ptr_9((void *)RawPtr);
100
global_ptr<void> ptr_10 = global_ptr<void>(ptr_9);
101
- device_ptr<T> ptr_11(accessorData_1);
102
- global_ptr<T> ptr_12 = global_ptr<T>(ptr_11);
+ // TODO: neen propagation of a7b763b26 patch to acl tool before testing
+ // these conversions - otherwise the test would fail on accelerator
103
+ // device during reversed translation from SPIR-V to LLVM IR
104
+ // device_ptr<T> ptr_11(accessorData_1);
105
+ // global_ptr<T> ptr_12 = global_ptr<T>(ptr_11);
106
107
innerFunc<T>(wiID.get(0), ptr_1, ptr_2, local_ptr);
108
});
0 commit comments