Skip to content

Commit 585a026

Browse files
ziqifan617nealvaidyaalec-flowersptarasiewiczNVkeivenchang
authored
merge with main (#2252)
Signed-off-by: Neal Vaidya <[email protected]> Signed-off-by: Pavithra Vijayakrishnan <[email protected]> Signed-off-by: Yan Ru Pei <[email protected]> Signed-off-by: Ryan McCormick <[email protected]> Signed-off-by: Anant Sharma <[email protected]> Signed-off-by: Neelay Shah <[email protected]> Signed-off-by: Hongkuan Zhou <[email protected]> Signed-off-by: Jhao-Ting Chen <[email protected]> Signed-off-by: Anish <[email protected]> Signed-off-by: Biswa Panda <[email protected]> Signed-off-by: Kapil Arya <[email protected]> Signed-off-by: Jacky <[email protected]> Co-authored-by: Neal Vaidya <[email protected]> Co-authored-by: Alec <[email protected]> Co-authored-by: ptarasiewiczNV <[email protected]> Co-authored-by: Keiven C <[email protected]> Co-authored-by: Keiven Chang <[email protected]> Co-authored-by: Ryan Olson <[email protected]> Co-authored-by: Yan Ru Pei <[email protected]> Co-authored-by: Graham King <[email protected]> Co-authored-by: Kapil Arya <[email protected]> Co-authored-by: atchernych <[email protected]> Co-authored-by: Ryan McCormick <[email protected]> Co-authored-by: Neelay Shah <[email protected]> Co-authored-by: zaristei <[email protected]> Co-authored-by: Biswa Panda <[email protected]> Co-authored-by: heisenberglit <[email protected]> Co-authored-by: Pavithra Vijayakrishnan <[email protected]> Co-authored-by: J Wyman <[email protected]> Co-authored-by: tanmayv25 <[email protected]> Co-authored-by: Paul Hendricks <[email protected]> Co-authored-by: Anant Sharma <[email protected]> Co-authored-by: julienmancuso <[email protected]> Co-authored-by: hhzhang16 <[email protected]> Co-authored-by: hongkuan <[email protected]> Co-authored-by: mohammedabdulwahhab <[email protected]> Co-authored-by: Hongkuan Zhou <[email protected]> Co-authored-by: Tanmay Verma <[email protected]> Co-authored-by: GuanLuo <[email protected]> Co-authored-by: alec-flowers <[email protected]> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Jhao-Ting Chen <[email protected]> Co-authored-by: Jacky <[email protected]> Co-authored-by: Anish <[email protected]> Co-authored-by: saurabh-nvidia <[email protected]> Co-authored-by: Ubuntu <saurabha@saurabha-cpu.l5mxjxajs0be3dwlje3wrdx5ie.xx.internal.cloudapp.net> Co-authored-by: Harrison Saturley-Hall <[email protected]> Co-authored-by: Kapil Arya <[email protected]> Co-authored-by: ishandhanani <[email protected]> Co-authored-by: Dmitry Tokarev <[email protected]> Co-authored-by: KrishnanPrash <[email protected]> Co-authored-by: Kris Hung <[email protected]> Co-authored-by: jthomson04 <[email protected]>
1 parent ef50b86 commit 585a026

File tree

467 files changed

+68565
-68811
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

467 files changed

+68565
-68811
lines changed

.devcontainer/post-create.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ export CARGO_TARGET_DIR=$HOME/dynamo/.build/target
5252
cargo build --locked --profile dev --features mistralrs
5353
cargo doc --no-deps
5454

55-
# create symlinks for the binaries in the deploy directory
56-
mkdir -p $HOME/dynamo/deploy/sdk/src/dynamo/sdk/cli/bin
57-
ln -sf $HOME/dynamo/.build/target/debug/dynamo-run $HOME/dynamo/deploy/sdk/src/dynamo/sdk/cli/bin/dynamo-run
58-
5955
# install the python bindings
6056
cd $HOME/dynamo/lib/bindings/python && retry maturin develop
6157

.github/workflows/trigger_ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,9 @@ jobs:
4747
filters: |
4848
vllm:
4949
- 'container/Dockerfile.vllm'
50-
- 'container/Dockerfile.vllm_nixl'
51-
- 'examples/python/llm/**'
52-
- 'examples/python_rs/llm/**'
5350
- 'container/deps/requirements.vllm.txt'
5451
- 'container/deps/vllm/**'
52+
- 'components/backends/vllm/**'
5553
- 'tests/serve/test_vllm.py'
5654
trtllm:
5755
- 'container/Dockerfile.tensorrt_llm'
@@ -62,6 +60,11 @@ jobs:
6260
- 'tests/serve/test_trtllm.py'
6361
sdk:
6462
- 'deploy/**'
63+
sglang:
64+
- 'container/Dockerfile.sglang'
65+
- 'container/Dockerfile.sglang-deepep'
66+
- 'components/backends/sglang/**'
67+
- 'container/build.sh'
6568
- name: Check if Validation Workflow has run
6669
id: check_workflow
6770
uses: actions/github-script@v6
@@ -104,6 +107,10 @@ jobs:
104107
ci_variables["RUN_TENSORRTLLM"]="true"
105108
fi
106109
110+
if [ "${{ steps.src_changes.outputs.sglang }}" == "true" ]; then
111+
ci_variables["RUN_SGLANG"]="true"
112+
fi
113+
107114
if [ "${{ steps.src_changes.outputs.sdk }}" == "true" ]; then
108115
ci_variables["RUN_SDK_CI"]="true"
109116
fi

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,4 @@ generated-values.yaml
8989
TensorRT-LLM
9090

9191
# Local build artifacts for devcontainer
92-
.build/
93-
# Copied binaries to ignore
94-
deploy/sdk/src/dynamo/sdk/cli/bin
92+
.build/

ATTRIBUTIONS-Go.md

Lines changed: 9663 additions & 27807 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)