Skip to content

Commit d6b3773

Browse files
njriasanfacebook-github-bot
authored andcommitted
Append Triton type to Scuba table logging (#198)
Summary: Pull Request resolved: #198 Adds the logic to include a new column, `triton_type` to the scuba table for benchmark logging. This column will be used to track which version of Triton is used in experiments/testing. Currenlty this will be stable and trunk, but in the future may include the trunk + semantic patch version. Reviewed By: xuzhao9 Differential Revision: D72975732 fbshipit-source-id: 8e20c83385348cf69ef293c279f71d0b20d2d038
1 parent 6f18998 commit d6b3773

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

run.py

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ def _run(args: argparse.Namespace, extra_args: List[str]) -> BenchmarkOperatorRe
6464

6565
if "hardware" in args:
6666
kwargs["hardware"] = args.hardware
67+
if "triton_type" in args:
68+
kwargs["triton_type"] = args.triton_type
6769
log_benchmark(**kwargs)
6870

6971
if args.plot:

0 commit comments

Comments
 (0)