Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLANG][LLVM][AArch64]Add SME2.1 intrinsics for MOVAZ tile to vector,… #88499

Merged
merged 5 commits into from
Jun 28, 2024

Commits on Jun 27, 2024

  1. [CLANG][LLVM][AArch64]Add SME2.1 intrinsics for MOVAZ tile to vector,…

    … single
    
    According to the specification in
    ARM-software/acle#309 this adds the intrinsics
    
    // And similarly for u8.
    svint8_t svreadz_hor_za8_s8(uint64_t tile, uint32_t slice)
    __arm_streaming __arm_inout("za");
    
    // And similarly for u16, bf16 and f16.
    svint16_t svreadz_hor_za16_s16(uint64_t tile, uint32_t slice)
    __arm_streaming __arm_inout("za");
    
    // And similarly for u32 and f32.
    svint32_t svreadz_hor_za32_s32(uint64_t tile, uint32_t slice)
    __arm_streaming __arm_inout("za");
    
    // And similarly for u64 and f64.
    svint64_t svreadz_hor_za64_s64(uint64_t tile, uint32_t slice)
    __arm_streaming __arm_inout("za");
    
    // And similarly for s16, s32, s64, u8, u16, u32, u64, bf16, f16, f32, f64
    svint8_t svreadz_hor_za128_s8(uint64_t tile, uint32_t slice)
    __arm_streaming __arm_inout("za");
    CarolineConcatto committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    a4d4a0f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    656d77a View commit details
    Browse the repository at this point in the history
  3. Fix Rebase

    CarolineConcatto committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    901ec64 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    069da27 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c9908a View commit details
    Browse the repository at this point in the history