From 0acbf77bc6dbc436e7e9f5df52fafd0f9f521816 Mon Sep 17 00:00:00 2001 From: Lanny91 Date: Thu, 24 Nov 2016 13:24:12 +0000 Subject: [PATCH] Add QPX Div structure --- lib/simd/Grid_qpx.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/simd/Grid_qpx.h b/lib/simd/Grid_qpx.h index 07933f52..1cd6edae 100644 --- a/lib/simd/Grid_qpx.h +++ b/lib/simd/Grid_qpx.h @@ -245,6 +245,21 @@ namespace Optimization { } }; + struct Div{ + // Real double + inline vector4double operator()(vector4double a, vector4double b){ + return vec_swdivs(a, b); + } + + // Real float + FLOAT_WRAP_2(operator(), inline) + + // Integer + inline int operator()(int a, int b){ + return a/b; + } + } + struct Conj{ // Complex double inline vector4double operator()(vector4double v){ @@ -412,6 +427,7 @@ template using ReduceSIMD = Optimization::Reduce; // Arithmetic operations typedef Optimization::Sum SumSIMD; typedef Optimization::Sub SubSIMD; +typedef Optimization::Div DivSIMD; typedef Optimization::Mult MultSIMD; typedef Optimization::MultComplex MultComplexSIMD; typedef Optimization::Conj ConjSIMD;