File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
sycl/test-e2e/DeviceGlobal Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,15 @@ oneapiext::device_global<int> DGCopy2{DGInit2};
2020oneapiext::device_global<float > DGInit3{5 .0f };
2121oneapiext::device_global<int > DGCopy3{DGInit3};
2222
23- oneapiext::device_global<const int , decltype (oneapiext::properties{oneapiext::device_image_scope})> DGInit4{6 };
23+ oneapiext::device_global<const int , decltype (oneapiext::properties{
24+ oneapiext::device_image_scope})>
25+ DGInit4{6 };
2426oneapiext::device_global<const int > DGCopy4{DGInit4};
2527
2628oneapiext::device_global<const int > DGInit5{7 };
27- oneapiext::device_global<const int , decltype (oneapiext::properties{oneapiext::host_access_read})> DGCopy5{DGInit5};
29+ oneapiext::device_global<const int , decltype (oneapiext::properties{
30+ oneapiext::host_access_read})>
31+ DGCopy5{DGInit5};
2832
2933int main () {
3034 sycl::queue Q;
You can’t perform that action at this time.
0 commit comments