summaryrefslogtreecommitdiff
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
parent92f5645809449f56c39c0e4c6c29045b8a4acea6 (diff)
downloadlibs-lbm-b4d803b73839aa1281d3b81782291b4de15da241.tar.gz
Change to HLBM
-rw-r--r--default.nix2
-rw-r--r--examples/poiseulle_particles_2d_gpu/sim.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/default.nix b/default.nix
index 9f5aa82..706c48f 100644
--- a/default.nix
+++ b/default.nix
@@ -68,7 +68,7 @@ let
src = builtins.fetchurl {
url = "https://git.keldu.de/forstio-forstio/snapshot/master.tar.gz";
- sha256 = "sha256:026scvd9015blphbj49d0cv5wfrxh1szzdv3p212wzk4iw643akj";
+ sha256 = "sha256:10dffxzkyvm705l75vypl95dg40b68p5qqfizcx7ppcqyzz1h779";
};
phases = [ "unpackPhase" "installPhase" ];
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;