-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
33 lines (22 loc) · 1.03 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
gcc -O3 src/lstmlib.c src/test.c -lm -o test.out
./test.out
gcc -O3 src/lstmlib.c src/test_create.c -lm -o test_create.out
./test_create.out
gcc -O3 src/lstmlib.c src/test_run.c -lm -o test_run.out
./test_run.out
gcc -O3 src/lstmlib.c src/test_mse.c -lm -o test_mse.out
./test_mse.out
gcc -O3 src/lstmlib.c src/test_fitunit.c -lm -o test_fitunit.out
./test_fitunit.out
gcc -O3 src/lstmlib.c src/test_sin_cos.c -lm -o test_sin_cos.out
./test_sin_cos.out >test_sin_cos.csv
gcc -O3 src/lstmlib.c src/test_sin_cos_pre.c -lm -o test_sin_cos_pre.out
./test_sin_cos_pre.out >test_sin_cos_pre.csv
gcc -O3 src/lstmlib.c src/test_rectangle_cos_pre.c -lm -o test_rectangle_cos_pre.out
./test_rectangle_cos_pre.out >test_rectangle_cos_pre.csv
gcc -O3 src/lstmlib.c src/test_params_change.c -lm -o test_params_change.out
./test_params_change.out >test_params_change.csv
gcc -O3 src/lstmlib.c src/test_save.c -lm -o test_save.out
./test_save.out
gcc -O3 src/lstmlib.c src/lstmslib.c src/test_lstmslib.c -lm -o test_lstmslib.out && ./test_lstmslib.out