1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
Grid/lib/simd/Grid_neon.h

314 lines
7.5 KiB
C
Raw Normal View History

2015-06-09 07:46:21 +01:00
//----------------------------------------------------------------------
/*! @file Grid_sse4.h
2015-07-21 03:52:15 +01:00
@brief Optimization libraries for NEON (ARM) instructions set ARMv8
2015-06-09 07:46:21 +01:00
Experimental - Using intrinsics - DEVELOPING!
*/
2015-07-21 03:52:15 +01:00
// Time-stamp: <2015-07-10 17:45:09 neo>
2015-06-09 07:46:21 +01:00
//----------------------------------------------------------------------
#include <arm_neon.h>
2015-07-21 03:52:15 +01:00
// ARMv8 supports double precision
2015-06-09 07:46:21 +01:00
namespace Optimization {
template<class vtype>
union uconv {
float32x4_t f;
vtype v;
};
union u128f {
float32x4_t v;
float f[4];
};
union u128d {
2015-07-21 03:52:15 +01:00
float64x2_t v;
double f[4];
2015-06-09 07:46:21 +01:00
};
struct Vsplat{
//Complex float
inline float32x4_t operator()(float a, float b){
2015-07-21 03:52:15 +01:00
float tmp[4]={a,b,a,b};
return vld1q_f32(tmp);
2015-06-09 07:46:21 +01:00
}
// Real float
inline float32x4_t operator()(float a){
2015-07-21 03:52:15 +01:00
return vld1q_dup_f32(&a);
2015-06-09 07:46:21 +01:00
}
//Complex double
inline float32x4_t operator()(double a, double b){
2015-07-21 03:52:15 +01:00
float tmp[4]={(float)a,(float)b,(float)a,(float)b};
return vld1q_f32(tmp);
2015-06-09 07:46:21 +01:00
}
//Real double
inline float32x4_t operator()(double a){
2015-07-21 03:52:15 +01:00
return vld1q_dup_f32(&a);
2015-06-09 07:46:21 +01:00
}
//Integer
inline uint32x4_t operator()(Integer a){
2015-07-21 03:52:15 +01:00
return vld1q_dup_u32(&a);
2015-06-09 07:46:21 +01:00
}
};
struct Vstore{
//Float
inline void operator()(float32x4_t a, float* F){
2015-07-21 03:52:15 +01:00
vst1q_f32(F, a);
2015-06-09 07:46:21 +01:00
}
//Double
inline void operator()(float32x4_t a, double* D){
2015-07-21 03:52:15 +01:00
vst1q_f32((float*)D, a);
2015-06-09 07:46:21 +01:00
}
//Integer
inline void operator()(uint32x4_t a, Integer* I){
2015-07-21 03:52:15 +01:00
vst1q_u32(I, a);
2015-06-09 07:46:21 +01:00
}
};
struct Vstream{
//Float
inline void operator()(float * a, float32x4_t b){
}
//Double
inline void operator()(double * a, float32x4_t b){
}
};
struct Vset{
// Complex float
inline float32x4_t operator()(Grid::ComplexF *a){
float32x4_t foo;
return foo;
}
// Complex double
inline float32x4_t operator()(Grid::ComplexD *a){
float32x4_t foo;
return foo;
}
// Real float
inline float32x4_t operator()(float *a){
float32x4_t foo;
return foo;
}
// Real double
inline float32x4_t operator()(double *a){
float32x4_t foo;
return foo;
}
// Integer
inline uint32x4_t operator()(Integer *a){
uint32x4_t foo;
return foo;
}
};
template <typename Out_type, typename In_type>
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;
}
};
/////////////////////////////////////////////////////
// Arithmetic operations
/////////////////////////////////////////////////////
struct Sum{
//Complex/Real float
inline float32x4_t operator()(float32x4_t a, float32x4_t b){
2015-07-21 03:52:15 +01:00
return vaddq_f32(a,b);
2015-06-09 07:46:21 +01:00
}
//Complex/Real double
2015-07-21 03:52:15 +01:00
inline float64x2_t operator()(float64x2_t a, float64x2_t b){
return vaddq_f64(a,b);
}
2015-06-09 07:46:21 +01:00
//Integer
inline uint32x4_t operator()(uint32x4_t a, uint32x4_t b){
2015-07-21 03:52:15 +01:00
return vaddq_u32(a,b);
2015-06-09 07:46:21 +01:00
}
};
struct Sub{
//Complex/Real float
inline float32x4_t operator()(float32x4_t a, float32x4_t b){
2015-07-21 03:52:15 +01:00
return vsubq_f32(a,b);
2015-06-09 07:46:21 +01:00
}
//Complex/Real double
2015-07-21 03:52:15 +01:00
inline float64x2_t operator()(float64x2_t a, float64x2_t b){
return vsubq_f64(a,b);
}
2015-06-09 07:46:21 +01:00
//Integer
inline uint32x4_t operator()(uint32x4_t a, uint32x4_t b){
2015-07-21 03:52:15 +01:00
return vsubq_u32(a,b);
2015-06-09 07:46:21 +01:00
}
};
struct MultComplex{
// Complex float
inline float32x4_t operator()(float32x4_t a, float32x4_t b){
float32x4_t foo;
return foo;
}
// Complex double
2015-07-21 03:52:15 +01:00
inline float64x2_t operator()(float64x2_t a, float64x2_t b){
float32x4_t foo;
return foo;
}
2015-06-09 07:46:21 +01:00
};
struct Mult{
// Real float
inline float32x4_t mac(float32x4_t a, float32x4_t b, float32x4_t c){
return vaddq_f32(vmulq_f32(b,c),a);
}
inline float64x2_t mac(float64x2_t a, float64x2_t b, float64x2_t c){
return vaddq_f64(vmulq_f64(b,c),a);
}
2015-06-09 07:46:21 +01:00
inline float32x4_t operator()(float32x4_t a, float32x4_t b){
2015-07-21 03:52:15 +01:00
return vmulq_f32(a,b);
2015-06-09 07:46:21 +01:00
}
// Real double
2015-07-21 03:52:15 +01:00
inline float64x2_t operator()(float64x2_t a, float64x2_t b){
return vmulq_f64(a,b);
}
2015-06-09 07:46:21 +01:00
// Integer
inline uint32x4_t operator()(uint32x4_t a, uint32x4_t b){
2015-07-21 03:52:15 +01:00
return vmulq_u32(a,b);
2015-06-09 07:46:21 +01:00
}
};
struct Conj{
// Complex single
inline float32x4_t operator()(float32x4_t in){
return in;
}
// Complex double
//inline float32x4_t operator()(float32x4_t in){
// return 0;
//}
// do not define for integer input
};
struct TimesMinusI{
//Complex single
inline float32x4_t operator()(float32x4_t in, float32x4_t ret){
return in;
}
//Complex double
//inline float32x4_t operator()(float32x4_t in, float32x4_t ret){
// return in;
//}
};
struct TimesI{
//Complex single
inline float32x4_t operator()(float32x4_t in, float32x4_t ret){
2015-07-21 03:52:15 +01:00
//need shuffle
2015-06-09 07:46:21 +01:00
return in;
}
//Complex double
//inline float32x4_t operator()(float32x4_t in, float32x4_t ret){
// return 0;
//}
};
//////////////////////////////////////////////
// Some Template specialization
template < typename vtype >
void permute(vtype &a, vtype b, int perm) {
};
//Complex float Reduce
template<>
inline Grid::ComplexF Reduce<Grid::ComplexF, float32x4_t>::operator()(float32x4_t in){
return 0;
}
//Real float Reduce
template<>
inline Grid::RealF Reduce<Grid::RealF, float32x4_t>::operator()(float32x4_t in){
2015-07-21 03:52:15 +01:00
float32x2_t high = vget_high_f32(in);
float32x2_t low = vget_low_f32(in);
float32x2_t tmp = vadd_f32(low, high);
float32x2_t sum = vpadd_f32(tmp, tmp);
return vget_lane_f32(sum,0);
2015-06-09 07:46:21 +01:00
}
//Complex double Reduce
template<>
2015-07-21 03:52:15 +01:00
inline Grid::ComplexD Reduce<Grid::ComplexD, float64x2_t>::operator()(float64x2_t in){
2015-06-09 07:46:21 +01:00
return 0;
}
//Real double Reduce
template<>
2015-07-21 03:52:15 +01:00
inline Grid::RealD Reduce<Grid::RealD, float64x2_t>::operator()(float64x2_t in){
float64x2_t sum = vpaddq_f64(in, in);
return vgetq_lane_f64(sum,0);
2015-06-09 07:46:21 +01:00
}
//Integer Reduce
template<>
inline Integer Reduce<Integer, uint32x4_t>::operator()(uint32x4_t in){
// FIXME unimplemented
printf("Reduce : Missing integer implementation -> FIX\n");
assert(0);
}
}
//////////////////////////////////////////////////////////////////////////////////////
// Here assign types
namespace Grid {
typedef float32x4_t SIMD_Ftype; // Single precision type
2015-07-21 03:52:15 +01:00
typedef float64x2_t SIMD_Dtype; // Double precision type
2015-06-09 07:46:21 +01:00
typedef uint32x4_t SIMD_Itype; // Integer type
inline void v_prefetch0(int size, const char *ptr){}; // prefetch utilities
inline void prefetch_HINT_T0(const char *ptr){};
// Gpermute function
template < typename VectorSIMD >
inline void Gpermute(VectorSIMD &y,const VectorSIMD &b, int perm ) {
Optimization::permute(y.v,b.v,perm);
}
// 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;
typedef Optimization::MultComplex MultComplexSIMD;
typedef Optimization::Conj ConjSIMD;
typedef Optimization::TimesMinusI TimesMinusISIMD;
typedef Optimization::TimesI TimesISIMD;
}