fix test_mm512_stream_ps test

This commit is contained in:
Ralf Jung 2024-02-28 18:32:05 +01:00 committed by Amanieu d'Antras
parent 5c0744a3e5
commit 5982c0838a

View file

@ -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] };