We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d68f8 commit 8e02896Copy full SHA for 8e02896
tritonbench/utils/run_utils.py
@@ -87,7 +87,7 @@ def run_in_task(op: str, op_args: Optional[List[str]] = None) -> None:
87
op_task_cmd.extend(op_args)
88
# In OSS, we assume always using the run.py benchmark driver
89
if not is_fbcode() and not op_task_cmd[0] == "run.py":
90
- op_task_cmd.insert(0, "run.py")
+ op_task_cmd.insert(1, "run.py")
91
try:
92
logger.info("[tritonbench] Running benchmark: " + " ".join(op_task_cmd))
93
subprocess.check_call(
0 commit comments