File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -131,8 +131,8 @@ void pointwise_conv_1d_latency_cl(data_T data[CONFIG_T::in_width * CONFIG_T::n_c
131131 data[index_data], weights[index_weight]);
132132 }
133133 } // end channel loop
134- } // end filter loop
135- } // end output loop
134+ } // end filter loop
135+ } // end output loop
136136
137137 // Initialize accumulator with input biases
138138 for (int ii = 0 ; ii < CONFIG_T::out_width / CONFIG_T::reuse_factor; ii++) {
@@ -153,8 +153,8 @@ void pointwise_conv_1d_latency_cl(data_T data[CONFIG_T::in_width * CONFIG_T::n_c
153153 int index_mult = ii * CONFIG_T::n_filt * CONFIG_T::n_chan + ff * CONFIG_T::n_chan + cc;
154154 acc[ii][ff] += mult[index_mult];
155155 } // end channel loop
156- } // end filter loop
157- } // end output loop
156+ } // end filter loop
157+ } // end output loop
158158
159159 // Cast to "res_t" type
160160 for (int ii = 0 ; ii < CONFIG_T::out_width / CONFIG_T::reuse_factor; ii++) {
Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ void pointwise_conv_1d_latency_cl(data_T data[CONFIG_T::in_width * CONFIG_T::n_c
130130 data[index_data], weights[index_weight]);
131131 }
132132 } // end channel loop
133- } // end filter loop
134- } // end output loop
133+ } // end filter loop
134+ } // end output loop
135135
136136 // Initialize accumulator with input biases
137137 for (int ii = 0 ; ii < CONFIG_T::out_width / CONFIG_T::reuse_factor; ii++) {
@@ -152,8 +152,8 @@ void pointwise_conv_1d_latency_cl(data_T data[CONFIG_T::in_width * CONFIG_T::n_c
152152 int index_mult = ii * CONFIG_T::n_filt * CONFIG_T::n_chan + ff * CONFIG_T::n_chan + cc;
153153 acc[ii][ff] += mult[index_mult];
154154 } // end channel loop
155- } // end filter loop
156- } // end output loop
155+ } // end filter loop
156+ } // end output loop
157157
158158 // Cast to "res_t" type
159159 for (int ii = 0 ; ii < CONFIG_T::out_width / CONFIG_T::reuse_factor; ii++) {
You can’t perform that action at this time.
0 commit comments