summaryrefslogtreecommitdiff
path: root/examples/poiseulle_3d_gpu
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-02-16 17:51:04 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-02-16 17:51:04 +0100
commit17a125cbb9245084b22fa76cd3bc064ee22e3d76 (patch)
tree340b565ed198e2f6c930229d17a74bcd4b54cc38 /examples/poiseulle_3d_gpu
parent395bb98e6fd70d8f70edad21ff381c16a9e45c1f (diff)
downloadlibs-lbm-17a125cbb9245084b22fa76cd3bc064ee22e3d76.tar.gz
Add 3D GPU
Diffstat (limited to 'examples/poiseulle_3d_gpu')
-rw-r--r--examples/poiseulle_3d_gpu/sim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/poiseulle_3d_gpu/sim.cpp b/examples/poiseulle_3d_gpu/sim.cpp
index e3305d6..52893a2 100644
--- a/examples/poiseulle_3d_gpu/sim.cpp
+++ b/examples/poiseulle_3d_gpu/sim.cpp
@@ -18,7 +18,7 @@ constexpr uint64_t particle_size = 128ul;
namespace sch {
using namespace saw::schema;
-using InfoChunk = Chunk<UInt8, 0u, dim_x, dim_y>;
+using InfoChunk = Chunk<UInt8, 0u, dim_x, dim_y, dim_z>;
template<typename T, typename Desc>
using DfChunk = Chunk<FixedArray<T,Desc::Q>, 1u, dim_x, dim_y, dim_z>;