Skip to content

Commit b784088

Browse files
authored
Merge pull request #802 from bredamc/ENG-21369_ray_2-44-1_images
ENG-21369: Updates Ray image to 2.44.1 for Python 3.11
2 parents 5c2d542 + 7bb8706 commit b784088

4 files changed

+9
-9
lines changed

modules/creating-a-custom-training-image.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ The following table shows some example base training images:
2727
| Ray
2828
| CUDA
2929
| 3.11
30-
| `ray:2.35.0-py311-cu121`
31-
| Ray 2.35.0, Python 3.11, CUDA 12.1
30+
| `ray:2.44.1-py311-cu121`
31+
| Ray 2.44.1, Python 3.11, CUDA 12.1
3232

3333
| Ray
3434
| ROCm
@@ -39,8 +39,8 @@ The following table shows some example base training images:
3939
| Ray
4040
| ROCm
4141
| 3.11
42-
| `ray:2.35.0-py311-rocm62`
43-
| Ray 2.35.0, Python 3.11, ROCm 6.2
42+
| `ray:2.44.1-py311-rocm62`
43+
| Ray 2.44.1, Python 3.11, ROCm 6.2
4444

4545
| KFTO
4646
| CUDA
@@ -93,7 +93,7 @@ Examples:
9393
+
9494
[source,bash]
9595
----
96-
FROM quay.io/modh/ray:2.35.0-py311-cu121
96+
FROM quay.io/modh/ray:2.44.1-py311-cu121
9797
----
9898
+
9999
[source,bash]

modules/deploying-models-using-multiple-gpu-nodes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ NOTE: You may need to specify additional arguments, depending on your environmen
203203

204204
.Verification
205205

206-
To confirm that you have set up your environment to deploy models on multiple GPU nodes, check the GPU resource status, the `InferenceService` status, the ray cluster status, and send a request to the model.
206+
To confirm that you have set up your environment to deploy models on multiple GPU nodes, check the GPU resource status, the `InferenceService` status, the Ray cluster status, and send a request to the model.
207207

208208
* Check the GPU resource status:
209209

modules/running-distributed-data-science-workloads-from-ds-pipelines.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ from kfp import dsl
7979
8080
8181
@dsl.component(
82-
base_image="registry.redhat.io/ubi8/python-39:latest",
82+
base_image="registry.redhat.io/ubi9/python-311:latest",
8383
packages_to_install=['codeflare-sdk']
8484
)
8585
@@ -98,7 +98,7 @@ def ray_fn():
9898
worker_memory_requests=1,
9999
worker_memory_limits=1,
100100
worker_extended_resource_requests={“nvidia.com/gpu”: 1}, <5>
101-
image="quay.io/modh/ray:2.35.0-py39-cu121", <6>
101+
image="quay.io/modh/ray:2.44.1-py311-cu121", <6>
102102
local_queue="local_queue_name", <7>
103103
)
104104
)

modules/running-the-demo-notebooks-from-the-codeflare-sdk.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The Python version in the Ray cluster image must be the same as the Python versi
116116
If you omit this line, one of the following Ray cluster images is used by default, based on the Python version detected in the workbench:
117117

118118
* Python 3.9: `quay.io/modh/ray:2.35.0-py39-cu121`
119-
* Python 3.11: `quay.io/modh/ray:2.35.0-py311-cu121`
119+
* Python 3.11: `quay.io/modh/ray:2.44.1-py311-cu121`
120120

121121
The default Ray images are compatible with NVIDIA GPUs that are supported by the specified CUDA version.
122122
The default images are AMD64 images, which might not work on other architectures.

0 commit comments

Comments
 (0)