File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 8
8
CodeFlareSDKVersion = "v0.20.2"
9
9
RayVersion = "2.35.0"
10
10
RayImage = "quay.io/modh/ray:2.35.0-py39-cu121"
11
+ RayAMDGpuImage = "quay.io/rhoai/ray:2.35.0-py39-rocm61-torch24-fa26"
11
12
)
Original file line number Diff line number Diff line change @@ -25,10 +25,11 @@ const (
25
25
// The environment variables hereafter can be used to change the components
26
26
// used for testing.
27
27
28
- CodeFlareTestSdkVersion = "CODEFLARE_TEST_SDK_VERSION"
29
- CodeFlareTestRayVersion = "CODEFLARE_TEST_RAY_VERSION"
30
- CodeFlareTestRayImage = "CODEFLARE_TEST_RAY_IMAGE"
31
- CodeFlareTestPyTorchImage = "CODEFLARE_TEST_PYTORCH_IMAGE"
28
+ CodeFlareTestSdkVersion = "CODEFLARE_TEST_SDK_VERSION"
29
+ CodeFlareTestRayVersion = "CODEFLARE_TEST_RAY_VERSION"
30
+ CodeFlareTestRayImage = "CODEFLARE_TEST_RAY_IMAGE"
31
+ CodeFlareTestRayAMDGpuImage = "CODEFLARE_TEST_RAY_AMD_GPU_IMAGE"
32
+ CodeFlareTestPyTorchImage = "CODEFLARE_TEST_PYTORCH_IMAGE"
32
33
33
34
// The testing output directory, to write output files into.
34
35
CodeFlareTestOutputDir = "CODEFLARE_TEST_OUTPUT_DIR"
@@ -83,6 +84,10 @@ func GetRayImage() string {
83
84
return lookupEnvOrDefault (CodeFlareTestRayImage , RayImage )
84
85
}
85
86
87
+ func GetRayAMDGpuImage () string {
88
+ return lookupEnvOrDefault (CodeFlareTestRayAMDGpuImage , RayAMDGpuImage )
89
+ }
90
+
86
91
func GetPyTorchImage () string {
87
92
return lookupEnvOrDefault (CodeFlareTestPyTorchImage , "pytorch/pytorch:1.11.0-cuda11.3-cudnn8-runtime" )
88
93
}
You can’t perform that action at this time.
0 commit comments