Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
a0835c3a
Unverified
Commit
a0835c3a
authored
Oct 10, 2025
by
Keyang Ru
Committed by
GitHub
Oct 10, 2025
Browse files
[router] Fix ci nvcc not found error (#11411)
parent
55b14656
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
6 deletions
+7
-6
.github/workflows/pr-test-rust.yml
.github/workflows/pr-test-rust.yml
+1
-1
sgl-router/README.md
sgl-router/README.md
+1
-0
sgl-router/py_test/e2e/conftest.py
sgl-router/py_test/e2e/conftest.py
+1
-1
sgl-router/py_test/e2e/test_pd_router.py
sgl-router/py_test/e2e/test_pd_router.py
+4
-4
No files found.
.github/workflows/pr-test-rust.yml
View file @
a0835c3a
...
@@ -107,7 +107,7 @@ jobs:
...
@@ -107,7 +107,7 @@ jobs:
-
name
:
Install SGLang dependencies
-
name
:
Install SGLang dependencies
run
:
|
run
:
|
sudo bash scripts/ci/ci_install_dependency.sh
sudo
--preserve-env=PATH
bash scripts/ci/ci_install_dependency.sh
-
name
:
Build python binding
-
name
:
Build python binding
run
:
|
run
:
|
...
...
sgl-router/README.md
View file @
a0835c3a
...
@@ -116,6 +116,7 @@ python -m sglang_router.launch_router \
...
@@ -116,6 +116,7 @@ python -m sglang_router.launch_router \
## Configuration
## Configuration
### Logging
### Logging
Enable structured logging with optional file output:
Enable structured logging with optional file output:
...
...
sgl-router/py_test/e2e/conftest.py
View file @
a0835c3a
...
@@ -692,7 +692,7 @@ def pytest_configure(config):
...
@@ -692,7 +692,7 @@ def pytest_configure(config):
@
pytest
.
fixture
(
scope
=
"session"
)
@
pytest
.
fixture
(
scope
=
"session"
)
def
e2e_model
()
->
str
:
def
e2e_model
()
->
str
:
# Always use the default test model
# Always use the default test model
return
DEFAULT_MODEL_NAME_FOR_TEST
return
os
.
getenv
(
"E2E_PRIMARY_MODEL"
,
DEFAULT_MODEL_NAME_FOR_TEST
)
@
pytest
.
fixture
@
pytest
.
fixture
...
...
sgl-router/py_test/e2e/test_pd_router.py
View file @
a0835c3a
...
@@ -253,10 +253,10 @@ def test_pd_genai_bench(e2e_model: str, pd_cluster, genai_bench_runner):
...
@@ -253,10 +253,10 @@ def test_pd_genai_bench(e2e_model: str, pd_cluster, genai_bench_runner):
model_path
=
e2e_model
,
model_path
=
e2e_model
,
experiment_folder
=
policy_label
,
experiment_folder
=
policy_label
,
thresholds
=
{
thresholds
=
{
"ttft_mean_max"
:
1
2
,
"ttft_mean_max"
:
1
3
,
"e2e_latency_mean_max"
:
1
5
,
"e2e_latency_mean_max"
:
1
6
,
"input_throughput_mean_min"
:
40
0
,
"input_throughput_mean_min"
:
35
0
,
"output_throughput_mean_min"
:
20
,
"output_throughput_mean_min"
:
18
,
"gpu_util_p50_min"
:
99
,
"gpu_util_p50_min"
:
99
,
},
},
kill_procs
=
pd_cluster
.
workers
,
kill_procs
=
pd_cluster
.
workers
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment