diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-07-02 19:46:02 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-07-02 19:46:02 +0200 |
commit | 25e05907f0292310eaae27a032db0ee274413874 (patch) | |
tree | 283de0ebb6b61add2221436a77bb09e2ff101080 /modules/remote-sycl/.nix | |
parent | e51d2b1c0493dfd30d1622c8a0628ecf98c92f1c (diff) |
Preparing benchmark work
Diffstat (limited to 'modules/remote-sycl/.nix')
-rw-r--r-- | modules/remote-sycl/.nix/derivation.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/remote-sycl/.nix/derivation.nix b/modules/remote-sycl/.nix/derivation.nix index 71c5dff..ba6d1ec 100644 --- a/modules/remote-sycl/.nix/derivation.nix +++ b/modules/remote-sycl/.nix/derivation.nix @@ -12,6 +12,7 @@ , bash , build_examples ? "false" +, build_benchmarks ? "false" }: let @@ -33,8 +34,6 @@ in stdenv.mkDerivation { forstio.core forstio.codec forstio.async - forstio.io - forstio.io_codec keldu.adaptivecpp-dev ocl-icd openmp @@ -42,11 +41,11 @@ in stdenv.mkDerivation { ]; buildPhase = '' - scons build_examples=${build_examples} + scons build_benchmarks=${build_benchmarks} build_examples=${build_examples} ''; installPhase = '' - scons prefix=$out build_examples=${build_examples} install + scons prefix=$out build_benchmarks=${build_benchmarks} build_examples=${build_examples} install ''; doCheck = true; |