Skip to content

Commit ba3964b

Browse files
committed
remove distributed from run_python_examples.sh
1 parent 011abcd commit ba3964b

File tree

1 file changed

+20
-24
lines changed

1 file changed

+20
-24
lines changed

run_python_examples.sh

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ function dcgan() {
1717
python main.py --dataset fake $CUDA_FLAG --mps --dry-run || error "dcgan failed"
1818
}
1919

20-
function distributed() {
21-
bash $BASE_DIR/run_distributed_examples.sh || error "distributed examples failed"
22-
}
23-
2420
function fast_neural_style() {
2521
start
2622
if [ ! -d "saved_models" ]; then
@@ -172,27 +168,27 @@ function clean() {
172168
}
173169

174170
function run_all() {
175-
# cpp
171+
# cpp moved to `run_cpp_examples.sh```
176172
dcgan
177-
distributed
178-
# fast_neural_style
179-
# imagenet
180-
# language_translation
181-
# mnist
182-
# mnist_forward_forward
183-
# mnist_hogwild
184-
# mnist_rnn
185-
# regression
186-
# reinforcement_learning
187-
# siamese_network
188-
# super_resolution
189-
# time_sequence_prediction
190-
# vae
191-
# vision_transformer
192-
# word_language_model
193-
# fx
194-
# gcn
195-
# gat
173+
# distributed moved to `run_distributed_examples.sh`
174+
fast_neural_style
175+
imagenet
176+
language_translation
177+
mnist
178+
mnist_forward_forward
179+
mnist_hogwild
180+
mnist_rnn
181+
regression
182+
reinforcement_learning
183+
siamese_network
184+
super_resolution
185+
time_sequence_prediction
186+
vae
187+
vision_transformer
188+
word_language_model
189+
fx
190+
gcn
191+
gat
196192
}
197193

198194
# by default, run all examples

0 commit comments

Comments
 (0)