gpu2: fix v_med3_f32

This commit is contained in:
DH 2024-09-29 04:02:31 +03:00
parent 0877d3f1cd
commit e80955742a

View file

@ -735,7 +735,7 @@ float32_t v_med3_f32(float32_t a, float32_t b, float32_t c) {
}
if (v_max3_f32(a, b, c) == a) {
return v_max_f32(a, b);
return v_max_f32(b, c);
}
if (v_max3_f32(a, b, c) == b) {