We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab65af commit 353dc3cCopy full SHA for 353dc3c
Makefile
@@ -1,4 +1,4 @@
1
-CXX = g++-12
+CXX ?= g++-12
2
SRCDIR = ./src
3
TESTDIR = ./tests
4
BENCHDIR = ./benchmarks
src/avx512-64bit-common.h
@@ -219,7 +219,7 @@ struct ymm_vector<uint32_t> {
219
}
220
static zmm_t loadu(void const *mem)
221
{
222
- return _mm256_loadu_epi32(mem);
+ return _mm256_loadu_si256((__m256i*) mem);
223
224
static zmm_t max(zmm_t x, zmm_t y)
225
@@ -348,7 +348,7 @@ struct ymm_vector<int32_t> {
348
349
350
351
352
353
354
0 commit comments