1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-01 02:45:43 +02:00

Merge pull request #102 from fmgjcoppens/master

Fixed minor SIMD bug in tests.
This commit is contained in:
Anthony Scemama 2023-02-16 16:16:43 +01:00 committed by GitHub
commit 1a0ea315ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1155 additions and 1515 deletions

View File

@ -223,6 +223,8 @@ AC_RUN_IFELSE(
int simd=1;
#if defined(__AVX512F__)
simd=8;
#elif defined(__AVX2__)
simd=4;
#elif defined(__AVX__)
simd=4;
#elif defined(__SSE2__)

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long