- 13 Jun, 2025 1 commit
-
-
Kristen Kelleher authored
-
- 12 Jun, 2025 1 commit
-
-
Kristen Kelleher authored
Signed-off-by:
Kristen Kelleher <kkelleher@nvidia.com> Co-authored-by:
Ryan McCormick <rmccormick@nvidia.com>
-
- 11 Jun, 2025 1 commit
-
-
richardhuo-nv authored
-
- 10 Jun, 2025 1 commit
-
-
Biswa Panda authored
-
- 08 Jun, 2025 1 commit
-
-
Faradawn Yang authored
Signed-off-by:
Faradawn Yang <73060648+faradawn@users.noreply.github.com> Co-authored-by:
coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
-
- 05 Jun, 2025 2 commits
-
-
Anant Sharma authored
-
Yan Ru Pei authored
Signed-off-by:
Yan Ru Pei <yanrpei@gmail.com> Co-authored-by:
Neelay Shah <neelays@nvidia.com>
-
- 04 Jun, 2025 4 commits
-
-
Biswa Panda authored
-
julienmancuso authored
-
Hongkuan Zhou authored
-
Kristen Kelleher authored
Signed-off-by:Kristen Kelleher <kkelleher@nvidia.com> - Content, format, and structural changes to the Dynamo docs for 0.3.0. - Includes copyediting and the first batch of changes from the DMO review.
-
- 03 Jun, 2025 1 commit
-
-
Paul Hendricks authored
-
- 02 Jun, 2025 3 commits
-
-
hhzhang16 authored
Signed-off-by:
hhzhang16 <54051230+hhzhang16@users.noreply.github.com> Co-authored-by:
coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
-
Graham King authored
Do not include by default as it needs libgomp1 at runtime. Add a feature to enable it at build time.
-
Hongkuan Zhou authored
-
- 30 May, 2025 3 commits
-
-
Ryan McCormick authored
-
Alec authored
-
julienmancuso authored
-
- 29 May, 2025 2 commits
-
-
Anant Sharma authored
-
Graham King authored
-
- 28 May, 2025 5 commits
-
-
Tanmay Verma authored
-
Hongkuan Zhou authored
-
Emmanuel Ferdman authored
Signed-off-by:Emmanuel Ferdman <emmanuelferdman@gmail.com>
-
mohammedabdulwahhab authored
Signed-off-by:mohammedabdulwahhab <furkhan324@berkeley.edu>
-
julienmancuso authored
Signed-off-by:
julienmancuso <161955438+julienmancuso@users.noreply.github.com> Co-authored-by:
Copilot <175728472+Copilot@users.noreply.github.com>
-
- 27 May, 2025 1 commit
-
-
Akash authored
Signed-off-by:Akash <akpaul@nvidia.com>
-
- 23 May, 2025 1 commit
-
-
julienmancuso authored
-
- 22 May, 2025 4 commits
-
-
Graham King authored
Example: ``` dynamo-run out=<engine> <model> --kv-cache-block-size 64 ``` In a distributed system this goes on the worker node and is propagated to ingress via the model deployment card. Previously hard coded to 16, which is now the default. - Load context_length from model. Closes #1172 - Store context length and KV cache block size in Model Deployment Card #1170
-
Hongkuan Zhou authored
Co-authored-by:root <root@kkranen-dt.nvidia.com>
-
Hongkuan Zhou authored
-
Graham King authored
Llama 4 has a very large context length (aka n_ctx, model_max_length, max_model_len), and vllm won't start unless it can allocate enough KV cache for the entire context. Allow passing `--context-length <N>` to `dynamo-run` to limit it so long-context models will fit. Future todo: - Restrict every request's `max_tokens` to below the context length. Our pre-processor should do this by setting stop_conditions.max_tokens. mistralrs engine wrapper must do it itself because it does not use the pre-processor. - mistralrs and llamacpp currently have a hard-coded max context length if one is not provided on the command line. Change those to be the model's built-in max, read from the GGUF or tokenizer_config.json.
-
- 21 May, 2025 3 commits
-
-
Graham King authored
-
Suman Tatiraju authored
Signed-off-by:
Suman Tatiraju <167138127+statiraju@users.noreply.github.com> Signed-off-by:
Anant Sharma <anants@nvidia.com> Co-authored-by:
Anant Sharma <anants@nvidia.com> Co-authored-by:
Dmitry Tokarev <dtokarev@nvidia.com> Co-authored-by:
ishandhanani <82981111+ishandhanani@users.noreply.github.com> Co-authored-by:
Kristen Kelleher <kkelleher@nvidia.com> Co-authored-by:
Suman Tatiraju <statiraju@statiraju-mlt.client.nvidia.com> Co-authored-by:
Hannah Zhang <hannahz@nvidia.com>
-
Biswa Panda authored
-
- 20 May, 2025 1 commit
-
-
Hongkuan Zhou authored
-
- 19 May, 2025 2 commits
-
-
Graham King authored
We can now do this: - Node 1: ``` dynamo-run in=http out=dyn ``` - Node 2 and 3, two instances of component 'backend' in the nemotron_ultra pipeline: ``` dynamo-run in=dyn://nemotron_ultra.backend.generate out=vllm /data/models/NemotronUltra ``` - Node 4 and 5, two instances of the 'backend' component in nemotron_super pipeline: ``` dynamo-run in=dyn://nemotron_super.backend.generate out=vllm /data/models/NemotronSuper ``` The ingress node will discover all four instances and route correctly. We have been planning for this for a long time now. As part of this auto-discovery is now always `out=dyn`, with no extra URL parts. Previously it could only route to a single pipeline. Also: - Refactor endpoint / instance naming now that I understand them - Fix removing models when their instance stops.
-
hhzhang16 authored
-
- 15 May, 2025 2 commits
-
-
Ryan McCormick authored
-
mohammedabdulwahhab authored
-
- 14 May, 2025 1 commit
-
-
Graham King authored
Router: ``` dynamo-run in=http out=dyn://dynamo.endpoint.generate --router-mode kv ``` Worker (* N): ``` dynamo-run in=dyn://dynamo.endpoint.generate out=vllm /data/llms/Qwen/Qwen3-4B ``` You need patched vllm and the C bindings `.so`. Full docs in the updated guide: `docs/guides/dynamo_run.md`. This gives us a pure-Rust ingress node: OpenAI compliant HTTP server + Pre-processor + KV-aware router.
-