From fcceac8719da1c997c03688403f690c4a8839e49 Mon Sep 17 00:00:00 2001 From: Amily Wu Date: Thu, 20 Jun 2024 18:25:05 +0000 Subject: [PATCH] Update new modes parser arguments --- tuning/autotune.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuning/autotune.py b/tuning/autotune.py index c57b66d..ff8891f 100644 --- a/tuning/autotune.py +++ b/tuning/autotune.py @@ -66,7 +66,7 @@ def parse_arguments() -> argparse.Namespace: # Required arguments parser.add_argument( - "mode", choices=["default", "winograd"], help="Compilation mode" + "mode", choices=["default", "winograd", "misa", "hybrid"], help="Compilation mode" ) parser.add_argument( "input_file", type=Path, help="Path to the input benchmark file (.mlir)"