summaryrefslogtreecommitdiff
path: root/modules/remote-sycl/c++/device.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/remote-sycl/c++/device.hpp')
-rw-r--r--modules/remote-sycl/c++/device.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/remote-sycl/c++/device.hpp b/modules/remote-sycl/c++/device.hpp
index 6d4dbbf..a050078 100644
--- a/modules/remote-sycl/c++/device.hpp
+++ b/modules/remote-sycl/c++/device.hpp
@@ -37,7 +37,7 @@ public:
template<typename Schema, typename Encoding>
error_or<data<Schema, Encoding>> copy_to_host(data<Schema, encode::Sycl<Encoding>>& dev_data){
/**
- data<Schema,Encoding, Storage> host_data;
+ data<Schema,Encoding> host_data;
cmd_queue_.submit([&](cl::sycl::handler& h){
auto acc_buff = dev_data.template access<cl::sycl::access::mode::read>(h);
h.copy(acc_buff, &host_data);