We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc47061 commit ec93e2dCopy full SHA for ec93e2d
2 files changed
src/components/TabTraining.vue
@@ -9,12 +9,12 @@
9
<h2 class="training">Distributed Training</h2>
10
<FormCheckbox label="Use distributed training" saveKey="use_dist" />
11
<div v-show="store.config.use_dist">
12
- <h2>Choose a Backend</h2>
13
<FormSelect
14
required
15
:saveKey="backend.name"
16
:label="backend.description"
17
:options="backend.options"
+ :defaultV="backend.default"
18
/>
19
<FormRadio :options="[launch, spawn]" saveKey="dist" defaultV="launch" />
20
<FormInput
src/metadata/metadata.json
@@ -44,8 +44,10 @@
44
},
45
"backend": {
46
"name": "backend",
47
- "description": "Choose a Backend",
48
- "options": ["NCCL", "Gloo"]
+ "type": "array",
+ "description": "Choose a backend",
49
+ "options": ["Nccl", "Gloo"],
50
+ "default": "Nccl"
51
}
52
53
"handlers": {
0 commit comments