File tree Expand file tree Collapse file tree 5 files changed +11
-3
lines changed
benchmark/llms/components Expand file tree Collapse file tree 5 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,10 @@ export default function LLMsGraphPanel({
169
169
const device = record . device ;
170
170
const metric = record . metric ;
171
171
172
- if ( repoName === "vllm-project/vllm" ) {
172
+ if (
173
+ repoName === "vllm-project/vllm" ||
174
+ repoName === "sgl-project/sglang"
175
+ ) {
173
176
const requestRate = record . extra ! [ "request_rate" ] ;
174
177
const tensorParallel = record . extra ! [ "tensor_parallel_size" ] ;
175
178
const inputLen = record . extra ! [ "random_input_len" ]
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ export default function LLMsSummaryPanel({
168
168
} ) ;
169
169
}
170
170
171
- if ( repoName === "vllm-project/vllm" ) {
171
+ if ( repoName === "vllm-project/vllm" || repoName === "sgl-project/sglang" ) {
172
172
columns . push ( {
173
173
field : "tensor_parallel_size" ,
174
174
headerName : "Tensor parallel" ,
Original file line number Diff line number Diff line change @@ -118,6 +118,10 @@ function NavBar() {
118
118
name : "vLLM v1" ,
119
119
href : "/benchmark/llms?repoName=vllm-project%2Fvllm" ,
120
120
} ,
121
+ {
122
+ name : "SGLang" ,
123
+ href : "/benchmark/llms?repoName=sgl-project%2Fsglang" ,
124
+ } ,
121
125
] ;
122
126
123
127
const devInfraDropdown = [
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export const REPO_TO_BENCHMARKS: { [k: string]: string[] } = {
6
6
"pytorch/executorch" : [ "ExecuTorch" ] ,
7
7
"pytorch/ao" : [ "TorchAO benchmark" ] ,
8
8
"vllm-project/vllm" : [ "vLLM benchmark" ] ,
9
+ "sgl-project/sglang" : [ "SGLang benchmark" ] ,
9
10
} ;
10
11
export const EXCLUDED_METRICS : string [ ] = [
11
12
"load_status" ,
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ const toRowData = (
312
312
arch : arch ,
313
313
} ;
314
314
315
- if ( repoName === "vllm-project/vllm" ) {
315
+ if ( repoName === "vllm-project/vllm" || repoName === "sgl-project/sglang" ) {
316
316
// These fields are only available on vLLM benchmark
317
317
const extraInfo = JSON . parse ( extra ) ;
318
318
row [ "extra" ] = extraInfo ;
You can’t perform that action at this time.
0 commit comments