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
12 changes: 6 additions & 6 deletions packages/app/src/lib/known-issues.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ import { KNOWN_CONFIG_ISSUES, knownIssueCsvNote, matchKnownConfigIssues } from '
const DSR1 = 'DeepSeek-R1-0528';

describe('matchKnownConfigIssues', () => {
it('matches the GB300 Dynamo TRT MTP entry for DeepSeek R1 FP4', () => {
it('matches the GB300 Dynamo TRT MTP entry for DeepSeek R1 FP8', () => {
const issues = matchKnownConfigIssues(DSR1, [
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp4' },
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp8' },
]);
expect(issues).toHaveLength(1);
expect(issues[0].url).toBe('https://github.com/NVIDIA/srt-slurm/issues/51');
});

it('does not match GB300 Dynamo TRT MTP for non-FP4 precisions', () => {
it('does not match GB300 Dynamo TRT MTP for non-FP8 precisions', () => {
const issues = matchKnownConfigIssues(DSR1, [
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp8' },
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp4' },
]);
expect(issues).toHaveLength(0);
});
Expand Down Expand Up @@ -47,8 +47,8 @@ describe('matchKnownConfigIssues', () => {

it('returns each issue at most once even with many matching points', () => {
const issues = matchKnownConfigIssues(DSR1, [
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp4' },
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp4' },
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp8' },
{ hwKey: 'gb300_dynamo-trt_mtp', precision: 'fp8' },
{ hwKey: 'mi355x_mori-sglang_mtp', precision: 'fp4' },
]);
expect(issues).toHaveLength(2);
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/lib/known-issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const KNOWN_CONFIG_ISSUES: KnownConfigIssue[] = [
{
hwKey: 'gb300_dynamo-trt_mtp',
model: Model.DeepSeek_R1,
precisions: ['fp4'],
precisions: ['fp8'],
summary: 'Accuracy issues',
filed: 'Apr 21, 2026',
url: 'https://github.com/NVIDIA/srt-slurm/issues/51',
Expand Down
Loading