fix test_mm512_stream_ps test
This commit is contained in:
parent
5c0744a3e5
commit
5982c0838a
1 changed files with 2 additions and 2 deletions
|
|
@ -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] };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue