From 299aa14c4b2397e13b04b370462973d51231e5cd Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Tue, 29 Oct 2024 20:06:11 +0300 Subject: [PATCH] fixed typo in bfloat<=>float conversion test --- modules/core/test/test_math.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/test/test_math.cpp b/modules/core/test/test_math.cpp index 21d90ef14f..9cace09244 100644 --- a/modules/core/test/test_math.cpp +++ b/modules/core/test/test_math.cpp @@ -3432,7 +3432,7 @@ TEST(Core_BFloat, convert) int vlanes = VTraits::vlanes(); for (size_t i = 0; i < N; i += vlanes) { - v_float32 x = v_load(&bigdata[i]); + v_float32 x = vx_load(&bigdata[i]); v_pack_store(&bfdata[i], x); }