File tree 2 files changed +4
-1
lines changed
torchci/components/benchmark/llms 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ export function SummaryPanel({
133
133
] ;
134
134
135
135
const hasMode = data . length > 0 && "mode" in data [ 0 ] ? true : false ;
136
- if ( hasMode ) {
136
+ if ( hasMode && benchmarkName === "TorchCache Benchmark" ) {
137
137
columns . push ( {
138
138
field : "mode" ,
139
139
headerName : "Mode" ,
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ export const EXCLUDED_METRICS: string[] = [
18
18
"cold_compile_time(s)" ,
19
19
"warm_compile_time(s)" ,
20
20
"speedup_pct" ,
21
+ // TODO (huydhn): Hide generate_time(ms) metric temporarily because of
22
+ // https://github.com/pytorch/executorch/issues/8576#issuecomment-2669706120
23
+ "generate_time(ms)" ,
21
24
] ;
22
25
export const DEFAULT_MODEL_NAME = "All Models" ;
23
26
export const SCALE = 2 ;
You can’t perform that action at this time.
0 commit comments