refactor: Move tests

master
Sean McBride 3 years ago
parent 0e7d5286c4
commit 31226d5bdd

@ -9,28 +9,28 @@
PHONY: gocr__by_dpi
gocr__by_dpi: ./runtime/bin/gocr_wasm.so
# cd ./runtime/experiments/applications/ocr/by_dpi && ./install.sh
cd ./runtime/experiments/applications/ocr/by_dpi && ./run.sh
# cd ./tests/gocr/by_dpi && ./install.sh
cd ./tests/gocr/by_dpi && ./run.sh
PHONY: gocr__by_font
gocr__by_font: ./runtime/bin/gocr_wasm.so
cd ./runtime/experiments/applications/ocr/by_font && ./run.sh
cd ./tests/gocr/by_font && ./run.sh
PHONY: gocr__by_word
gocr__by_word: ./runtime/bin/gocr_wasm.so
cd ./runtime/experiments/applications/ocr/by_word && ./run.sh
cd ./tests/gocr/by_word && ./run.sh
PHONY: gocr__fivebyeight
gocr__fivebyeight: ./runtime/bin/gocr_wasm.so
cd ./runtime/experiments/applications/ocr/fivebyeight && ./run.sh
cd ./tests/gocr/fivebyeight && ./run.sh
PHONY: gocr__handwriting
gocr__handwriting: ./runtime/bin/gocr_wasm.so
cd ./runtime/experiments/applications/ocr/handwriting && ./run.sh
cd ./tests/gocr/handwriting && ./run.sh
PHONY: gocr__hyde
gocr__hyde: ./runtime/bin/gocr_wasm.so
cd ./runtime/experiments/applications/ocr/hyde && ./run.sh
cd ./tests/gocr/hyde && ./run.sh
PHONY: gocr_all
gocr__all: \
@ -47,11 +47,11 @@ gocr__all: \
PHONY: ekf__by_iteration
ekf__by_iteration: ./runtime/bin/ekf_wasm.so
cd ./runtime/experiments/applications/ekf/by_iteration && ./run.sh
cd ./tests/TinyEKF/by_iteration && ./run.sh
PHONY: ekf__one_iteration
ekf__one_iteration: ./runtime/bin/ekf_wasm.so
cd ./runtime/experiments/applications/ekf/one_iteration && ./run.sh
cd ./tests/TinyEKF/one_iteration && ./run.sh
PHONY: ekf__all
ekf__all: \
@ -64,7 +64,7 @@ ekf__all: \
PHONY: cifar10__image_classification
cifar10__image_classification: ./runtime/bin/cifar10_wasm.so
cd ./runtime/experiments/applications/imageclassification && ./run.sh
cd ./tests/CMSIS_5_NN/imageclassification && ./run.sh
PHONY: cifar10__all
cifar10__all: \
@ -80,13 +80,13 @@ cifar10__all: \
# Commented out command installs imagemagick. Requires password for sudo to install
PHONY: sod__image_resize__test
sod__image_resize__test: ./runtime/bin/resize_wasm.so
# cd ./runtime/experiments/applications/imageresize/test && ./install.sh
cd ./runtime/experiments/applications/imageresize/test && ./run.sh
# cd ./tests/sod/image_resize/test && ./install.sh
cd ./tests/sod/image_resize/test && ./run.sh
PHONY: sod__image_resize__by_resolution
sod__image_resize__by_resolution: ./runtime/bin/resize_wasm.so
# cd ./runtime/experiments/applications/imageresize/by_resolution && ./install.sh
cd ./runtime/experiments/applications/imageresize/by_resolution && ./run.sh
# cd ./tests/sod/image_resize/by_resolution && ./install.sh
cd ./tests/sod/image_resize/by_resolution && ./run.sh
# SOD - License Plate Detection
./runtime/bin/lpd_wasm.so:
@ -94,7 +94,7 @@ sod__image_resize__by_resolution: ./runtime/bin/resize_wasm.so
PHONY: sod__lpd__by_plate_count
sod__lpd__by_plate_count: ./runtime/bin/lpd_wasm.so
cd ./runtime/experiments/applications/licenseplate/by_plate_count && ./run.sh
cd ./tests/sod/lpd/by_plate_count && ./run.sh
PHONY: sod__all
sod__all: sod__image_resize__test sod__image_resize__by_resolution sod__lpd__by_plate_count
@ -105,15 +105,15 @@ sod__all: sod__image_resize__test sod__image_resize__by_resolution sod__lpd__by_
PHONY: fibonacci__bimodal
fibonacci__bimodal: ./runtime/bin/fibonacci_wasm.so
cd ./runtime/experiments/bimodal/ && ./run.sh
cd ./tests/fibonacci/bimodal/ && ./run.sh
./runtime/bin/empty_wasm.so:
make empty.install -C ./applications
PHONY: empty__concurrency
empty__concurrency: ./runtime/bin/empty_wasm.so
# ./runtime/experiments/concurrency/ && install.sh
./runtime/experiments/concurrency/ && run.sh
# cd ./tests/empty/concurrency/ && ./install.sh
cd ./tests/empty/concurrency/ && ./run.sh
all: \
gocr__all \

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save