We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26bddf5 commit bf0d024Copy full SHA for bf0d024
crates/core_arch/src/x86/avx512f.rs
@@ -54385,9 +54385,9 @@ mod tests {
54385
54386
#[simd_test(enable = "avx512f")]
54387
unsafe fn test_mm512_stream_ps() {
54388
- #[repr(align(32))]
+ #[repr(align(64))]
54389
struct Memory {
54390
- pub data: [f32; 16],
+ pub data: [f32; 16], // 64 bytes
54391
}
54392
let a = _mm512_set1_ps(7.0);
54393
let mut mem = Memory { data: [-1.0; 16] };
0 commit comments