2016-08-23 14:41:44 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/simd/Grid_qpx.h
|
|
|
|
|
|
|
|
Copyright (C) 2016
|
2017-02-22 12:01:36 +00:00
|
|
|
Copyright (C) 2017
|
2016-08-23 14:41:44 +01:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
2017-02-22 12:01:36 +00:00
|
|
|
Andrew Lawson <andrew.lawson1991@gmail.com>
|
2016-08-23 14:41:44 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
2018-01-12 18:25:39 +00:00
|
|
|
******************************************************************************/
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2017-02-22 12:01:36 +00:00
|
|
|
#ifndef GEN_SIMD_WIDTH
|
2017-02-23 16:47:56 +00:00
|
|
|
#define GEN_SIMD_WIDTH 32u
|
2017-02-22 12:01:36 +00:00
|
|
|
#endif
|
|
|
|
#include "Grid_generic_types.h" // Definitions for simulated integer SIMD.
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
NAMESPACE_BEGIN(Grid);
|
2017-04-22 11:33:50 +01:00
|
|
|
|
|
|
|
#ifdef QPX
|
|
|
|
#include <spi/include/kernel/location.h>
|
|
|
|
#include <spi/include/l1p/types.h>
|
|
|
|
#include <hwi/include/bqc/l1p_mmio.h>
|
|
|
|
#include <hwi/include/bqc/A2_inlines.h>
|
|
|
|
#endif
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
NAMESPACE_BEGIN(Optimization);
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float v0,v1,v2,v3;
|
|
|
|
} vector4float;
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
inline std::ostream & operator<<(std::ostream& stream, const vector4double a)
|
|
|
|
{
|
|
|
|
stream << "{"<<vec_extract(a,0)<<","<<vec_extract(a,1)<<","<<vec_extract(a,2)<<","<<vec_extract(a,3)<<"}";
|
|
|
|
return stream;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline std::ostream & operator<<(std::ostream& stream, const vector4float a)
|
|
|
|
{
|
|
|
|
stream << "{"<< a.v0 <<","<< a.v1 <<","<< a.v2 <<","<< a.v3 <<"}";
|
|
|
|
return stream;
|
|
|
|
};
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Vsplat{
|
|
|
|
//Complex float
|
|
|
|
inline vector4float operator()(float a, float b){
|
|
|
|
return (vector4float){a, b, a, b};
|
|
|
|
}
|
|
|
|
// Real float
|
|
|
|
inline vector4float operator()(float a){
|
|
|
|
return (vector4float){a, a, a, a};
|
|
|
|
}
|
|
|
|
//Complex double
|
|
|
|
inline vector4double operator()(double a, double b){
|
|
|
|
return (vector4double){a, b, a, b};
|
|
|
|
}
|
|
|
|
//Real double
|
|
|
|
inline vector4double operator()(double a){
|
|
|
|
return (vector4double){a, a, a, a};
|
|
|
|
}
|
|
|
|
//Integer
|
|
|
|
inline veci operator()(Integer a){
|
|
|
|
veci out;
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
VECTOR_FOR(i, W<Integer>::r, 1)
|
2017-02-22 12:01:36 +00:00
|
|
|
{
|
|
|
|
out.v[i] = a;
|
|
|
|
}
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Vstore{
|
|
|
|
//Float
|
|
|
|
inline void operator()(vector4double a, float *f){
|
|
|
|
vec_st(a, 0, f);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
inline void operator()(vector4double a, vector4float &f){
|
|
|
|
vec_st(a, 0, (float *)(&f));
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
inline void operator()(vector4float a, float *f){
|
|
|
|
f[0] = a.v0;
|
|
|
|
f[1] = a.v1;
|
|
|
|
f[2] = a.v2;
|
|
|
|
f[3] = a.v3;
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Double
|
|
|
|
inline void operator()(vector4double a, double *d){
|
|
|
|
vec_st(a, 0, d);
|
|
|
|
}
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Integer
|
|
|
|
inline void operator()(veci a, Integer *i){
|
|
|
|
*((veci *)i) = a;
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Vstream{
|
|
|
|
//Float
|
|
|
|
inline void operator()(float *f, vector4double a){
|
|
|
|
vec_st(a, 0, f);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
inline void operator()(vector4float f, vector4double a){
|
|
|
|
vec_st(a, 0, (float *)(&f));
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
inline void operator()(float *f, vector4float a){
|
|
|
|
f[0] = a.v0;
|
|
|
|
f[1] = a.v1;
|
|
|
|
f[2] = a.v2;
|
|
|
|
f[3] = a.v3;
|
|
|
|
}
|
|
|
|
//Double
|
|
|
|
inline void operator()(double *d, vector4double a){
|
|
|
|
vec_st(a, 0, d);
|
|
|
|
}
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Vset{
|
|
|
|
// Complex float
|
|
|
|
inline vector4float operator()(Grid::ComplexF *a){
|
|
|
|
return (vector4float){a[0].real(), a[0].imag(), a[1].real(), a[1].imag()};
|
|
|
|
}
|
|
|
|
// Complex double
|
|
|
|
inline vector4double operator()(Grid::ComplexD *a){
|
|
|
|
return vec_ld(0, (double *)a);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Real float
|
|
|
|
inline vector4float operator()(float *a){
|
|
|
|
return (vector4float){a[0], a[1], a[2], a[3]};
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
inline vector4double operator()(vector4float a){
|
|
|
|
return vec_ld(0, (float *)(&a));
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Real double
|
|
|
|
inline vector4double operator()(double *a){
|
|
|
|
return vec_ld(0, a);
|
|
|
|
}
|
|
|
|
// Integer
|
|
|
|
inline veci operator()(Integer *a){
|
|
|
|
veci out;
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
out = *((veci *)a);
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
template <typename Out_type, typename In_type>
|
2018-01-12 23:18:22 +00:00
|
|
|
struct Reduce{
|
|
|
|
//Need templated class to overload output type
|
|
|
|
//General form must generate error if compiled
|
|
|
|
inline Out_type operator()(In_type in){
|
|
|
|
printf("Error, using wrong Reduce function\n");
|
|
|
|
exit(1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
// Arithmetic operations
|
|
|
|
/////////////////////////////////////////////////////
|
2016-12-22 17:50:48 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
#define FLOAT_WRAP_3(fn, pref) \
|
2016-12-22 17:50:48 +00:00
|
|
|
pref vector4float fn(vector4float a, vector4float b, vector4float c) \
|
2018-01-12 18:25:39 +00:00
|
|
|
{ \
|
|
|
|
vector4double ad, bd, rd, cd; \
|
|
|
|
vector4float r; \
|
|
|
|
\
|
|
|
|
ad = Vset()(a); \
|
|
|
|
bd = Vset()(b); \
|
|
|
|
cd = Vset()(c); \
|
|
|
|
rd = fn(ad, bd, cd); \
|
|
|
|
Vstore()(rd, r); \
|
|
|
|
\
|
|
|
|
return r; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define FLOAT_WRAP_2(fn, pref) \
|
|
|
|
pref vector4float fn(vector4float a, vector4float b) \
|
|
|
|
{ \
|
|
|
|
vector4double ad, bd, rd; \
|
|
|
|
vector4float r; \
|
|
|
|
\
|
|
|
|
ad = Vset()(a); \
|
|
|
|
bd = Vset()(b); \
|
|
|
|
rd = fn(ad, bd); \
|
|
|
|
Vstore()(rd, r); \
|
|
|
|
\
|
|
|
|
return r; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define FLOAT_WRAP_1(fn, pref) \
|
|
|
|
pref vector4float fn(vector4float a) \
|
|
|
|
{ \
|
|
|
|
vector4double ad, rd; \
|
|
|
|
vector4float r; \
|
|
|
|
\
|
|
|
|
ad = Vset()(a); \
|
|
|
|
rd = fn(ad); \
|
|
|
|
Vstore()(rd, r); \
|
|
|
|
\
|
|
|
|
return r; \
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Sum{
|
|
|
|
//Complex/Real double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b){
|
|
|
|
return vec_add(a, b);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Complex/Real float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Integer
|
|
|
|
inline veci operator()(veci a, veci b){
|
|
|
|
veci out;
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
VECTOR_FOR(i, W<Integer>::r, 1)
|
2017-02-22 12:01:36 +00:00
|
|
|
{
|
|
|
|
out.v[i] = a.v[i] + b.v[i];
|
|
|
|
}
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Sub{
|
|
|
|
//Complex/Real double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b){
|
|
|
|
return vec_sub(a, b);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Complex/Real float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Integer
|
|
|
|
inline veci operator()(veci a, veci b){
|
|
|
|
veci out;
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
VECTOR_FOR(i, W<Integer>::r, 1)
|
2017-02-22 12:01:36 +00:00
|
|
|
{
|
|
|
|
out.v[i] = a.v[i] - b.v[i];
|
|
|
|
}
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct MultRealPart{
|
|
|
|
// Complex double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b){
|
|
|
|
// return vec_xmul(b, a);
|
|
|
|
return vec_xmul(a, b);
|
|
|
|
}
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
|
|
|
};
|
|
|
|
struct MaddRealPart{
|
|
|
|
// Complex double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b,vector4double c){
|
|
|
|
return vec_xmadd(a, b, c);
|
|
|
|
}
|
|
|
|
FLOAT_WRAP_3(operator(), inline)
|
|
|
|
};
|
|
|
|
struct MultComplex{
|
|
|
|
// Complex double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b){
|
|
|
|
return vec_xxnpmadd(a, b, vec_xmul(b, a));
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Complex float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Mult{
|
|
|
|
// Real double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b){
|
|
|
|
return vec_mul(a, b);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Real float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Integer
|
|
|
|
inline veci operator()(veci a, veci b){
|
|
|
|
veci out;
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
VECTOR_FOR(i, W<Integer>::r, 1)
|
2017-02-22 12:01:36 +00:00
|
|
|
{
|
|
|
|
out.v[i] = a.v[i]*b.v[i];
|
|
|
|
}
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
2016-11-25 13:21:33 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Div{
|
|
|
|
// Real double
|
|
|
|
inline vector4double operator()(vector4double a, vector4double b){
|
|
|
|
return vec_swdiv(a, b);
|
|
|
|
}
|
2016-11-25 13:21:33 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Real float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
2016-11-25 13:21:33 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Integer
|
|
|
|
inline veci operator()(veci a, veci b){
|
|
|
|
veci out;
|
2017-02-22 12:01:36 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
VECTOR_FOR(i, W<Integer>::r, 1)
|
2017-02-22 12:01:36 +00:00
|
|
|
{
|
|
|
|
out.v[i] = a.v[i]/b.v[i];
|
|
|
|
}
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
2016-11-25 13:21:33 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Conj{
|
|
|
|
// Complex double
|
|
|
|
inline vector4double operator()(vector4double v){
|
|
|
|
return vec_mul(v, (vector4double){1., -1., 1., -1.});
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Complex float
|
|
|
|
FLOAT_WRAP_1(operator(), inline)
|
|
|
|
};
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct TimesMinusI{
|
|
|
|
//Complex double
|
|
|
|
inline vector4double operator()(vector4double v, vector4double ret){
|
|
|
|
return vec_xxcpnmadd(v, (vector4double){1., 1., 1., 1.},
|
|
|
|
(vector4double){0., 0., 0., 0.});
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Complex float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
|
|
|
};
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct TimesI{
|
|
|
|
//Complex double
|
|
|
|
inline vector4double operator()(vector4double v, vector4double ret){
|
|
|
|
return vec_xxcpnmadd(v, (vector4double){-1., -1., -1., -1.},
|
|
|
|
(vector4double){0., 0., 0., 0.});
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// Complex float
|
|
|
|
FLOAT_WRAP_2(operator(), inline)
|
|
|
|
};
|
2017-06-16 15:04:26 +01:00
|
|
|
#define USE_FP16
|
2018-01-12 18:25:39 +00:00
|
|
|
struct PrecisionChange {
|
|
|
|
static inline vech StoH (const vector4float &a, const vector4float &b) {
|
|
|
|
vech ret;
|
|
|
|
std::cout << GridLogError << "QPX single to half precision conversion not yet supported." << std::endl;
|
|
|
|
assert(0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static inline void HtoS (vech h, vector4float &sa, vector4float &sb) {
|
|
|
|
std::cout << GridLogError << "QPX half to single precision conversion not yet supported." << std::endl;
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
static inline vector4float DtoS (vector4double a, vector4double b) {
|
|
|
|
vector4float ret;
|
|
|
|
std::cout << GridLogError << "QPX double to single precision conversion not yet supported." << std::endl;
|
|
|
|
assert(0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static inline void StoD (vector4float s, vector4double &a, vector4double &b) {
|
|
|
|
std::cout << GridLogError << "QPX single to double precision conversion not yet supported." << std::endl;
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
static inline vech DtoH (vector4double a, vector4double b,
|
|
|
|
vector4double c, vector4double d) {
|
|
|
|
vech ret;
|
|
|
|
std::cout << GridLogError << "QPX double to half precision conversion not yet supported." << std::endl;
|
|
|
|
assert(0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static inline void HtoD (vech h, vector4double &a, vector4double &b,
|
|
|
|
vector4double &c, vector4double &d) {
|
|
|
|
std::cout << GridLogError << "QPX half to double precision conversion not yet supported." << std::endl;
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
};
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//////////////////////////////////////////////
|
|
|
|
// Exchange support
|
|
|
|
#define FLOAT_WRAP_EXCHANGE(fn) \
|
2017-06-14 10:53:39 +01:00
|
|
|
static inline void fn(vector4float &out1, vector4float &out2, \
|
2018-01-12 18:25:39 +00:00
|
|
|
vector4float in1, vector4float in2) \
|
|
|
|
{ \
|
|
|
|
vector4double out1d, out2d, in1d, in2d; \
|
|
|
|
in1d = Vset()(in1); \
|
|
|
|
in2d = Vset()(in2); \
|
|
|
|
fn(out1d, out2d, in1d, in2d); \
|
|
|
|
Vstore()(out1d, out1); \
|
|
|
|
Vstore()(out2d, out2); \
|
|
|
|
}
|
2017-06-14 10:53:39 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Exchange{
|
2017-06-14 10:53:39 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// double precision
|
|
|
|
static inline void Exchange0(vector4double &out1, vector4double &out2,
|
|
|
|
vector4double in1, vector4double in2) {
|
|
|
|
out1 = vec_perm(in1, in2, vec_gpci(0145));
|
|
|
|
out2 = vec_perm(in1, in2, vec_gpci(02367));
|
|
|
|
}
|
|
|
|
static inline void Exchange1(vector4double &out1, vector4double &out2,
|
|
|
|
vector4double in1, vector4double in2) {
|
|
|
|
out1 = vec_perm(in1, in2, vec_gpci(0426));
|
|
|
|
out2 = vec_perm(in1, in2, vec_gpci(01537));
|
|
|
|
}
|
|
|
|
static inline void Exchange2(vector4double &out1, vector4double &out2,
|
|
|
|
vector4double in1, vector4double in2) {
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
static inline void Exchange3(vector4double &out1, vector4double &out2,
|
|
|
|
vector4double in1, vector4double in2) {
|
|
|
|
assert(0);
|
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
// single precision
|
|
|
|
FLOAT_WRAP_EXCHANGE(Exchange0);
|
|
|
|
FLOAT_WRAP_EXCHANGE(Exchange1);
|
|
|
|
FLOAT_WRAP_EXCHANGE(Exchange2);
|
|
|
|
FLOAT_WRAP_EXCHANGE(Exchange3);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Permute{
|
|
|
|
//Complex double
|
|
|
|
static inline vector4double Permute0(vector4double v){ //0123 -> 2301
|
|
|
|
return vec_perm(v, v, vec_gpci(02301));
|
2016-08-23 14:41:44 +01:00
|
|
|
};
|
2018-01-12 18:25:39 +00:00
|
|
|
static inline vector4double Permute1(vector4double v){ //0123 -> 1032
|
|
|
|
return vec_perm(v, v, vec_gpci(01032));
|
|
|
|
};
|
|
|
|
static inline vector4double Permute2(vector4double v){
|
|
|
|
return v;
|
|
|
|
};
|
|
|
|
static inline vector4double Permute3(vector4double v){
|
|
|
|
return v;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Complex float
|
|
|
|
FLOAT_WRAP_1(Permute0, static inline)
|
|
|
|
FLOAT_WRAP_1(Permute1, static inline)
|
|
|
|
FLOAT_WRAP_1(Permute2, static inline)
|
|
|
|
FLOAT_WRAP_1(Permute3, static inline)
|
|
|
|
};
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
struct Rotate{
|
2016-12-22 17:50:48 +00:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
template<int n> static inline vector4double tRotate(vector4double v){
|
|
|
|
if ( n==1 ) return vec_perm(v, v, vec_gpci(01230));
|
|
|
|
if ( n==2 ) return vec_perm(v, v, vec_gpci(02301));
|
|
|
|
if ( n==3 ) return vec_perm(v, v, vec_gpci(03012));
|
|
|
|
return v;
|
|
|
|
};
|
|
|
|
template<int n> static inline vector4float tRotate(vector4float a)
|
|
|
|
{
|
|
|
|
vector4double ad, rd;
|
|
|
|
vector4float r;
|
|
|
|
ad = Vset()(a);
|
|
|
|
rd = tRotate<n>(ad);
|
|
|
|
Vstore()(rd, r);
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline vector4double rotate(vector4double v, int n){
|
|
|
|
switch(n){
|
|
|
|
case 0:
|
2016-12-22 17:50:48 +00:00
|
|
|
return v;
|
2018-01-12 18:25:39 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
return tRotate<1>(v);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
return tRotate<2>(v);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
return tRotate<3>(v);
|
|
|
|
break;
|
|
|
|
default: assert(0);
|
2016-08-23 14:41:44 +01:00
|
|
|
}
|
2018-01-12 18:25:39 +00:00
|
|
|
}
|
2016-09-19 18:09:12 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
static inline vector4float rotate(vector4float v, int n){
|
|
|
|
vector4double vd, rd;
|
|
|
|
vector4float r;
|
|
|
|
vd = Vset()(v);
|
|
|
|
rd = rotate(vd, n);
|
|
|
|
Vstore()(rd, r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
};
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Complex float Reduce
|
|
|
|
template<>
|
|
|
|
inline Grid::ComplexF
|
|
|
|
Reduce<Grid::ComplexF, vector4float>::operator()(vector4float v) { //2 complex
|
|
|
|
vector4float v1,v2;
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
v1 = Optimization::Permute::Permute0(v);
|
|
|
|
v1 = Optimization::Sum()(v1, v);
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return Grid::ComplexF(v1.v0, v1.v1);
|
|
|
|
}
|
|
|
|
//Real float Reduce
|
|
|
|
template<>
|
|
|
|
inline Grid::RealF
|
|
|
|
Reduce<Grid::RealF, vector4float>::operator()(vector4float v){ //4 floats
|
|
|
|
vector4float v1,v2;
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
v1 = Optimization::Permute::Permute0(v);
|
|
|
|
v1 = Optimization::Sum()(v1, v);
|
|
|
|
v2 = Optimization::Permute::Permute1(v1);
|
|
|
|
v1 = Optimization::Sum()(v1, v2);
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return v1.v0;
|
|
|
|
}
|
2015-05-22 09:33:15 +01:00
|
|
|
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Complex double Reduce
|
|
|
|
template<>
|
|
|
|
inline Grid::ComplexD
|
|
|
|
Reduce<Grid::ComplexD, vector4double>::operator()(vector4double v){ //2 complex
|
|
|
|
vector4double v1;
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
v1 = Optimization::Permute::Permute0(v);
|
|
|
|
v1 = vec_add(v1, v);
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return Grid::ComplexD(vec_extract(v1, 0), vec_extract(v1, 1));
|
|
|
|
}
|
2015-05-22 09:33:15 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Real double Reduce
|
|
|
|
template<>
|
|
|
|
inline Grid::RealD
|
|
|
|
Reduce<Grid::RealD, vector4double>::operator()(vector4double v){ //4 doubles
|
|
|
|
vector4double v1,v2;
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
v1 = Optimization::Permute::Permute0(v);
|
|
|
|
v1 = vec_add(v1, v);
|
|
|
|
v2 = Optimization::Permute::Permute1(v1);
|
|
|
|
v1 = vec_add(v1, v2);
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
return vec_extract(v1, 0);
|
|
|
|
}
|
2016-08-23 14:41:44 +01:00
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
//Integer Reduce
|
|
|
|
template<>
|
|
|
|
inline Integer Reduce<Integer, veci>::operator()(veci in){
|
|
|
|
Integer a = 0;
|
|
|
|
for (unsigned int i = 0; i < W<Integer>::r; ++i)
|
2017-06-14 10:55:10 +01:00
|
|
|
{
|
2018-01-12 18:25:39 +00:00
|
|
|
a += in.v[i];
|
2017-06-14 10:55:10 +01:00
|
|
|
}
|
2018-01-12 18:25:39 +00:00
|
|
|
return a;
|
2015-05-22 09:33:15 +01:00
|
|
|
}
|
|
|
|
|
2018-01-12 18:25:39 +00:00
|
|
|
NAMESPACE_END(Optimization);
|
|
|
|
|
2016-08-23 14:41:44 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Here assign types
|
2017-06-16 15:04:26 +01:00
|
|
|
typedef Optimization::vech SIMD_Htype; // Half precision type
|
2016-09-19 18:09:12 +01:00
|
|
|
typedef Optimization::vector4float SIMD_Ftype; // Single precision type
|
|
|
|
typedef vector4double SIMD_Dtype; // Double precision type
|
2017-02-22 12:01:36 +00:00
|
|
|
typedef Optimization::veci SIMD_Itype; // Integer type
|
2016-08-23 14:41:44 +01:00
|
|
|
|
|
|
|
// prefetch utilities
|
|
|
|
inline void v_prefetch0(int size, const char *ptr){};
|
|
|
|
inline void prefetch_HINT_T0(const char *ptr){};
|
|
|
|
|
|
|
|
// Function name aliases
|
|
|
|
typedef Optimization::Vsplat VsplatSIMD;
|
|
|
|
typedef Optimization::Vstore VstoreSIMD;
|
|
|
|
typedef Optimization::Vset VsetSIMD;
|
|
|
|
typedef Optimization::Vstream VstreamSIMD;
|
|
|
|
template <typename S, typename T> using ReduceSIMD = Optimization::Reduce<S,T>;
|
|
|
|
|
|
|
|
// Arithmetic operations
|
|
|
|
typedef Optimization::Sum SumSIMD;
|
|
|
|
typedef Optimization::Sub SubSIMD;
|
|
|
|
typedef Optimization::Mult MultSIMD;
|
2016-11-25 13:21:33 +00:00
|
|
|
typedef Optimization::Div DivSIMD;
|
2016-08-23 14:41:44 +01:00
|
|
|
typedef Optimization::MultComplex MultComplexSIMD;
|
2016-12-08 16:43:28 +00:00
|
|
|
typedef Optimization::MultRealPart MultRealPartSIMD;
|
2016-12-22 17:50:48 +00:00
|
|
|
typedef Optimization::MaddRealPart MaddRealPartSIMD;
|
2016-08-23 14:41:44 +01:00
|
|
|
typedef Optimization::Conj ConjSIMD;
|
|
|
|
typedef Optimization::TimesMinusI TimesMinusISIMD;
|
|
|
|
typedef Optimization::TimesI TimesISIMD;
|
2018-01-12 18:25:39 +00:00
|
|
|
|
|
|
|
NAMESPACE_END(Grid)
|