summaryrefslogtreecommitdiff
path: root/examples/poiseulle_particles_2d_gpu
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-02-16 15:01:42 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-02-16 15:01:42 +0100
commitb4d803b73839aa1281d3b81782291b4de15da241 (patch)
treef9a1674eef67bec29b56d84e15345b66db5b5e2f /examples/poiseulle_particles_2d_gpu
parent92f5645809449f56c39c0e4c6c29045b8a4acea6 (diff)
downloadlibs-lbm-b4d803b73839aa1281d3b81782291b4de15da241.tar.gz
Change to HLBM
Diffstat (limited to 'examples/poiseulle_particles_2d_gpu')
-rw-r--r--examples/poiseulle_particles_2d_gpu/sim.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/poiseulle_particles_2d_gpu/sim.cpp b/examples/poiseulle_particles_2d_gpu/sim.cpp
index 887c476..d12b7f5 100644
--- a/examples/poiseulle_particles_2d_gpu/sim.cpp
+++ b/examples/poiseulle_particles_2d_gpu/sim.cpp
@@ -158,8 +158,8 @@ saw::error_or<void> step(
// auto coll_ev =
q.submit([&](acpp::sycl::handler& h){
// Need nicer things to handle the flow. I see improvement here
- component<T,Desc,cmpt::BGK, encode::Sycl<saw::encode::Native>> collision{0.6};
- // component<T,Desc,cmpt::HLBM,encode::Sycl<saw::encode::Native>> collision{0.6};
+ // component<T,Desc,cmpt::BGK, encode::Sycl<saw::encode::Native>> collision{0.6};
+ component<T,Desc,cmpt::HLBM,encode::Sycl<saw::encode::Native>> collision{0.6};
component<T,Desc,cmpt::BounceBack,encode::Sycl<saw::encode::Native>> bb;
saw::data<sch::Scalar<T>> rho_b;