diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-18 17:46:04 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-18 17:46:04 +0100 |
| commit | 668e53e42e210d2cedf29281eb187e8d7f129651 (patch) | |
| tree | da3034eb02203cd9882c6de13ec556aaf6ac19ae /modules/remote-sycl/tests/data_ref.cpp | |
| parent | e2071b41bf8547057c485fea2a8d3aed7bb710ed (diff) | |
| download | forstio-forstio-668e53e42e210d2cedf29281eb187e8d7f129651.tar.gz | |
Working on tests in sycl
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}; + +} +} |
