summaryrefslogtreecommitdiff
path: root/modules/remote-sycl/benchmarks/SConscript
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-11-18 22:46:33 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-11-18 22:46:33 +0100
commitb514d9e6dfceafb83cebcbb0c7ef4728b2ff0401 (patch)
tree91d30ce7b87a10278d747f2cc9ea8a8cb8d9d3a8 /modules/remote-sycl/benchmarks/SConscript
parent2073aef795f74e5c24b7992d6c2f0fadde3fa271 (diff)
downloadforstio-forstio-b514d9e6dfceafb83cebcbb0c7ef4728b2ff0401.tar.gz
Sycl mixed precision prep
Diffstat (limited to 'modules/remote-sycl/benchmarks/SConscript')
-rw-r--r--modules/remote-sycl/benchmarks/SConscript7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/remote-sycl/benchmarks/SConscript b/modules/remote-sycl/benchmarks/SConscript
index 434993c..e88c1bd 100644
--- a/modules/remote-sycl/benchmarks/SConscript
+++ b/modules/remote-sycl/benchmarks/SConscript
@@ -28,8 +28,13 @@ benchmarks_sycl_env.add_source_files(sycl_objects, ['kernel_mixed_precision.cpp'
objects_static = []
benchmarks_env.sycl_basic = benchmarks_env.Program('#bin/benchmark_mixed_precision', ['mixed_precision.cpp', env.library_static, sycl_objects]);
+benchmarks_env.mixed_alt = benchmarks_sycl_env.Program('#bin/benchmark_mixed_precision_alternative', ['mixed_precision_alternative.cpp', env.library_static]);
+
# Set Alias
-env.benchmarks = [benchmarks_env.sycl_basic];
+env.benchmarks = [
+ benchmarks_env.sycl_basic,
+ benchmarks_env.mixed_alt
+];
env.Alias('benchmarks', env.benchmarks);
if env["build_benchmarks"]: