Skip to content

Commit a7dd8cb

Browse files
committed
Disable conversions for now
Signed-off-by: Dmitry Sidorov <[email protected]>
1 parent afb1e61 commit a7dd8cb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

sycl/test/multi_ptr/multi_ptr.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,11 @@ template <typename T> void testMultPtr() {
9898
global_ptr<void> ptr_8 = global_ptr<void>(ptr_7);
9999
host_ptr<void> ptr_9((void *)RawPtr);
100100
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);
101+
// TODO: neen propagation of a7b763b26 patch to acl tool before testing
102+
// 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);
103106

104107
innerFunc<T>(wiID.get(0), ptr_1, ptr_2, local_ptr);
105108
});

0 commit comments

Comments
 (0)