summaryrefslogtreecommitdiff
path: root/modules/remote-sycl/c++/rpc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/remote-sycl/c++/rpc.hpp')
-rw-r--r--modules/remote-sycl/c++/rpc.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/remote-sycl/c++/rpc.hpp b/modules/remote-sycl/c++/rpc.hpp
index da2eeaa..8cb4d8d 100644
--- a/modules/remote-sycl/c++/rpc.hpp
+++ b/modules/remote-sycl/c++/rpc.hpp
@@ -48,14 +48,14 @@ public:
/**
* Wait for the data
*/
- error_or<data<T,Encoding,Storage>> wait(){
+ error_or<data<T,Encoding>> wait(){
return make_error<err::not_implemented>();
}
/**
* Request data asynchronously
*/
- // conveyor<data<T,Encoding,Storage>> on_receive(); /// Stopped here
+ // conveyor<data<T,Encoding>> on_receive(); /// Stopped here
};
/**
@@ -151,7 +151,7 @@ public:
>
> call(const data_or_id<typename schema_member_type<Name, Iface>::type::RequestT, Encoding>& input){
auto next_free_id = srv_->template next_free_id<typename schema_member_type<Name, Iface>::type::ResponseT>();
- return srv_->template call<Name, Storage>(input, next_free_id);
+ return srv_->template call<Name>(input, next_free_id);
}
};
@@ -180,7 +180,7 @@ private:
/**
* The interface including the relevant context class.
*/
- interface<Iface, Encoding, storage::Default, InterfaceCtxT> cl_interface_;
+ interface<Iface, Encoding, InterfaceCtxT> cl_interface_;
public:
@@ -205,7 +205,7 @@ public:
/**
template<typename IdT, typename Storage>
- remote_data<IdT, Encoding, Storage, rmt::Sycl> request_data(id<IdT> dat_id){
+ remote_data<IdT, Encoding, rmt::Sycl> request_data(id<IdT> dat_id){
return {dat_id, std::get<id_map<IdT,Encoding,rmt::Sycl>>(storage_.maps), device_->get_handle()};
}
*/