@@ -10,27 +10,27 @@ IFLAGS = -I $(INCLUDE_DIR)
10
10
all : test_rnn test_postcnn test_avg_pool test_conv1d test_conv1d_depth test_conv1d_lr test_conv1d_lr_depth test_dscnn_lr test_dscnn_lr_depth_point test_fastgrnn_lr test_rnnpool test_quantized_utils test_quantized_fastgrnn test_quantized_rnnpool test_quantized_mbconv
11
11
12
12
KWS_DIR =kws
13
- test_postcnn : $(KWS_DIR ) /test_postcnn.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $(SRC_DIR ) /dscnn.o
13
+ test_postcnn : $(KWS_DIR ) /test_postcnn.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /utils.o $( SRC_DIR ) / conv1d.o $(SRC_DIR ) /dscnn.o
14
14
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
15
15
test_rnn : $(KWS_DIR ) /test_rnn.c $(SRC_DIR ) /fastgrnn.o $(SRC_DIR ) /utils.o
16
16
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
17
17
18
18
DSCNN_DIR =dscnn
19
- test_dscnn_lr : $(DSCNN_DIR ) /test_dscnn_lr.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $(SRC_DIR ) /dscnn.o
19
+ test_dscnn_lr : $(DSCNN_DIR ) /test_dscnn_lr.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /utils.o $( SRC_DIR ) / conv1d.o $(SRC_DIR ) /dscnn.o
20
20
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
21
- test_dscnn_lr_depth_point : $(DSCNN_DIR ) /test_dscnn_lr_depth_point.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $(SRC_DIR ) /dscnn.o
21
+ test_dscnn_lr_depth_point : $(DSCNN_DIR ) /test_dscnn_lr_depth_point.c $(SRC_DIR ) /utils.o $( SRC_DIR ) / conv_utils.o $(SRC_DIR ) /conv1d.o $(SRC_DIR ) /dscnn.o
22
22
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
23
23
24
24
CONV1D_DIR =conv1d
25
- test_conv1d : $(CONV1D_DIR ) /conv1d_regular/test_conv1d.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o
25
+ test_conv1d : $(CONV1D_DIR ) /conv1d_regular/test_conv1d.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $( SRC_DIR ) /utils.o
26
26
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
27
- test_conv1d_depth : $(CONV1D_DIR ) /conv1d_depthwise/test_conv1d_depth.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o
27
+ test_conv1d_depth : $(CONV1D_DIR ) /conv1d_depthwise/test_conv1d_depth.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $( SRC_DIR ) /utils.o
28
28
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
29
- test_conv1d_lr : $(CONV1D_DIR ) /conv1d_lr/test_conv1d_lr.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o
29
+ test_conv1d_lr : $(CONV1D_DIR ) /conv1d_lr/test_conv1d_lr.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $( SRC_DIR ) /utils.o
30
30
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
31
- test_conv1d_lr_depth : $(CONV1D_DIR ) /conv1d_lr_depthwise/test_conv1d_lr_depth.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o
31
+ test_conv1d_lr_depth : $(CONV1D_DIR ) /conv1d_lr_depthwise/test_conv1d_lr_depth.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $( SRC_DIR ) /utils.o
32
32
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
33
- test_avg_pool : $(CONV1D_DIR ) /avg_pool/test_avg_pool.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o
33
+ test_avg_pool : $(CONV1D_DIR ) /avg_pool/test_avg_pool.c $(SRC_DIR ) /conv_utils.o $(SRC_DIR ) /conv1d.o $( SRC_DIR ) /utils.o
34
34
$(CC ) -o $@ $^ $(IFLAGS ) $(CFLAGS ) -lm
35
35
36
36
FASTGRNN_DIR =fastgrnn
0 commit comments