Skip to content

Commit 4ce68e5

Browse files
minor modifications to dscnn test files
1 parent 00810c2 commit 4ce68e5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

c_reference/tests/dscnn/test_dscnn_lr.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include"dscnn_param_lr.h"
55
#include"conv1d.h"
66
#include"dscnn.h"
7-
#include"conv_utils.h"
87

98
int main(){
109

@@ -23,7 +22,7 @@ int main(){
2322
0, 0, 0, 0, O_F, 2, FILT,
2423
&conv_params, 0);
2524

26-
// Calculate Error(Aggregate Squared and Mean Squared)
25+
// Calculate Error(Aggregate Squared, Mean Squared and Relative Squared)
2726
float error = 0, denom = 0;
2827
for(int t = 0 ; t < O_T ; t++){
2928
for(int d = 0 ; d < O_F ; d++){

c_reference/tests/dscnn/test_dscnn_lr_depth_point.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include"dscnn_param_lr_depth_point.h"
55
#include"conv1d.h"
66
#include"dscnn.h"
7-
#include"conv_utils.h"
87

98
int main(){
109

@@ -33,7 +32,7 @@ int main(){
3332
0, POINT_FILT, &point_param, 0,
3433
0, POOL_FILT, 0);
3534

36-
// Calculate Error(Aggregate Squared and Mean Squared)
35+
// Calculate Error(Aggregate Squared, Mean Squared and Relative Squared)
3736
float error = 0;
3837
float denom = 0;
3938
for(int t = 0 ; t < O_T ; t++){

0 commit comments

Comments
 (0)