Skip to content

Commit

Permalink
Fix: Fixing a typod type in avx.h (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealTimeChris authored Sep 22, 2023
1 parent e23d270 commit d97ae4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dpp/isa/avx.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace dpp {
for (uint64_t x = 0; x < byte_blocks_per_register; ++x) {
new_array[x] = static_cast<float>(values[x]);
}
return _mm256_load_ps(new_array);
return _mm_load_ps(new_array);
}

/**
Expand Down

0 comments on commit d97ae4c

Please sign in to comment.