We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e500e91 commit d963181Copy full SHA for d963181
benchmarks/run.py
@@ -787,6 +787,14 @@ def run_kernel_variants(
787
file=sys.stderr,
788
)
789
790
+ # Use equally-spaced-k input sample mode if not otherwise specified
791
+ if "--input-sample-mode" not in tritonbench_args:
792
+ tritonbench_args.extend(["--input-sample-mode", "equally-spaced-k"])
793
+ print(
794
+ f"Using input-sample-mode=equally-spaced-k for {operator_name}",
795
+ file=sys.stderr,
796
+ )
797
+
798
# Parse known args and collect unknown ones for operator
799
tb_args, unknown_args = tb_parser.parse_known_args(tritonbench_args)
800
0 commit comments