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

Add _n forms of the SVE2p1 and SME2 svdot intrinsics #378

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions main/acle.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ Armv8.4-A [[ARMARMv84]](#ARMARMv84). Support is added for the Dot Product intrin
* Added [`__arm_agnostic`](#arm_agnostic) keyword attribute.
* Refined function versioning scope and signature rules to use the default
version scope and signature.
* Added `_n` forms of the SVE2p1 and SME2 `svdot` intrinsics.
* Changed the status of the SME2p1 ACLE from Alpha to Beta.
* Changed the status of the SVE2p1 ACLE from Alpha to Beta.

Expand Down Expand Up @@ -12703,6 +12704,8 @@ Multi-vector dot-product (2-way)
// Variants are also available for _s32_s16 and _u32_u16
svfloat32_t svdot[_f32_f16](svfloat32_t zda, svfloat16_t zn,
svfloat16_t zm);
svfloat32_t svdot[_n_f32_f16](svfloat32_t zda, svfloat16_t zn,
float16_t zm);
```

#### UDOT, SDOT, FDOT (indexed)
Expand Down
Loading