Skip to content

Commit

Permalink
fix test_mm512_stream_ps test
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Feb 28, 2024
1 parent e5bfd0d commit cdd1d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core_arch/src/x86/avx512f.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54387,9 +54387,9 @@ mod tests {

#[simd_test(enable = "avx512f")]
unsafe fn test_mm512_stream_ps() {
#[repr(align(32))]
#[repr(align(64))]
struct Memory {
pub data: [f32; 16],
pub data: [f32; 16], // 64 bytes
}
let a = _mm512_set1_ps(7.0);
let mut mem = Memory { data: [-1.0; 16] };
Expand Down

0 comments on commit cdd1d53

Please sign in to comment.