You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Store 512-bits of integer data from a into memory. mem_addr must be aligned on a 64-byte boundary or a general-protection exception may be generated.
@@ -57231,7 +57231,7 @@ mod tests {
57231
57231
#[simd_test(enable = "avx512f")]
57232
57232
unsafe fn test_mm512_loadu_si512() {
57233
57233
let a = &[4, 3, 2, 5, 8, 9, 64, 50, -4, -3, -2, -5, -8, -9, -64, -50];
57234
-
let p = a.as_ptr();
57234
+
let p = a.as_ptr().cast();
57235
57235
let r = _mm512_loadu_si512(black_box(p));
57236
57236
let e = _mm512_setr_epi32(4, 3, 2, 5, 8, 9, 64, 50, -4, -3, -2, -5, -8, -9, -64, -50);
0 commit comments