diff options
Diffstat (limited to 'modules/remote-sycl/benchmarks/SConscript')
| -rw-r--r-- | modules/remote-sycl/benchmarks/SConscript | 7 |
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"]: |
