File tree 6 files changed +18
-1
lines changed
6 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,12 @@ run_python_examples.sh @msaroufim
19
19
20
20
# Need an owner
21
21
. /regression /
22
- . /snli /
23
22
. /mnist /
24
23
. /imagenet /
25
24
. /super_resolution /
26
25
. /time_sequence_prediction /
27
26
. /vae /
27
+
28
+ # Legacy examples
28
29
. /cpp /
30
+ . /legacy /snli /
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -124,6 +124,20 @@ function snli() {
124
124
python train.py --epochs 1 --dev_every 1 --no-bidirectional --dry-run || error " couldn't train snli"
125
125
}
126
126
127
+ function fx() {
128
+ start
129
+ python custom_tracer.py || error " fx custom tracer has failed"
130
+ python invert.py || error " fx invert has failed"
131
+ python module_tracer.py || error " fx module tracer has failed"
132
+ python nnc_compiler.py || error " fx nnc compile has failed"
133
+ python primitive_library.py || error " fx primitive library has failed"
134
+ python profiling_tracer.py || error " fx profiling tracer has failed"
135
+ python replace_op.py || error " fx replace op has failed"
136
+ python subgraph_rewriter_basic_use.py || error " fx subgraph has failed"
137
+ python vmap.py || error " vmap has failed"
138
+ python vmap_output_dynamically.py || error " vmap output dynamically has failed"
139
+ }
140
+
127
141
function super_resolution() {
128
142
start
129
143
python main.py --upscale_factor 3 --batchSize 4 --testBatchSize 100 --nEpochs 1 --lr 0.001 || error " super resolution failed"
@@ -185,6 +199,7 @@ function run_all() {
185
199
time_sequence_prediction
186
200
vae
187
201
word_language_model
202
+ fx
188
203
}
189
204
190
205
# by default, run all examples
You can’t perform that action at this time.
0 commit comments