1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Merge pull request #29114 from akretz:fix-masked-norm

Fix MaskedNormInf_SIMD<float, float>
This commit is contained in:
Alexander Smorkalov
2026-05-24 12:31:30 +03:00
committed by GitHub
+1 -1
View File
@@ -1290,7 +1290,7 @@ struct MaskedNormInf_SIMD<float, float> {
v_float32 acc = vx_setzero_f32();
for (; i <= len - vstep; i += vstep) {
v_uint32 m = v_reinterpret_as_u32(vx_load_expand(mask + i));
v_uint32 m = vx_load_expand_q(mask + i);
v_uint32 cmp = v_gt(m, vx_setzero_u32());
v_float32 s = vx_load(src + i);
s = v_abs(s);