Message ID | 20220527180623.185261-16-richard.henderson@linaro.org |
---|---|
State | New |
Headers | show |
Series | target/arm: SME prep patches | expand |
On Fri, 27 May 2022 at 19:19, Richard Henderson <richard.henderson@linaro.org> wrote: > > We will need this over in sme_helper.c. > > Signed-off-by: Richard Henderson <richard.henderson@linaro.org> > --- > target/arm/vec_internal.h | 2 ++ > target/arm/vec_helper.c | 2 +- > 2 files changed, 3 insertions(+), 1 deletion(-) > > diff --git a/target/arm/vec_internal.h b/target/arm/vec_internal.h > index 43cff5ec7c..5e50c503aa 100644 > --- a/target/arm/vec_internal.h > +++ b/target/arm/vec_internal.h > @@ -230,4 +230,6 @@ uint64_t pmull_h(uint64_t op1, uint64_t op2); > */ > uint64_t pmull_w(uint64_t op1, uint64_t op2); > > +float32 bfdotadd(float32 sum, uint32_t e1, uint32_t e2); > + A brief doc comment would be nice. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> thanks -- PMM
diff --git a/target/arm/vec_internal.h b/target/arm/vec_internal.h index 43cff5ec7c..5e50c503aa 100644 --- a/target/arm/vec_internal.h +++ b/target/arm/vec_internal.h @@ -230,4 +230,6 @@ uint64_t pmull_h(uint64_t op1, uint64_t op2); */ uint64_t pmull_w(uint64_t op1, uint64_t op2); +float32 bfdotadd(float32 sum, uint32_t e1, uint32_t e2); + #endif /* TARGET_ARM_VEC_INTERNAL_H */ diff --git a/target/arm/vec_helper.c b/target/arm/vec_helper.c index 4db68fbbb3..b3e8039cdb 100644 --- a/target/arm/vec_helper.c +++ b/target/arm/vec_helper.c @@ -2557,7 +2557,7 @@ DO_MMLA_B(gvec_usmmla_b, do_usmmla_b) * BFloat16 Dot Product */ -static float32 bfdotadd(float32 sum, uint32_t e1, uint32_t e2) +float32 bfdotadd(float32 sum, uint32_t e1, uint32_t e2) { /* FPCR is ignored for BFDOT and BFMMLA. */ float_status bf_status = {
We will need this over in sme_helper.c. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> --- target/arm/vec_internal.h | 2 ++ target/arm/vec_helper.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-)