Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions dpbench/infrastructure/benchmark_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,13 @@ def run_benchmark_in_sub_process(

brc = BaseRunConfig.from_instance(rc)

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}
][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}
][0]

conn.send(brc)

Expand Down