Skip to content

Commit 29f8554

Browse files
committed
Address review comments
1. Change firstp/lastp parameter names to match the register names: op -> pn 2. split the x2 and x4 variants of the FMUL intrinsics
1 parent 09763cc commit 29f8554

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

main/acle.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12954,18 +12954,22 @@ Multi-vector floating-point multiply
1295412954
// Variants are also available for:
1295512955
// [_single_f32_x2]
1295612956
// [_single_f64_x2]
12957-
// [_single_f16_x4]
12957+
svfloat16x2_t svmul[_single_f16_x2](svfloat16x2_t zd, svfloat16_t zm) __arm_streaming;
12958+
12959+
// Variants are also available for:
1295812960
// [_single_f32_x4]
1295912961
// [_single_f64_x4]
12960-
svfloat16x2_t svmul[_single_f16_x2](svfloat16x2_t zd, svfloat16_t zm) __arm_streaming;
12962+
svfloat16x4_t svmul[_single_f16_x4](svfloat16x4_t zd, svfloat16_t zm) __arm_streaming;
1296112963

1296212964
// Variants are also available for:
1296312965
// [_f32_x2]
1296412966
// [_f64_x2]
12965-
// [_f16_x4]
12967+
svfloat16x2_t svmul[_f16_x2](svfloat16x2_t zd, svfloat16x2_t zm) __arm_streaming;
12968+
12969+
// Variants are also available for:
1296612970
// [_f32_x4]
1296712971
// [_f64_x4]
12968-
svfloat16x2_t svmul[_f16_x2](svfloat16x2_t zd, svfloat16x2_t zm) __arm_streaming;
12972+
svfloat16x4_t svmul[_f16_x4](svfloat16x4_t zd, svfloat16x4_t zm) __arm_streaming;
1296912973
```
1297012974

1297112975
### Streaming-compatible versions of standard routines
@@ -13550,11 +13554,11 @@ Scalar index of first/last true predicate element (predicated).
1355013554
``` c
1355113555
// Variants are available for:
1355213556
// _b16, _b32, _b64
13553-
int64_t svfirstp_b8(svbool_t pg, svbool_t op);
13557+
int64_t svfirstp_b8(svbool_t pg, svbool_t pn);
1355413558

1355513559
// Variants are available for:
1355613560
// _b16, _b32, _b64
13557-
int64_t svlastp_b8(svbool_t pg, svbool_t op);
13561+
int64_t svlastp_b8(svbool_t pg, svbool_t pn);
1355813562

1355913563
```
1356013564

0 commit comments

Comments
 (0)