Merge pull request #26385 from vpisarev:fix_bfloat_test

fixed typo in bfloat<=>float conversion test
This commit is contained in:
Alexander Smorkalov 2024-10-30 16:01:46 +03:00 committed by GitHub
commit 6a8300c1a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3432,7 +3432,7 @@ TEST(Core_BFloat, convert)
int vlanes = VTraits<v_float32>::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);
}