Skip to content

Commit 9cd4ac7

Browse files
authored
[CI] Remove benchmark patch and increase the scheduler frequency (#1762)
### What this PR does / why we need it? This pr purpose to do the following things: 1. Remove `benchmark_datasets.py` patch 2. Increase the scheduler frequency to 2 times per day, due to the recent large number of daily submissions, we need to increase the default test time(6h) ### Does this PR introduce _any_ user-facing change? ### How was this patch tested? - vLLM version: v0.9.2 - vLLM main: vllm-project/vllm@247102f --------- Signed-off-by: wangli <wangli858794774@gmail.com>
1 parent d118bf8 commit 9cd4ac7

File tree

4 files changed

+4
-84
lines changed

4 files changed

+4
-84
lines changed

.github/workflows/nightly_benchmarks.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ name: 'Benchmarks / Performance'
2020

2121
on:
2222
schedule:
23-
# Run at 02:00 everyday
24-
- cron: '00 18 * * *'
25-
23+
# Run benchmarks at 20:00 and 03:00 Beijing time (UTC+8)
24+
- cron: "0 12 * * *"
25+
- cron: "0 19 * * *"
26+
2627
workflow_dispatch:
2728
# Allow manual triggering of the workflow
2829

benchmarks/requirements-bench.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
pandas
22
datasets
33
modelscope
4-
libcst
54
tabulate

benchmarks/scripts/patch_benchmark_dataset.py

Lines changed: 0 additions & 79 deletions
This file was deleted.

benchmarks/scripts/run-performance-benchmarks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ cleanup_on_error() {
281281
main() {
282282
START_TIME=$(date +%s)
283283
check_npus
284-
python3 benchmarks/scripts/patch_benchmark_dataset.py
285284

286285
# dependencies
287286
(which wget && which curl) || (apt-get update && apt-get install -y wget curl)

0 commit comments

Comments
 (0)