There will probably be a number of changes, but the main one is to update the accessors to use the simpler form:
auto ka = d_a->template get_access<access::mode::read>(cgh); // SYCL 1.2.1
auto ka = d_a->template get_access(cgh, sycl::read_only); // SYCL 2020 Provisional
Should probably use accessor constructers instead of get_access, with read and write versions.
Implement Dot using the reduction support in SYCL 2020 Provisional.
There will probably be a number of changes, but the main one is to update the accessors to use the simpler form:
Should probably use
accessor
constructers instead ofget_access
, with read and write versions.Implement Dot using the reduction support in SYCL 2020 Provisional.