diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-10 15:21:55 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-10 15:21:55 +0200 |
commit | abeea9920c11231ed24db00e9f68b4490c12a61b (patch) | |
tree | 8cbcc1053a0b69c12c59e8dfdbe576d13520240d /tests/descriptor.cpp | |
parent | 4ffcce338176350465dbd4245ad443b766d196f0 (diff) |
Reworking from AoS to SoA for data handling
Diffstat (limited to 'tests/descriptor.cpp')
-rw-r--r-- | tests/descriptor.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/descriptor.cpp b/tests/descriptor.cpp index 5e23ebc..a8337e6 100644 --- a/tests/descriptor.cpp +++ b/tests/descriptor.cpp @@ -19,6 +19,11 @@ void check_opposite_dirs(){ } } +SAW_TEST("Opposites and Dirs D1Q3"){ + using namespace kel; + check_opposite_dirs<lbm::sch::Descriptor<1,3>>(); +} + SAW_TEST("Opposites and Dirs D2Q5"){ using namespace kel; check_opposite_dirs<lbm::sch::Descriptor<2,5>>(); |