@@ -5,32 +5,32 @@ import { KNOWN_CONFIG_ISSUES, knownIssueCsvNote, matchKnownConfigIssues } from '
55const DSR1 = 'DeepSeek-R1-0528' ;
66
77describe ( 'matchKnownConfigIssues' , ( ) => {
8- it ( 'matches the GB300 Dynamo TRT MTP entry for DeepSeek R1 FP4 ' , ( ) => {
8+ it ( 'matches the GB300 Dynamo TRT MTP entry for DeepSeek R1 FP8 ' , ( ) => {
99 const issues = matchKnownConfigIssues ( DSR1 , [
10- { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp4 ' } ,
10+ { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp8 ' } ,
1111 ] ) ;
1212 expect ( issues ) . toHaveLength ( 1 ) ;
1313 expect ( issues [ 0 ] . url ) . toBe ( 'https://github.com/NVIDIA/srt-slurm/issues/51' ) ;
1414 } ) ;
1515
16- it ( 'does not match GB300 Dynamo TRT MTP for non-FP4 precisions' , ( ) => {
16+ it ( 'does not match GB300 Dynamo TRT MTP for non-FP8 precisions' , ( ) => {
1717 const issues = matchKnownConfigIssues ( DSR1 , [
18- { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp8 ' } ,
18+ { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp4 ' } ,
1919 ] ) ;
2020 expect ( issues ) . toHaveLength ( 0 ) ;
2121 } ) ;
2222
23- it ( 'matches the MI355X MoRI SGLang MTP entry for DeepSeek R1 FP8 ' , ( ) => {
23+ it ( 'matches the MI355X MoRI SGLang MTP entry for DeepSeek R1 FP4 ' , ( ) => {
2424 const issues = matchKnownConfigIssues ( DSR1 , [
25- { hwKey : 'mi355x_mori-sglang_mtp' , precision : 'fp8 ' } ,
25+ { hwKey : 'mi355x_mori-sglang_mtp' , precision : 'fp4 ' } ,
2626 ] ) ;
2727 expect ( issues ) . toHaveLength ( 1 ) ;
2828 expect ( issues [ 0 ] . url ) . toBe ( 'https://github.com/sgl-project/sglang/issues/27194' ) ;
2929 } ) ;
3030
31- it ( 'does not match MI355X MoRI SGLang MTP for non-FP8 precisions' , ( ) => {
31+ it ( 'does not match MI355X MoRI SGLang MTP for non-FP4 precisions' , ( ) => {
3232 const issues = matchKnownConfigIssues ( DSR1 , [
33- { hwKey : 'mi355x_mori-sglang_mtp' , precision : 'fp4 ' } ,
33+ { hwKey : 'mi355x_mori-sglang_mtp' , precision : 'fp8 ' } ,
3434 ] ) ;
3535 expect ( issues ) . toHaveLength ( 0 ) ;
3636 } ) ;
@@ -54,9 +54,9 @@ describe('matchKnownConfigIssues', () => {
5454
5555 it ( 'returns each issue at most once even with many matching points' , ( ) => {
5656 const issues = matchKnownConfigIssues ( DSR1 , [
57- { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp4 ' } ,
58- { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp4 ' } ,
59- { hwKey : 'mi355x_mori-sglang_mtp' , precision : 'fp8 ' } ,
57+ { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp8 ' } ,
58+ { hwKey : 'gb300_dynamo-trt_mtp' , precision : 'fp8 ' } ,
59+ { hwKey : 'mi355x_mori-sglang_mtp' , precision : 'fp4 ' } ,
6060 ] ) ;
6161 expect ( issues ) . toHaveLength ( 2 ) ;
6262 } ) ;
0 commit comments