-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit_horovod.go
190 lines (153 loc) · 4.57 KB
/
submit_horovod.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Copyright 2018 The Kubeflow Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package commands
import (
"fmt"
"os"
"strings"
"github.com/kubeflow/arena/pkg/util"
"github.com/kubeflow/arena/pkg/util/helm"
"github.com/kubeflow/arena/pkg/workflow"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
var (
horovod_training_chart = util.GetChartsFolder() + "/tf-horovod"
)
// NewSubmitHorovodJobCommand
func NewSubmitHorovodJobCommand() *cobra.Command {
var (
submitArgs submitHorovodJobArgs
)
submitArgs.Mode = "horovodjob"
var command = &cobra.Command{
Use: "horovodjob",
Short: "Submit horovodjob as training job.",
Aliases: []string{"hj"},
Run: func(cmd *cobra.Command, args []string) {
if len(args) == 0 {
cmd.HelpFunc()(cmd, args)
os.Exit(1)
}
util.SetLogLevel(logLevel)
setupKubeconfig()
_, err := initKubeClient()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
err = updateNamespace(cmd)
if err != nil {
log.Debugf("Failed due to %v", err)
fmt.Println(err)
os.Exit(1)
}
err = submitHorovodJob(args, &submitArgs)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
},
}
command.Flags().StringVar(&submitArgs.Cpu, "cpu", "", "the cpu resource to use for the training, like 1 for 1 core.")
command.Flags().StringVar(&submitArgs.Memory, "memory", "", "the memory resource to use for the training, like 1Gi.")
submitArgs.addCommonFlags(command)
submitArgs.addSyncFlags(command)
command.Flags().IntVar(&submitArgs.SSHPort, "sshPort", 0,
"ssh port.")
return command
}
type submitHorovodJobArgs struct {
SSHPort int `yaml:"sshPort"` // --sshPort
Cpu string `yaml:"cpu"` // --cpu
Memory string `yaml:"memory"` // --memory
// for common args
submitArgs `yaml:",inline"`
// for tensorboard
submitTensorboardArgs `yaml:",inline"`
// for sync up source code
submitSyncCodeArgs `yaml:",inline"`
}
func (submitArgs *submitHorovodJobArgs) prepare(args []string) (err error) {
submitArgs.Command = strings.Join(args, " ")
sshPort, err := util.SelectAvailablePortWithDefault(clientset, submitArgs.SSHPort)
if err != nil {
return fmt.Errorf("failed to select ssh port: %++v", err)
}
submitArgs.SSHPort = sshPort
err = submitArgs.check()
if err != nil {
return err
}
commonArgs := &submitArgs.submitArgs
err = commonArgs.transform()
if err != nil {
return nil
}
if len(envs) > 0 {
submitArgs.Envs = transformSliceToMap(envs, "=")
}
submitArgs.addHorovodInfoToEnv()
return nil
}
func (submitArgs submitHorovodJobArgs) check() error {
err := submitArgs.submitArgs.check()
if err != nil {
return err
}
if submitArgs.Image == "" {
return fmt.Errorf("--image must be set ")
}
return nil
}
func (submitArgs *submitHorovodJobArgs) addHorovodInfoToEnv() {
submitArgs.addJobInfoToEnv()
}
func submitHorovodJob(args []string, submitArgs *submitHorovodJobArgs) (err error) {
err = submitArgs.prepare(args)
if err != nil {
return err
}
trainer := NewHorovodJobTrainer(clientset)
job, err := trainer.GetTrainingJob(name, namespace)
if err != nil {
log.Debugf("Check %s exist due to error %v", name, err)
}
if job != nil {
return fmt.Errorf("the job %s already exists, please delete it first via 'arena delete %s'", name, name)
}
err = workflow.SubmitJob(name, submitArgs.Mode, namespace, submitArgs, horovod_training_chart)
if err != nil {
return err
}
log.Infof("The Job %s has been submitted successfully", name)
log.Infof("You can check the job status via `arena get %s --type %s`", name, submitArgs.Mode)
return nil
}
func submitHorovodJobWithHelm(args []string, submitArgs *submitHorovodJobArgs) (err error) {
err = submitArgs.prepare(args)
if err != nil {
return err
}
exist, err := helm.CheckRelease(name)
if err != nil {
return err
}
if exist {
return fmt.Errorf("the job %s already exists, please delete it first via 'arena delete %s'", name, name)
}
// the master is also considered as a worker
submitArgs.WorkerCount = submitArgs.WorkerCount - 1
return helm.InstallRelease(name, namespace, submitArgs, horovod_training_chart)
}