From 05edf803bd160c66d8ee9090b8114d603a59d8b9 Mon Sep 17 00:00:00 2001 From: nmeyer-ur Date: Tue, 12 May 2020 03:59:59 +0900 Subject: [PATCH] corrected typo --- Grid/simd/Grid_a64fx-fixedsize.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Grid/simd/Grid_a64fx-fixedsize.h b/Grid/simd/Grid_a64fx-fixedsize.h index 4f9cf206..5c325b25 100644 --- a/Grid/simd/Grid_a64fx-fixedsize.h +++ b/Grid/simd/Grid_a64fx-fixedsize.h @@ -697,7 +697,8 @@ struct Reduce{ }; //Complex float Reduce template <> -inline Grid::ComplexF Reduce::operator()(svfloat32_t in){ +// inline Grid::ComplexF Reduce::operator()(svfloat32_t in){ +inline Grid::ComplexF Reduce::operator()(__SVFloat32_t in){ pred pg_even = acle::pg_even(); pred pg_odd = acle::pg_odd(); float a = svred(pg_even, in); @@ -706,13 +707,15 @@ inline Grid::ComplexF Reduce::operator()(svfloat32_ } //Real float Reduce template <> -inline Grid::RealF Reduce::operator()(svfloat32_t in){ +//inline Grid::RealF Reduce::operator()(svfloat32_t in){ +inline Grid::RealF Reduce::operator()(__SVFloat32_t in){ pred pg1 = acle::pg1(); return svred(pg1, in); } //Complex double Reduce template <> -inline Grid::ComplexD Reduce::operator()(svfloat64_t in){ +//inline Grid::ComplexD Reduce::operator()(svfloat64_t in){ +inline Grid::ComplexD Reduce::operator()(__SVFloat64_t in){ pred pg_even = acle::pg_even(); pred pg_odd = acle::pg_odd(); double a = svred(pg_even, in); @@ -721,13 +724,15 @@ inline Grid::ComplexD Reduce::operator()(svfloat64_ } //Real double Reduce template <> -inline Grid::RealD Reduce::operator()(svfloat64_t in){ +//inline Grid::RealD Reduce::operator()(svfloat64_t in){ +inline Grid::RealD Reduce::operator()(__SVFloat64_t in){ pred pg1 = acle::pg1(); return svred(pg1, in); } //Integer Reduce template <> -inline Integer Reduce::operator()(svuint32_t in){ +//inline Integer Reduce::operator()(svuint32_t in){ +inline Integer Reduce::operator()(__SVUint32_t in){ pred pg1 = acle::pg1(); return svred(pg1, in); }