diff options
Diffstat (limited to 'modules/remote-sycl/c++/data.hpp')
-rw-r--r-- | modules/remote-sycl/c++/data.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/remote-sycl/c++/data.hpp b/modules/remote-sycl/c++/data.hpp index f50d10a..7763952 100644 --- a/modules/remote-sycl/c++/data.hpp +++ b/modules/remote-sycl/c++/data.hpp @@ -12,7 +12,7 @@ template<typename Schema> class data<Schema, encode::Sycl<encode::Native>> { private: cl::sycl::buffer<data<Schema, encode::Native>> data_; - data<schema::UInt64, encode::Sycl<encode::Native>> size_; + data<schema::UInt64, encode::Native> size_; public: data(const data<Schema, encode::Native>& data__): data_{&data__, 1u}, @@ -27,7 +27,7 @@ public: return data_; } - data<schema::UInt64, encode::Sycl<encode::Native>> size() const { + data<schema::UInt64, encode::Native> size() const { return size_; } |