From 51fe4f7b07300b67c109838890603ff703c3c953 Mon Sep 17 00:00:00 2001 From: "Larsen, Steffen" Date: Thu, 18 Aug 2022 08:52:50 -0700 Subject: [PATCH] [SYCL] Fix use of deprecated address space naming This commit changes the use of the deprecated access::address_space::global_device_space address space to use the extension naming access::address_space::ext_intel_global_device_space instead. Signed-off-by: Larsen, Steffen --- SYCL/Basic/multi_ptr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SYCL/Basic/multi_ptr.cpp b/SYCL/Basic/multi_ptr.cpp index eab790f09c..e1b05aefa0 100644 --- a/SYCL/Basic/multi_ptr.cpp +++ b/SYCL/Basic/multi_ptr.cpp @@ -151,7 +151,8 @@ template void testMultPtrArrowOperator() { auto ptr_3 = make_ptr, access::address_space::local_space>( accessorData_3.get_pointer()); auto ptr_4 = - make_ptr, access::address_space::global_device_space>( + make_ptr, + access::address_space::ext_intel_global_device_space>( accessorData_4.get_pointer()); auto x1 = ptr_1 -> x;