summaryrefslogtreecommitdiff
path: root/modules/remote-hip/c++/data.hpp
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-23 17:15:18 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-08-23 17:15:18 +0200
commit53738bc556fc13c80dacdb56633ef8b7441e6566 (patch)
treecae2db95c2e968bd87884c8d7db801bac282ef3a /modules/remote-hip/c++/data.hpp
parent8ce89771d2c59cc4549d721e574af462683da15a (diff)
prepare for hip setup
Diffstat (limited to 'modules/remote-hip/c++/data.hpp')
-rw-r--r--modules/remote-hip/c++/data.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/remote-hip/c++/data.hpp b/modules/remote-hip/c++/data.hpp
new file mode 100644
index 0000000..04c8111
--- /dev/null
+++ b/modules/remote-hip/c++/data.hpp
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "common.hpp"
+
+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>> {
+private:
+public:
+ data(const data<Schema, encode::Native>& data__)
+ {}
+};
+}