From 6b9cf266715423956a0646a5b922d58250574aaa Mon Sep 17 00:00:00 2001 From: functionstackx <47992694+functionstackx@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:58:03 -0400 Subject: [PATCH] chore: rename "ATOMesh" framework label to "Mooncake ATOMesh" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the mooncake-atom framework display label from "ATOMesh¹" to "Mooncake ATOMesh¹" (footnote preserved) and adjusts the matching framework-aliases and chart-utils test expectations/comment. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/app/src/lib/chart-utils.test.ts | 2 +- packages/constants/src/framework-aliases.test.ts | 6 +++--- packages/constants/src/framework-aliases.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/app/src/lib/chart-utils.test.ts b/packages/app/src/lib/chart-utils.test.ts index 061037ed..db569118 100644 --- a/packages/app/src/lib/chart-utils.test.ts +++ b/packages/app/src/lib/chart-utils.test.ts @@ -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', ); diff --git a/packages/constants/src/framework-aliases.test.ts b/packages/constants/src/framework-aliases.test.ts index a28bea34..a7ec71ce 100644 --- a/packages/constants/src/framework-aliases.test.ts +++ b/packages/constants/src/framework-aliases.test.ts @@ -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¹'); }); }); diff --git a/packages/constants/src/framework-aliases.ts b/packages/constants/src/framework-aliases.ts index 208fbd57..31bf8ce7 100644 --- a/packages/constants/src/framework-aliases.ts +++ b/packages/constants/src/framework-aliases.ts @@ -9,7 +9,7 @@ export const FW_REGISTRY: Record = { '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' },