diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-02-16 14:39:38 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-02-16 14:39:48 +0100 |
| commit | 92f5645809449f56c39c0e4c6c29045b8a4acea6 (patch) | |
| tree | 36e6a698dc76196cc74fb1450e2216ce7650f4ef /examples/poiseulle_particles_2d_gpu/sim.cpp | |
| parent | 6e0412d790cb5990364531f65e287f9867696da2 (diff) | |
| download | libs-lbm-92f5645809449f56c39c0e4c6c29045b8a4acea6.tar.gz | |
Dangling changes
Diffstat (limited to 'examples/poiseulle_particles_2d_gpu/sim.cpp')
| -rw-r--r-- | examples/poiseulle_particles_2d_gpu/sim.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/poiseulle_particles_2d_gpu/sim.cpp b/examples/poiseulle_particles_2d_gpu/sim.cpp index 6d5452e..887c476 100644 --- a/examples/poiseulle_particles_2d_gpu/sim.cpp +++ b/examples/poiseulle_particles_2d_gpu/sim.cpp @@ -158,7 +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::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; @@ -329,7 +330,7 @@ saw::error_or<void> lbm_main(int argc, char** argv){ } } sycl_q.wait(); - saw::data<sch::UInt64> time_steps{256ul}; + saw::data<sch::UInt64> time_steps{2048ul}; for(saw::data<sch::UInt64> i{0u}; i < time_steps and krun; ++i){ { |
