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 9e859f6 commit aa5ecdcCopy full SHA for aa5ecdc
tritonbench/operators/fp8_gemm_rowwise/operator.py
@@ -49,6 +49,14 @@ def parse_args(args: List[str]) -> argparse.Namespace:
49
action="store_true",
50
)
51
parser.add_argument("--warp_specialization", action="store_true")
52
+
53
+ # Validate that both --use_persistent and --no_use_persistent are not specified together
54
+ if "--use_persistent" in args and "--no_use_persistent" in args:
55
+ parser.error(
56
+ "Cannot specify both '--use_persistent' and '--no_use_persistent' at the same time. "
57
+ "These options are mutually exclusive. Please use only one."
58
+ )
59
60
parsed_args = parser.parse_args(args)
61
if parsed_args.use_tma is None:
62
# Default to True for CUDA, False for ROCm
0 commit comments