Skip to content

Commit 04f764e

Browse files
authored
fix typo in cadence cp quantized_conv_out
Differential Revision: D68278032 Pull Request resolved: #7706
1 parent a8c46d1 commit 04f764e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/cadence/reference/operators/quantized_conv_out.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ __attribute__((noinline)) void conv2d_nchw_core_generic(
119119
if (((_h + d0 * _wh - p0) >= 0) &&
120120
((_h + d0 * _wh - p0) < h) &&
121121
((_w + d1 * _ww - p1) >= 0) &&
122-
((_w + d1 * _ww - p1 < w))) {
122+
((_w + d1 * _ww - p1) < w)) {
123123
int ioff =
124124
(_h + d0 * _wh - p0) * w + (_w + d1 * _ww - p1);
125125
int woff = _wh * ww + _ww;

0 commit comments

Comments
 (0)