summaryrefslogtreecommitdiff
path: root/modules/remote-hip/c++/data.hpp
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-09-17 11:21:05 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-09-17 11:21:05 +0200
commit1d578450dc82843bd4b24f3a6aad2c1a82bbda5e (patch)
treefdb34a5629308fad6ef9c5e3f0a4290bb688c3c4 /modules/remote-hip/c++/data.hpp
parentb23b2276b1ab7977e4cea721322f9d31f6ef85ca (diff)
Managed to get hip to compile
Diffstat (limited to 'modules/remote-hip/c++/data.hpp')
-rw-r--r--modules/remote-hip/c++/data.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/remote-hip/c++/data.hpp b/modules/remote-hip/c++/data.hpp
index 3e7c3ed..5d3635f 100644
--- a/modules/remote-hip/c++/data.hpp
+++ b/modules/remote-hip/c++/data.hpp
@@ -8,16 +8,16 @@ namespace saw {
* Generic wrapper class which stores data on the sycl side.
* Most of the times this will be a root object.
*/
-template<typename Schema>
-class data<Schema, encode::Hip<encode::Native>> {
+template<typename Schema,typename T>
+class data<Schema, encode::Hip<T>> {
private:
- data<Schema, encode::Native>* data_;
+ data<Schema, T>* data_;
public:
data():
data_{nullptr}
{}
- data<Schema, encode::Native>** get_device_data() {
+ data<Schema, T>** get_device_data() {
return &data_;
}
};