From 3764c84a257bd5f9bff8cba4cebb92ba42940539 Mon Sep 17 00:00:00 2001 From: Arjun Suresh Date: Tue, 17 Feb 2026 18:52:30 +0000 Subject: [PATCH] Update run_mlperf.py | We should not call FromConfig using audit.conf file FromConfig call must be done only for user.conf file. AuditFile config override is done automatically by loadgen. The current code will fail the submission checker --- text_to_video/wan-2.2-t2v-a14b/run_mlperf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/text_to_video/wan-2.2-t2v-a14b/run_mlperf.py b/text_to_video/wan-2.2-t2v-a14b/run_mlperf.py index 147624b340..8c7214fd9b 100644 --- a/text_to_video/wan-2.2-t2v-a14b/run_mlperf.py +++ b/text_to_video/wan-2.2-t2v-a14b/run_mlperf.py @@ -270,8 +270,7 @@ def run_mlperf(args, config): settings.FromConfig(user_conf, "wan-2.2-t2v-a14b", args.scenario) audit_config = os.path.abspath(args.audit_conf) - if os.path.exists(audit_config): - settings.FromConfig(audit_config, "wan-2.2-t2v-a14b", args.scenario) + settings.scenario = SCENARIO_MAP[args.scenario] settings.mode = lg.TestMode.PerformanceOnly