From 82006ae71c1ff89dc32f2bb4b76c61857b2f6874 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 13 May 2024 10:08:56 +0200 Subject: Continud renaming of opencl to sycl --- modules/remote-sycl/SConstruct | 13 ++++++------- modules/remote-sycl/c++/remote.hpp | 12 ++++++------ 2 files changed, 12 insertions(+), 13 deletions(-) (limited to 'modules/remote-sycl') diff --git a/modules/remote-sycl/SConstruct b/modules/remote-sycl/SConstruct index a27e6d7..e084925 100644 --- a/modules/remote-sycl/SConstruct +++ b/modules/remote-sycl/SConstruct @@ -46,13 +46,12 @@ env_vars.Add('prefix', env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[], CPPDEFINES=['SAW_UNIX'], CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'], - LIBS=[ - 'forstio-core', - 'forstio-codec', - 'forstio-async', - 'forstio-io', - 'forstio-io_codec', - 'OpenCL' + LIBS=['forstio-core' + ,'forstio-codec' + ,'forstio-async' + ,'forstio-io' + ,'forstio-io_codec' + #,'OpenCL' ] ); env.__class__.add_source_files = add_kel_source_files 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 { +class remote { private: SAW_FORBID_COPY(remote); SAW_FORBID_MOVE(remote); @@ -17,20 +17,20 @@ public: /* error_or create_remote(){ - return remote{*this}; + return remote{*this}; } */ }; template<> -struct remote_address { +struct remote_address { private: - remote* ctx_; + remote* ctx_; SAW_FORBID_COPY(remote_address); SAW_FORBID_MOVE(remote_address); public: - remote_address(remote& r_ctx): + remote_address(remote& r_ctx): ctx_{&r_ctx} {} -- cgit v1.2.3