@@ -25,10 +25,10 @@ import (
2525 "github.com/opendatahub-io/distributed-workloads/tests/common/support"
2626)
2727
28- // ClusterTrainingRuntime represents a ClusterTrainingRuntime with its expected RHOAI image
28+ // ClusterTrainingRuntime represents a ClusterTrainingRuntime with its expected image name
2929type ClusterTrainingRuntime struct {
30- Name string
31- RHOAIImage string
30+ Name string
31+ Image string
3232}
3333
3434const (
@@ -88,21 +88,21 @@ var TrainingHubToDefaultClusterRuntime = map[string]string{
8888
8989// ExpectedRuntimes is the list of expected ClusterTrainingRuntimes on the cluster
9090var ExpectedRuntimes = []ClusterTrainingRuntime {
91- {Name : DefaultClusterTrainingRuntimeCUDA , RHOAIImage : "odh-th06-cuda130-torch291-py312" },
92- {Name : DefaultClusterTrainingRuntimeROCm , RHOAIImage : "odh-th06-rocm64-torch291-py312" },
93- {Name : DefaultClusterTrainingRuntimeCPU , RHOAIImage : "odh-th06-cpu-torch291-py312" },
94- {Name : "torch-distributed-cuda128-torch29-py312" , RHOAIImage : "odh-training-cuda128-torch29-py312" },
95- {Name : "torch-distributed-rocm64-torch29-py312" , RHOAIImage : "odh-training-rocm64-torch29-py312" },
96- {Name : "torch-distributed-cuda130-torch291-py312" , RHOAIImage : "odh-th06-cuda130-torch291-py312" },
97- {Name : "torch-distributed-rocm64-torch291-py312" , RHOAIImage : "odh-th06-rocm64-torch291-py312" },
98- {Name : "torch-distributed-cpu-torch291-py312" , RHOAIImage : "odh-th06-cpu-torch291-py312" },
99- {Name : DefaultTrainingHubRuntimeCUDA , RHOAIImage : "odh-th06-cuda130-torch291-py312" },
100- {Name : DefaultTrainingHubRuntimeCPU , RHOAIImage : "odh-th06-cpu-torch291-py312" },
101- {Name : DefaultTrainingHubRuntimeROCm , RHOAIImage : "odh-th06-rocm64-torch291-py312" },
102- {Name : "training-hub-th05-cuda128-torch29-py312" , RHOAIImage : "odh-training-cuda128-torch29-py312" },
103- {Name : "training-hub-th06-cuda130-torch291-py312" , RHOAIImage : "odh-th06-cuda130-torch291-py312" },
104- {Name : "training-hub-th06-cpu-torch291-py312" , RHOAIImage : "odh-th06-cpu-torch291-py312" },
105- {Name : "training-hub-th06-rocm64-torch291-py312" , RHOAIImage : "odh-th06-rocm64-torch291-py312" },
91+ {Name : DefaultClusterTrainingRuntimeCUDA , Image : "odh-th06-cuda130-torch291-py312" },
92+ {Name : DefaultClusterTrainingRuntimeROCm , Image : "odh-th06-rocm64-torch291-py312" },
93+ {Name : DefaultClusterTrainingRuntimeCPU , Image : "odh-th06-cpu-torch291-py312" },
94+ {Name : "torch-distributed-cuda128-torch29-py312" , Image : "odh-training-cuda128-torch29-py312" },
95+ {Name : "torch-distributed-rocm64-torch29-py312" , Image : "odh-training-rocm64-torch29-py312" },
96+ {Name : "torch-distributed-cuda130-torch291-py312" , Image : "odh-th06-cuda130-torch291-py312" },
97+ {Name : "torch-distributed-rocm64-torch291-py312" , Image : "odh-th06-rocm64-torch291-py312" },
98+ {Name : "torch-distributed-cpu-torch291-py312" , Image : "odh-th06-cpu-torch291-py312" },
99+ {Name : DefaultTrainingHubRuntimeCUDA , Image : "odh-th06-cuda130-torch291-py312" },
100+ {Name : DefaultTrainingHubRuntimeCPU , Image : "odh-th06-cpu-torch291-py312" },
101+ {Name : DefaultTrainingHubRuntimeROCm , Image : "odh-th06-rocm64-torch291-py312" },
102+ {Name : "training-hub-th05-cuda128-torch29-py312" , Image : "odh-training-cuda128-torch29-py312" },
103+ {Name : "training-hub-th06-cuda130-torch291-py312" , Image : "odh-th06-cuda130-torch291-py312" },
104+ {Name : "training-hub-th06-cpu-torch291-py312" , Image : "odh-th06-cpu-torch291-py312" },
105+ {Name : "training-hub-th06-rocm64-torch291-py312" , Image : "odh-th06-rocm64-torch291-py312" },
106106}
107107
108108// GetImageFromClusterTrainingRuntime retrieves the container image from the named ClusterTrainingRuntime
0 commit comments