Skip to content

Commit 622182b

Browse files
authored
Merge branch 'master' into lonnie-251121-mlpy310
2 parents 7272000 + e882d2d commit 622182b

File tree

7 files changed

+2995
-2104
lines changed

7 files changed

+2995
-2104
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
build_arg_sets:
2+
cu128:
3+
PYTHON_VERSION: py311
4+
CUDA_CODE: cu128
5+
6+
7+
.common_settings: &common_settings
8+
append_flags:
9+
- --python-version=3.11
10+
- --unsafe-package ray
11+
- --python-platform=linux
12+
- --extra-index-url https://download.pytorch.org/whl/${CUDA_CODE}
13+
build_arg_sets:
14+
- cu128
15+
16+
depsets:
17+
18+
# get rid of this python/deplocks/llm/rayllm_test_py311_cu128.lock
19+
- name: subset_rayllm_depset_${PYTHON_VERSION}_${CUDA_CODE}
20+
operation: subset
21+
source_depset: compiled_ray_llm_depset_${PYTHON_VERSION}_${CUDA_CODE}
22+
<<: *common_settings
23+
requirements:
24+
- python/requirements.txt
25+
output: python/deplocks/llm/rayllm_subset_${PYTHON_VERSION}_${CUDA_CODE}.lock
26+
27+
28+
- name: llm_batch_single_node_benchmark_${PYTHON_VERSION}_${CUDA_CODE}
29+
operation: expand
30+
depsets:
31+
- subset_rayllm_depset_${PYTHON_VERSION}_${CUDA_CODE}
32+
<<: *common_settings
33+
requirements:
34+
- release/llm_tests/batch/requirements.in
35+
output: release/ray_release/byod/llm_batch/llm_batch_single_node_benchmark_${PYTHON_VERSION}_${CUDA_CODE}.lock

release/ray_release/byod/llm_batch/llm_batch_py311_cu128.lock renamed to python/deplocks/llm/rayllm_subset_py311_cu128.lock

Lines changed: 5 additions & 2071 deletions
Large diffs are not rendered by default.

python/ray/dashboard/modules/metrics/dashboards/data_dashboard_panels.py

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,36 +1050,6 @@
10501050
stack=False,
10511051
)
10521052

1053-
ITERATION_TIME_TO_FIRST_BATCH_PANEL = Panel(
1054-
id=78,
1055-
title="Iteration Time to First Batch",
1056-
description="Seconds spent waiting for the first batch after starting iteration",
1057-
unit="seconds",
1058-
targets=[
1059-
Target(
1060-
expr="sum(ray_data_iter_time_to_first_batch_seconds{{{global_filters}}}) by (dataset)",
1061-
legend="Seconds: {{dataset}}",
1062-
)
1063-
],
1064-
fill=0,
1065-
stack=False,
1066-
)
1067-
1068-
ITERATION_GET_REF_BUNDLES_PANEL = Panel(
1069-
id=79,
1070-
title="Iteration Get Ref Bundles Time",
1071-
description="Seconds spent getting RefBundles from the dataset iterator",
1072-
unit="seconds",
1073-
targets=[
1074-
Target(
1075-
expr="sum(ray_data_iter_get_ref_bundles_seconds{{{global_filters}}}) by (dataset)",
1076-
legend="Seconds: {{dataset}}",
1077-
)
1078-
],
1079-
fill=0,
1080-
stack=False,
1081-
)
1082-
10831053
# Ray Data Metrics (Miscellaneous)
10841054
SCHEDULING_LOOP_DURATION_PANEL = Panel(
10851055
id=47,
@@ -1420,8 +1390,6 @@
14201390
ITERATION_BLOCKS_LOCAL_PANEL,
14211391
ITERATION_BLOCKS_REMOTE_PANEL,
14221392
ITERATION_BLOCKS_UNKNOWN_LOCATION_PANEL,
1423-
ITERATION_TIME_TO_FIRST_BATCH_PANEL,
1424-
ITERATION_GET_REF_BUNDLES_PANEL,
14251393
],
14261394
collapsed=True,
14271395
),
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
datasets==4.4.1

release/ray_release/byod/byod_llm_single_node_baseline_benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
set -exo pipefail
44

5-
uv pip install --system datasets==4.4.1
5+
uv pip install --system --no-deps --index-strategy unsafe-best-match -r python_depset.lock

release/ray_release/byod/llm_batch/llm_batch_single_node_benchmark_py311_cu128.lock

Lines changed: 2952 additions & 0 deletions
Large diffs are not rendered by default.

release/release_tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4154,6 +4154,7 @@
41544154
- VLLM_DISABLE_COMPILE_CACHE=1
41554155
type: llm-cu128
41564156
post_build_script: byod_llm_single_node_baseline_benchmark.sh
4157+
python_depset: llm_batch/llm_batch_single_node_benchmark_py311_cu128.lock
41574158
cluster_compute: llm_single_node_benchmark_l4.yaml
41584159

41594160
run:

0 commit comments

Comments
 (0)