diff options
Diffstat (limited to 'modules/remote-sycl/tests/data_ref.cpp')
| -rw-r--r-- | modules/remote-sycl/tests/data_ref.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/remote-sycl/tests/data_ref.cpp b/modules/remote-sycl/tests/data_ref.cpp new file mode 100644 index 0000000..03afb8f --- /dev/null +++ b/modules/remote-sycl/tests/data_ref.cpp @@ -0,0 +1,18 @@ +#include <forstio/test/suite.hpp> + +#include "../c++/data.hpp" + +namespace { +namespace sch { +using namespace saw::schema; +} + +SAW_TEST("Data Ref Basics"){ + using namespace saw; + + acpp::sycl::queue sycl_q; + + data<sch::Array<sch::Float64>, encode::Sycl<encode::Native>> dat{{{100u}},sycl_q}; + +} +} |
