Skip to content

Commit

Permalink
gpu: ocl: reorder: fix zero-points typo
Browse files Browse the repository at this point in the history
  • Loading branch information
atkassen authored and vpirogov committed Oct 21, 2022
1 parent 64e5594 commit 53532a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpu/ocl/reorder_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
#define REORDER8(_dst, _src, _a, _b, _x0, _y0) \
do { \
const float8 _x = convert_float8(SRC_TO_REF8(_src)); \
const float8 _s = AXPBY_OP(OP, _a, _b, _x, 0.f, _x, _y); \
const float8 _s = AXPBY_OP(OP, _a, _b, _x, 0.f, _x0, _y0); \
_dst = TO_DST8(_s); \
} while (0)
#elif WITH_SUM_AB
Expand Down

0 comments on commit 53532a9

Please sign in to comment.