File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ package support
5
5
// ***********************
6
6
7
7
const (
8
- RayVersion = "2.35.0"
9
- RayImage = "quay.io/modh/ray:2.35.0-py39-cu121"
8
+ RayVersion = "2.35.0"
9
+ RayImage = "quay.io/modh/ray:2.35.0-py39-cu121"
10
+ RayROCmImage = "quay.io/modh/ray:2.35.0-py39-rocm61"
10
11
)
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const (
27
27
28
28
CodeFlareTestRayVersion = "CODEFLARE_TEST_RAY_VERSION"
29
29
CodeFlareTestRayImage = "CODEFLARE_TEST_RAY_IMAGE"
30
+ CodeFlareTestRayROCmImage = "CODEFLARE_TEST_RAY_ROCM_IMAGE"
30
31
CodeFlareTestPyTorchImage = "CODEFLARE_TEST_PYTORCH_IMAGE"
31
32
32
33
// The testing output directory, to write output files into.
@@ -78,6 +79,10 @@ func GetRayImage() string {
78
79
return lookupEnvOrDefault (CodeFlareTestRayImage , RayImage )
79
80
}
80
81
82
+ func GetRayROCmImage () string {
83
+ return lookupEnvOrDefault (CodeFlareTestRayROCmImage , RayROCmImage )
84
+ }
85
+
81
86
func GetPyTorchImage () string {
82
87
return lookupEnvOrDefault (CodeFlareTestPyTorchImage , "pytorch/pytorch:1.11.0-cuda11.3-cudnn8-runtime" )
83
88
}
You can’t perform that action at this time.
0 commit comments