diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-07 14:20:16 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-07 14:20:16 +0200 |
commit | b192777212c3de6a9d25c5519269d9047865b2d1 (patch) | |
tree | 175d003d71bb34b80a44cbb2cbb18068681abbfb /modules/remote-sycl/c++/data.hpp | |
parent | 76a4a5594fbd72a376f107a46bebd29b78c66a6e (diff) |
Fixed Sycl compilation issues to to recursive use
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_; } |