We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 432d276 commit c69de9cCopy full SHA for c69de9c
dpbench/infrastructure/benchmark_runner.py
@@ -318,12 +318,13 @@ def run_benchmark_in_sub_process(
318
319
brc = BaseRunConfig.from_instance(rc)
320
321
- brc.ref_framework: cfg.Framework = [
322
- f
323
- for f in cfg.GLOBAL.frameworks
324
- if rc.benchmark.reference_implementation_postfix
325
- in {p.postfix for p in f.postfixes}
326
- ][0]
+ if rc.validate:
+ brc.ref_framework: cfg.Framework = [
+ f
+ for f in cfg.GLOBAL.frameworks
+ if rc.benchmark.reference_implementation_postfix
+ in {p.postfix for p in f.postfixes}
327
+ ][0]
328
329
conn.send(brc)
330
0 commit comments