We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e341801 commit 20b7c67Copy full SHA for 20b7c67
src/components/TabTraining.vue
@@ -137,9 +137,9 @@ export default {
137
const distOptions = computed(() => {
138
let dist_options = []
139
if (templateOptions.value.distOptions == 'all') {
140
- return [spawn, torchrun]
+ return [torchrun, spawn]
141
}
142
- for (const option of [spawn, torchrun]) {
+ for (const option of [torchrun, spawn]) {
143
if (templateOptions.value.distOptions.includes(option.name)) {
144
dist_options.push(option)
145
0 commit comments