Skip to content

Commit c382fd8

Browse files
authored
[ez] Fix the wrong output length on vLLM dashboard (#7154)
Silly bug, hard to track. The `output_len` column printed the wrong value from the `input_len` column. --------- Signed-off-by: Huy Do <huydhn@gmail.com>
1 parent 9704e41 commit c382fd8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

torchci/lib/benchmark/llms/utils/llmUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ const toRowData = (
374374
? extraInfo["random_input_len"]
375375
: extraInfo["input_len"];
376376
row["output_len"] = extraInfo["random_output_len"]
377-
? extraInfo["random_input_len"]
377+
? extraInfo["random_output_len"]
378378
: extraInfo["output_len"];
379379
}
380380

0 commit comments

Comments
 (0)