Skip to content

Commit 00810c2

Browse files
minor modifications to conv test files
1 parent 1456955 commit 00810c2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

c_reference/tests/conv1d/avg_pool/test_avg_pool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ int main(){
1919
float avg_error = error/(O_T*O_F);
2020
printf("Testing Average Pool\n");
2121
printf("Squared Error : %f \t ; MSE : %f \n", error, avg_error);
22-
printf("Relative Squared Error : %f", error/denom)
22+
printf("Relative Squared Error : %f \n", error/denom);
2323
return 0 ;
2424
}

c_reference/tests/conv1d/conv1d_depthwise/test_conv1d_depth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ int main(){
2525
float avg_error = error/(O_T*I_F);
2626
printf("Testing Depthwise Convolution\n");
2727
printf("Squared Error : %f \t ; MSE : %f \n", error, avg_error);
28-
printf("Relative Squared Error : %f", error/denom)
28+
printf("Relative Squared Error : %f \n", error/denom);
2929
return 0 ;
3030
}

c_reference/tests/conv1d/conv1d_lr/test_conv1d_lr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ int main(){
2727
float avg_error = error/(O_T*I_F);
2828
printf("Testing Low Rank Convolution\n");
2929
printf("Squared Error : %f \t ; MSE : %f \n", error, avg_error);
30-
printf("Relative Squared Error : %f", error/denom)
30+
printf("Relative Squared Error : %f \n", error/denom);
3131
return 0 ;
3232
}

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
@@ -27,6 +27,6 @@ int main(){
2727
float avg_error = error/(O_T*I_F);
2828
printf("Testing Low Rank Depthwise Convolution\n");
2929
printf("Squared Error : %f \t ; MSE : %f \n", error, avg_error);
30-
printf("Relative Squared Error : %f", error/denom)
30+
printf("Relative Squared Error : %f \n", error/denom);
3131
return 0 ;
3232
}

c_reference/tests/conv1d/conv1d_regular/test_conv1d.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ int main(){
2525
float avg_error = error/(O_T*O_F);
2626
printf("Testing Regular Convolution\n");
2727
printf("Squared Error : %f \t ; MSE : %f \n", error, avg_error);
28-
printf("Relative Squared Error : %f", error/denom)
28+
printf("Relative Squared Error : %f \n", error/denom);
2929
return 0 ;
3030
}

0 commit comments

Comments
 (0)