Skip to content

Commit ffccab7

Browse files
committed
Make the number of repeasts 3 by default
1 parent 3009e86 commit ffccab7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bench/ndarray/matmul_path_compare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def main() -> None:
198198
parser.add_argument("--chunks-out", default="500,500", help="Comma-separated chunk shape for output.")
199199
parser.add_argument("--blocks-out", default="100,100", help="Comma-separated block shape for output.")
200200
parser.add_argument("--warmup", type=int, default=2)
201-
parser.add_argument("--repeats", type=int, default=1)
201+
parser.add_argument("--repeats", type=int, default=3)
202202
parser.add_argument("--modes", nargs="+", default=["chunked", "fast", "auto"], choices=["chunked", "fast", "auto"])
203203
parser.add_argument(
204204
"--block-backend",

0 commit comments

Comments
 (0)