Skip to content

Commit 4fa7d4e

Browse files
FindHaometa-codesync[bot]
authored andcommitted
Fix typo in reproducer output keys (repo_* -> repro_*) (#175)
Summary: Rename "repo_script" and "repo_context" to "repro_script" and "repro_context" in tritonparse.reproducer.orchestrator.reproduce return dictionary. Pull Request resolved: #175 Reviewed By: wychi Differential Revision: D84840344 Pulled By: FindHao fbshipit-source-id: 5910864c4670ebde76834b84ec1885a0c7570edf
1 parent 2f3f12d commit 4fa7d4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tritonparse/reproducer/orchestrator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def reproduce(
7777
ret = {
7878
"kernel_src_path": filepath,
7979
"kernel": context_bundle.kernel_info.function_name,
80-
"repo_script": str(out_py_path.resolve()),
81-
"repo_context": str(temp_json_path.resolve()),
80+
"repro_script": str(out_py_path.resolve()),
81+
"repro_context": str(temp_json_path.resolve()),
8282
}
8383
logger.info("REPRODUCER_OUTPUT\n%s", ret)
8484

0 commit comments

Comments
 (0)