Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix signature of _mm512_store(u)_si512 #15

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pulp/src/core_arch/x86/avx512f.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2324,13 +2324,13 @@ impl Avx512f {
unsafe fn _mm512_loadu_epi64(mem_addr: *const i64) -> __m512i;
unsafe fn _mm512_storeu_epi64(mem_addr: *mut i64, a: __m512i);
unsafe fn _mm512_loadu_si512(mem_addr: *const i32) -> __m512i;
unsafe fn _mm512_storeu_si512(mem_addr: *mut i32, a: __m512i);
unsafe fn _mm512_storeu_si512(mem_addr: *mut __m512i, a: __m512i);
unsafe fn _mm512_loadu_pd(mem_addr: *const f64) -> __m512d;
unsafe fn _mm512_storeu_pd(mem_addr: *mut f64, a: __m512d);
unsafe fn _mm512_loadu_ps(mem_addr: *const f32) -> __m512;
unsafe fn _mm512_storeu_ps(mem_addr: *mut f32, a: __m512);
unsafe fn _mm512_load_si512(mem_addr: *const i32) -> __m512i;
unsafe fn _mm512_store_si512(mem_addr: *mut i32, a: __m512i);
unsafe fn _mm512_store_si512(mem_addr: *mut __m512i, a: __m512i);
unsafe fn _mm512_load_epi32(mem_addr: *const i32) -> __m512i;
unsafe fn _mm512_store_epi32(mem_addr: *mut i32, a: __m512i);
unsafe fn _mm512_load_epi64(mem_addr: *const i64) -> __m512i;
Expand Down