Skip to content

Commit 590be76

Browse files
Removed batches param from the testing phase
1 parent 49a6fc8 commit 590be76

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

c_reference/tests/conv1d/conv1d_depthwise/test_conv1d_depth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int main(){
1313
};
1414

1515
float pred[O_T * I_F] = {};
16-
Conv1D_Depth(pred, O_T, INPUT, 1, I_T, I_F, PAD, FILT, &conv_params, ACT);
16+
Conv1D_Depth(pred, O_T, INPUT, I_T, I_F, PAD, FILT, &conv_params, ACT);
1717
float error = 0;
1818
for(int t = 0 ; t < O_T ; t++){
1919
for(int d = 0 ; d < I_F ; d++){

c_reference/tests/conv1d/conv1d_lr/test_conv1d_lr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int main(){
1515
};
1616

1717
float pred[O_T * O_F] = {};
18-
Conv1D_LR(pred, O_T, O_F, INPUT, 1, I_T, I_F, PAD, FILT, &conv_params, ACT);
18+
Conv1D_LR(pred, O_T, O_F, INPUT, I_T, I_F, PAD, FILT, &conv_params, ACT);
1919
float error = 0;
2020
for(int t = 0 ; t < O_T ; t++){
2121
for(int d = 0 ; d < I_F ; d++){

c_reference/tests/conv1d/conv1d_lr_depthwise/test_conv1d_lr_depth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int main(){
1515
};
1616

1717
float pred[O_T * O_F] = {};
18-
Conv1D_Depth_LR(pred, O_T, INPUT, 1, I_T, I_F, PAD, FILT, &conv_params, ACT);
18+
Conv1D_Depth_LR(pred, O_T, INPUT, I_T, I_F, PAD, FILT, &conv_params, ACT);
1919
float error = 0;
2020
for(int t = 0 ; t < O_T ; t++){
2121
for(int d = 0 ; d < I_F ; d++){

c_reference/tests/conv1d/conv1d_regular/test_conv1d.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int main(){
1313
};
1414

1515
float pred[O_T * O_F] = {};
16-
Conv1D(pred, O_T, O_F, INPUT, 1, I_T, I_F, PAD, FILT, &conv_params, ACT);
16+
Conv1D(pred, O_T, O_F, INPUT, I_T, I_F, PAD, FILT, &conv_params, ACT);
1717
float error = 0;
1818
for(int t = 0 ; t < O_T ; t++){
1919
for(int d = 0 ; d < O_F ; d++){

0 commit comments

Comments
 (0)