summaryrefslogtreecommitdiff
path: root/modules/sycl/tests/data.cpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-07-05 15:59:23 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-07-05 15:59:23 +0200
commitc0549d71b2109f10c1238db8b22362e7826ba61b (patch)
tree16cd5264fcc3afe912e1b1b67738c8940d6d1177 /modules/sycl/tests/data.cpp
parent9a3147bc79caf3c0fb1a9cdee29d156b5ff092c7 (diff)
downloadlibs-lbm-c0549d71b2109f10c1238db8b22362e7826ba61b.tar.gz
Just rename from lib to modules
Diffstat (limited to 'modules/sycl/tests/data.cpp')
-rw-r--r--modules/sycl/tests/data.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/modules/sycl/tests/data.cpp b/modules/sycl/tests/data.cpp
new file mode 100644
index 0000000..4321a0d
--- /dev/null
+++ b/modules/sycl/tests/data.cpp
@@ -0,0 +1,56 @@
+#include <forstio/test/suite.hpp>
+
+#include "../c++/lbm.hpp"
+
+namespace {
+
+namespace sch {
+using namespace kel::lbm::sch;
+using TestObjSchema = Tuple<
+ Member<FixedArray<UInt64,2u,2u>, "foo">,
+ Member<Array<Float32>, "bar">,
+ Member<
+ Array<
+ Struct<
+ Member<FixedArray<Float32,2u>,"pos">
+ >
+ >,
+ "baz"
+ >
+>;
+}
+
+SAW_TEST("Sycl Data Compilation"){
+ acpp::sycl::queue q;
+ saw::data<
+ saw::schema::Struct<
+ saw::schema::Member<
+ kel::lbm::sch::Chunk<saw::schema::UInt8,1u,1u,1u>,
+ "test"
+ >
+ >,
+ kel::lbm::encode::Sycl<saw::encode::Native>
+ > dat{q};
+
+ auto& test_f = dat.template get<"test">();
+
+ // test_f.at({}).set(1);
+ // SAW_EXPECT(test_f.at({}).get() == 1, "Value check failed");
+}
+
+SAW_TEST("Sycl Data Array of Struct"){
+ acpp::sycl::queue q;
+
+ saw::data<sch::Array<sch::Float64>, kel::lbm::encode::Sycl<saw::encode::Native>> a{{{2u}},q};
+}
+
+/*
+SAW_TEST("Sycl Data Compilation for Particle Similacrum"){
+ acpp::sycl::queue q;
+
+ saw::data<
+ sch::TestObjSchema
+ > a;
+}
+*/
+}