Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/src/lib/chart-utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ describe('getHardwareKey', () => {

it('resolves aliased frameworks to canonical keys (atom-disagg → mooncake-atom)', () => {
// Must match the canonical key buildAvailabilityHwKey builds for the GPU filter,
// otherwise disagg ATOMesh points are filtered out of the chart.
// otherwise disagg Mooncake ATOMesh points are filtered out of the chart.
expect(getHardwareKey(entry({ hw: 'mi355x', framework: 'atom-disagg', disagg: true }))).toBe(
'mi355x_mooncake-atom',
);
Expand Down
6 changes: 3 additions & 3 deletions packages/constants/src/framework-aliases.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import {
} from './framework-aliases';

describe('FRAMEWORK_LABELS', () => {
it('labels the canonical mooncake-atom framework "ATOMesh¹"', () => {
expect(FRAMEWORK_LABELS['mooncake-atom']).toBe('ATOMesh¹');
it('labels the canonical mooncake-atom framework "Mooncake ATOMesh¹"', () => {
expect(FRAMEWORK_LABELS['mooncake-atom']).toBe('Mooncake ATOMesh¹');
});

it('labels the atom-disagg alias with its canonical label', () => {
expect(FRAMEWORK_LABELS['atom-disagg']).toBe('ATOMesh¹');
expect(FRAMEWORK_LABELS['atom-disagg']).toBe('Mooncake ATOMesh¹');
});
});

Expand Down
2 changes: 1 addition & 1 deletion packages/constants/src/framework-aliases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const FW_REGISTRY: Record<string, FwEntry> = {
'dynamo-sglang': { label: 'Dynamo SGLang' },
'dynamo-trt': { label: 'Dynamo TRT' },
'dynamo-vllm': { label: 'Dynamo vLLM' },
'mooncake-atom': { label: 'ATOMesh¹' },
'mooncake-atom': { label: 'Mooncake ATOMesh¹' },
'mori-sglang': { label: 'MoRI SGLang' },
sglang: { label: 'SGLang' },
trt: { label: 'TRT' },
Expand Down
Loading