You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# publisher will be set later if publishing is enabled.
@@ -476,6 +479,12 @@ def cmd_line_args():
476
479
default=None,
477
480
help="This argument is not used by TRTLLM. Please provide max_input_len, max_seq_len and max_output_len in yaml file and point --extra-engine-args to the yaml file.",
478
481
)
482
+
parser.add_argument(
483
+
"--migration-limit",
484
+
type=int,
485
+
default=0,
486
+
help="Maximum number of times a request may be migrated to a different engine worker. The number may be overridden by the engine.",
help="Max model context length. Defaults to models max, usually model_max_length from tokenizer_config.json. Reducing this reduces VRAM requirements.",
278
280
)
281
+
parser.add_argument(
282
+
"--migration-limit",
283
+
type=int,
284
+
default=0,
285
+
help="Maximum number of times a request may be migrated to a different engine worker. The number may be overridden by the engine.",
help="Max model context length. Defaults to models max, usually model_max_length from tokenizer_config.json. Reducing this reduces VRAM requirements.",
335
337
)
338
+
parser.add_argument(
339
+
"--migration-limit",
340
+
type=int,
341
+
default=0,
342
+
help="Maximum number of times a request may be migrated to a different engine worker. The number may be overridden by the engine.",
0 commit comments