diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-08 20:15:59 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-08 20:15:59 +0200 |
| commit | 3a27bca74e7645874e52f101d467aff8ff7d78f4 (patch) | |
| tree | b5f742bd3f146a9747c159f9fd8d099a6d566c1f /default.nix | |
| parent | 5ea4875b96bfacd4c5f0125c9e7b64b70f0ccfb9 (diff) | |
| parent | 932fbf86d60df48623ad5fbc9d60e572bb68ef12 (diff) | |
| download | libs-lbm-3a27bca74e7645874e52f101d467aff8ff7d78f4.tar.gz | |
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/default.nix b/default.nix index d233d90..53c11d3 100644 --- a/default.nix +++ b/default.nix @@ -122,6 +122,11 @@ in rec { inherit kel; }; + moving_poiseulle_particles_2d_hlbm_gpu = pkgs.callPackage ./examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix/derivation.nix { + inherit pname version stdenv forstio adaptive-cpp; + inherit kel; + }; + poiseulle_particles_2d_psm_gpu = pkgs.callPackage ./examples/poiseulle_particles_2d_psm_gpu/.nix/derivation.nix { inherit pname version stdenv forstio adaptive-cpp; inherit kel; @@ -147,6 +152,11 @@ in rec { inherit kel; }; + poiseulle_particles_2d_gpu = pkgs.callPackage ./examples/poiseulle_particles_2d_gpu/.nix/derivation.nix { + inherit pname version stdenv forstio adaptive-cpp; + inherit kel; + }; + poiseulle_3d = pkgs.callPackage ./examples/poiseulle_3d/.nix/derivation.nix { inherit pname version stdenv forstio adaptive-cpp; inherit kel; @@ -161,11 +171,23 @@ in rec { inherit pname version stdenv forstio adaptive-cpp; inherit kel; }; + + settling_cubes_2d_hlbm_gpu = pkgs.callPackage ./examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix { + inherit pname version stdenv forstio adaptive-cpp; + inherit kel; + }; heterogeneous_computing = pkgs.callPackage ./examples/heterogeneous_computing/.nix/derivation.nix { inherit pname version stdenv forstio adaptive-cpp; inherit kel; }; + + settling_particles = pkgs.symlinkJoin { + name = "kel-lbm-settling_particles-${version}"; + paths = [ + examples.settling_cubes_2d_ibm_gpu + ]; + }; }; debug = { |
