Skip to content

Commit d97ae4c

Browse files
Fix: Fixing a typod type in avx.h (#879)
1 parent e23d270 commit d97ae4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/dpp/isa/avx.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ namespace dpp {
9797
for (uint64_t x = 0; x < byte_blocks_per_register; ++x) {
9898
new_array[x] = static_cast<float>(values[x]);
9999
}
100-
return _mm256_load_ps(new_array);
100+
return _mm_load_ps(new_array);
101101
}
102102

103103
/**

0 commit comments

Comments
 (0)