From 92f0f29670b3a4a6fe7bbaf334e60de8817d71bb Mon Sep 17 00:00:00 2001 From: nmeyer-ur Date: Fri, 8 May 2020 10:57:23 +0200 Subject: [PATCH] fixed double overloading vecf in Div, corrected typos --- Grid/simd/Grid_a64fx-fixedsize.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Grid/simd/Grid_a64fx-fixedsize.h b/Grid/simd/Grid_a64fx-fixedsize.h index e32014bf..42e12a92 100644 --- a/Grid/simd/Grid_a64fx-fixedsize.h +++ b/Grid/simd/Grid_a64fx-fixedsize.h @@ -355,7 +355,7 @@ struct Div{ return svdiv_x(pg1, a, b); } // Real double - inline vecf operator()(vecf a, vecf b){ + inline vecd operator()(vecd a, vecd b){ pred pg1 = acle::pg1(); return svdiv_x(pg1, a, b); } @@ -369,7 +369,7 @@ struct Conj{ } // Complex double inline vecd operator()(vecd a){ - pred pg_odd = acle::pg_odd(); + pred pg_odd = acle::pg_odd(); return svneg_x(pg_odd, a); } }; @@ -398,7 +398,7 @@ struct TimesMinusI{ struct TimesI{ // Complex float inline vecf operator()(vecf a, vecf b){ - lutf tbl_swap = acle::tbl_swap(); + lutf tbl_swap = acle::tbl_swap(); pred pg1 = acle::pg1(); pred pg_even = acle::pg_even();