We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5bfd0d commit cdd1d53Copy full SHA for cdd1d53
crates/core_arch/src/x86/avx512f.rs
@@ -54387,9 +54387,9 @@ mod tests {
54387
54388
#[simd_test(enable = "avx512f")]
54389
unsafe fn test_mm512_stream_ps() {
54390
- #[repr(align(32))]
+ #[repr(align(64))]
54391
struct Memory {
54392
- pub data: [f32; 16],
+ pub data: [f32; 16], // 64 bytes
54393
}
54394
let a = _mm512_set1_ps(7.0);
54395
let mut mem = Memory { data: [-1.0; 16] };
0 commit comments