Skip to content

Commit cb2a467

Browse files
committed
Fix cmdline argument collision
1 parent 4829ea4 commit cb2a467

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exllamav3/model_init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def add_args(
3535
parser.add_argument("-tp_linear", "--tp_max_parallelism_linear", type = int, help = "(TP) Maximum parallelism for linear (output) layers", default = None)
3636
parser.add_argument("-tp_moe_ts", "--tp_moe_tensor_split", action = "store_true", help = "(TP) Use tensor split for MoE layers rather than expert parallelism")
3737

38-
parser.add_argument("-v", "--verbose", action = "store_true", help = "Verbose output while loading")
38+
parser.add_argument("-lv", "--load_verbose", action = "store_true", help = "Verbose output while loading")
3939

4040
if cache:
4141
parser.add_argument("-cs", "--cache_size", type = int, help = f"Total cache size in tokens, default: {default_cache_size}", default = default_cache_size)
@@ -166,7 +166,7 @@ def printp(p: bool, s: str):
166166
progressbar = progress,
167167
tp_dev_limits = tp_dev_limits,
168168
tp_backend = args.tp_backend,
169-
verbose = args.verbose,
169+
verbose = args.load_verbose,
170170
tp_options = tp_options,
171171
**kwargs
172172
)

0 commit comments

Comments
 (0)