"git@developer.sourcefind.cn:yangql/googletest.git" did not exist on "7b1ced0682af5fb10e4619457552cd11936c294a"
Commit f8520e92 authored by Jacky's avatar Jacky Committed by GitHub
Browse files

docs: Clarify the --max-local-prefill-length help description (#554)


Signed-off-by: default avatarJacky <18255193+kthui@users.noreply.github.com>
Co-authored-by: default avatarNeelay Shah <neelays@nvidia.com>
parent 6444e6b8
......@@ -43,13 +43,13 @@ def parse_vllm_args(service_name, prefix) -> AsyncEngineArgs:
"--max-local-prefill-length",
type=int,
default=1000,
help="Maximum length of local prefill",
help="Maximum length for local prefill. If remote prefill is enabled and the prefill length is greater than this value the request will be sent for remote prefill, otherwise prefill phase will run locally.",
)
parser.add_argument(
"--max-prefill-queue-size",
type=int,
default=3,
help="Do not send remote prefill requests (prefill locally) if the queue size is greater than this value",
help="Maximum queue size for remote prefill. If the prefill queue size is greater than this value, prefill phase of the incoming request will be executed locally.",
)
parser = AsyncEngineArgs.add_cli_args(parser)
args = parser.parse_args(vllm_args)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment