You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(constants): add llm-d-vllm framework label
Register the llm-d-vllm framework in FW_REGISTRY with display label
"llm-d vLLM" so the InferenceX GB200 DeepSeek-V4-Pro disaggregated
benchmark series is recognized as a canonical framework (FRAMEWORK_KEYS)
and rendered with a proper label instead of the uppercased slug.
Add a matching FRAMEWORK_LABELS assertion.
Signed-off-by: Ezra Silvera <ezra@il.ibm.com>
* fix(latest-images): classify llm-d as disaggregated
* fix(constants): match llmd-vllm artifact key
中文:修正框架注册键,使其与产物中的 llmd-vllm 标识一致。
---------
Signed-off-by: Ezra Silvera <ezra@il.ibm.com>
Co-authored-by: adibarra <93070681+adibarra@users.noreply.github.com>
Co-authored-by: Cameron Quilici <cjquilici@gmail.com>
Copy file name to clipboardExpand all lines: packages/app/src/components/latest-image/latest-image-content.tsx
+8-27Lines changed: 8 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ import {
24
24
AGE_MAX_RED_DAYS,
25
25
ageColorStyle,
26
26
ageRowStyle,
27
+
baseFramework,
27
28
daysSince,
28
29
getActualLatestTag,
29
30
isOutdated,
@@ -48,14 +49,14 @@ const STRINGS = {
48
49
tooltipGpuSku: 'Filter by GPU model (e.g. H200, MI300X, B200).',
49
50
labelNodeType: 'Node Type',
50
51
tooltipNodeType:
51
-
'Single node = vLLM/SGLang/TRTLLM. Disagg = NVIDIA Dynamo or AMD Mori with separate prefill/decode pools.',
52
+
'Single node = non-disaggregated serving. Disaggregated = separate prefill/decode pools, including Dynamo, Mori, and llm-d.',
52
53
labelFramework: 'Framework',
53
54
tooltipFramework:
54
-
'Filter by inference engine (sglang, vllm, TensorRT, atom). Disagg variants (dynamo-*, mori-*) collapse into their base engine. Empty = all frameworks.',
55
+
'Filter by inference engine (sglang, vllm, TensorRT, atom). Disaggregated framework variants collapse into their base engine. Empty = all frameworks.',
55
56
allModels: 'All Models',
56
57
all: 'All',
57
58
singleNode: 'Single Node',
58
-
disagg: 'Disagg (Dynamo / Mori)',
59
+
disagg: 'Disaggregated',
59
60
allFrameworks: 'All frameworks',
60
61
thModel: 'Model',
61
62
thPrecision: 'Precision',
@@ -83,14 +84,14 @@ const STRINGS = {
83
84
tooltipGpuSku: '按 GPU 型号筛选(如 H200、MI300X、B200)。',
84
85
labelNodeType: '节点类型',
85
86
tooltipNodeType:
86
-
'单节点 = vLLM/SGLang/TRTLLM。分离式 = NVIDIA Dynamo 或 AMD Mori,分开的预填充/解码池。',
0 commit comments