From 35481474babce9b28884ebc1f8df0f80c8b861f4 Mon Sep 17 00:00:00 2001 From: RealTimeChris <40668522+RealTimeChris@users.noreply.github.com> Date: Fri, 22 Sep 2023 09:43:00 -0400 Subject: [PATCH] Fix: Fixing a typod type in avx.h --- include/dpp/isa/avx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dpp/isa/avx.h b/include/dpp/isa/avx.h index 9dc66b0d2b..1ba794d712 100644 --- a/include/dpp/isa/avx.h +++ b/include/dpp/isa/avx.h @@ -97,7 +97,7 @@ namespace dpp { for (uint64_t x = 0; x < byte_blocks_per_register; ++x) { new_array[x] = static_cast(values[x]); } - return _mm256_load_ps(new_array); + return _mm_load_ps(new_array); } /**