@@ -42,6 +42,12 @@ export const METRIC_DISPLAY_HEADERS: { [k: string]: string } = {
42
42
p99_ttft_ms : "p99 TTFT (ms)" ,
43
43
requests_per_second : "Requests/s" ,
44
44
tokens_per_second : "Tokens/s" ,
45
+ triton_speedup : "Triton Speedup" ,
46
+ triton_accuracy : "Triton Accuracy" ,
47
+ torch_compile_speedup : "Torch Compile Speedup" ,
48
+ torch_compile_accuracy : "Torch Compile Accuracy" ,
49
+ helion_speedup : "Helion Speedup" ,
50
+ helion_accuracy : "Helion Accuracy" ,
45
51
} ;
46
52
// The variable name is a bit dumb, but it tells if a higher metric value
47
53
// is good or bad so that we can highlight it on the dashboard accordingly.
@@ -71,6 +77,12 @@ export const IS_INCREASING_METRIC_VALUE_GOOD: { [k: string]: boolean } = {
71
77
"Warm compile time (s)" : false ,
72
78
Speedup : true ,
73
79
"Speedup (%)" : true ,
80
+ triton_speedup : true ,
81
+ triton_accuracy : true ,
82
+ torch_compile_speedup : true ,
83
+ torch_compile_accuracy : true ,
84
+ helion_speedup : true ,
85
+ helion_accuracy : true ,
74
86
} ;
75
87
export const METRIC_DISPLAY_SHORT_HEADERS : { [ k : string ] : string } = {
76
88
"memory_bandwidth(GB/s)" : "Bandwidth" ,
@@ -87,6 +99,9 @@ export const METRIC_DISPLAY_SHORT_HEADERS: { [k: string]: string } = {
87
99
} ;
88
100
export const UNIT_FOR_METRIC : { [ k : string ] : string } = {
89
101
"Speedup (%)" : "%" ,
102
+ triton_speedup : "x" ,
103
+ torch_compile_speedup : "x" ,
104
+ helion_speedup : "x" ,
90
105
} ;
91
106
92
107
export const DEFAULT_DEVICE_NAME = "All Devices" ;
0 commit comments