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 Jun 21, 2024
1 parent 26bddf5 commit bf0d024
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 @@ -54385,9 +54385,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 bf0d024

Please sign in to comment.