From 4fdafe5cc86cf897ca2387217d47e741d50feb99 Mon Sep 17 00:00:00 2001 From: FindHao Date: Thu, 16 Oct 2025 14:18:27 -0400 Subject: [PATCH] Fix typo in reproducer output keys (repo_* -> repro_*) Rename "repo_script" and "repo_context" to "repro_script" and "repro_context" in tritonparse.reproducer.orchestrator.reproduce return dictionary. --- tritonparse/reproducer/orchestrator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tritonparse/reproducer/orchestrator.py b/tritonparse/reproducer/orchestrator.py index 10b5b75..3ab3ebb 100644 --- a/tritonparse/reproducer/orchestrator.py +++ b/tritonparse/reproducer/orchestrator.py @@ -77,8 +77,8 @@ def reproduce( ret = { "kernel_src_path": filepath, "kernel": context_bundle.kernel_info.function_name, - "repo_script": str(out_py_path.resolve()), - "repo_context": str(temp_json_path.resolve()), + "repro_script": str(out_py_path.resolve()), + "repro_context": str(temp_json_path.resolve()), } logger.info("REPRODUCER_OUTPUT\n%s", ret)