diff options
Diffstat (limited to 'modules/remote-sycl/c++')
-rw-r--r-- | modules/remote-sycl/c++/remote.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/remote-sycl/c++/remote.hpp b/modules/remote-sycl/c++/remote.hpp index 3073b23..3be3c79 100644 --- a/modules/remote-sycl/c++/remote.hpp +++ b/modules/remote-sycl/c++/remote.hpp @@ -4,11 +4,11 @@ namespace saw { namespace rmt { -struct OpenCl {}; +struct Sycl {}; } template<> -class remote<rmt::OpenCl> { +class remote<rmt::Sycl> { private: SAW_FORBID_COPY(remote); SAW_FORBID_MOVE(remote); @@ -17,20 +17,20 @@ public: /* error_or<void> create_remote(){ - return remote<rmt::OpenCl>{*this}; + return remote<rmt::Sycl>{*this}; } */ }; template<> -struct remote_address<rmt::OpenCl> { +struct remote_address<rmt::Sycl> { private: - remote<rmt::OpenCl>* ctx_; + remote<rmt::Sycl>* ctx_; SAW_FORBID_COPY(remote_address); SAW_FORBID_MOVE(remote_address); public: - remote_address(remote<rmt::OpenCl>& r_ctx): + remote_address(remote<rmt::Sycl>& r_ctx): ctx_{&r_ctx} {} |