We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c46d1 commit 04f764eCopy full SHA for 04f764e
backends/cadence/reference/operators/quantized_conv_out.cpp
@@ -119,7 +119,7 @@ __attribute__((noinline)) void conv2d_nchw_core_generic(
119
if (((_h + d0 * _wh - p0) >= 0) &&
120
((_h + d0 * _wh - p0) < h) &&
121
((_w + d1 * _ww - p1) >= 0) &&
122
- ((_w + d1 * _ww - p1 < w))) {
+ ((_w + d1 * _ww - p1) < w)) {
123
int ioff =
124
(_h + d0 * _wh - p0) * w + (_w + d1 * _ww - p1);
125
int woff = _wh * ww + _ww;
0 commit comments