1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-21 01:25:48 +01:00
Grid/lib/qcd/action/fermion/WilsonKernelsAsm.cc

139 lines
5.0 KiB
C++
Raw Normal View History

2016-09-09 11:34:25 +01:00
/*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid
2016-06-03 11:24:26 +01:00
Source file: ./lib/qcd/action/fermion/WilsonKernelsAsm.cc
Copyright (C) 2015
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
Author: paboyle <paboyle@ph.ed.ac.uk>
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
2016-09-09 11:34:25 +01:00
*************************************************************************************/
/* END LEGAL */
2016-06-03 11:24:26 +01:00
#include <Grid.h>
2016-10-04 15:37:32 +01:00
namespace Grid {
namespace QCD {
2016-09-09 11:34:25 +01:00
///////////////////////////////////////////////////////////
// Default to no assembler implementation
///////////////////////////////////////////////////////////
template<class Impl> void
WilsonKernels<Impl >::DiracOptAsmDhopSite(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U,SiteHalfSpinor *buf,
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out)
{
assert(0);
}
2016-10-04 15:37:32 +01:00
template<class Impl> void
WilsonKernels<Impl >::DiracOptAsmDhopSiteDag(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U,SiteHalfSpinor *buf,
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out)
{
assert(0);
}
2016-10-04 15:37:32 +01:00
2016-06-03 11:24:26 +01:00
#if defined(AVX512)
2016-09-09 11:34:25 +01:00
///////////////////////////////////////////////////////////
// If we are AVX512 specialise the single precision routine
///////////////////////////////////////////////////////////
2016-06-03 11:24:26 +01:00
#include <simd/Intel512wilson.h>
#include <simd/Intel512single.h>
2016-09-09 11:34:25 +01:00
static Vector<vComplexF> signs;
2016-09-09 11:34:25 +01:00
int setupSigns(void ){
Vector<vComplexF> bother(2);
signs = bother;
vrsign(signs[0]);
visign(signs[1]);
return 1;
}
static int signInit = setupSigns();
2016-09-09 11:34:25 +01:00
2016-06-25 19:08:05 +01:00
#define label(A) ilabel(A)
#define ilabel(A) ".globl\n" #A ":\n"
2016-09-09 11:34:25 +01:00
2016-06-03 11:24:26 +01:00
#define MAYBEPERM(A,perm) if (perm) { A ; }
#define MULT_2SPIN(ptr,pf) MULT_ADDSUB_2SPIN(ptr,pf)
2016-06-25 19:08:05 +01:00
#define FX(A) WILSONASM_ ##A
2016-09-09 11:34:25 +01:00
2016-08-15 22:31:29 +01:00
#undef KERNEL_DAG
template<> void
WilsonKernels<WilsonImplF>::DiracOptAsmDhopSite(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U, SiteHalfSpinor *buf,
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out)
2016-06-03 11:24:26 +01:00
#include <qcd/action/fermion/WilsonKernelsAsmBody.h>
2016-09-09 11:34:25 +01:00
2016-08-15 22:31:29 +01:00
#define KERNEL_DAG
template<> void
WilsonKernels<WilsonImplF>::DiracOptAsmDhopSiteDag(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U,SiteHalfSpinor *buf,
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out)
2016-08-15 22:31:29 +01:00
#include <qcd/action/fermion/WilsonKernelsAsmBody.h>
2016-09-09 11:34:25 +01:00
2016-06-03 11:24:26 +01:00
#undef VMOVIDUP
#undef VMOVRDUP
#undef MAYBEPERM
#undef MULT_2SPIN
2016-06-25 19:08:05 +01:00
#undef FX
#define FX(A) DWFASM_ ## A
2016-06-03 11:24:26 +01:00
#define MAYBEPERM(A,B)
#define VMOVIDUP(A,B,C) VBCASTIDUPf(A,B,C)
#define VMOVRDUP(A,B,C) VBCASTRDUPf(A,B,C)
#define MULT_2SPIN(ptr,pf) MULT_ADDSUB_2SPIN_LS(ptr,pf)
2016-09-09 11:34:25 +01:00
2016-08-15 22:31:29 +01:00
#undef KERNEL_DAG
template<> void
WilsonKernels<DomainWallVec5dImplF>::DiracOptAsmDhopSite(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U, SiteHalfSpinor *buf,
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out)
2016-06-03 11:24:26 +01:00
#include <qcd/action/fermion/WilsonKernelsAsmBody.h>
2016-09-09 11:34:25 +01:00
2016-08-15 22:31:29 +01:00
#define KERNEL_DAG
template<> void
WilsonKernels<DomainWallVec5dImplF>::DiracOptAsmDhopSiteDag(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U,SiteHalfSpinor *buf,
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out)
2016-08-15 22:31:29 +01:00
#include <qcd/action/fermion/WilsonKernelsAsmBody.h>
2016-09-09 11:34:25 +01:00
2016-06-03 11:24:26 +01:00
#endif
2016-10-04 15:37:32 +01:00
#define INSTANTIATE_ASM(A)\
template void WilsonKernels<A>::DiracOptAsmDhopSite(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U, SiteHalfSpinor *buf,\
2016-10-04 15:37:32 +01:00
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out);\
\
template void WilsonKernels<A>::DiracOptAsmDhopSiteDag(StencilImpl &st,LebesgueOrder & lo,DoubledGaugeField &U, SiteHalfSpinor *buf,\
2016-10-04 15:37:32 +01:00
int ss,int ssU,int Ls,int Ns,const FermionField &in, FermionField &out);\
INSTANTIATE_ASM(WilsonImplF);
INSTANTIATE_ASM(WilsonImplD);
INSTANTIATE_ASM(ZWilsonImplF);
INSTANTIATE_ASM(ZWilsonImplD);
INSTANTIATE_ASM(GparityWilsonImplF);
INSTANTIATE_ASM(GparityWilsonImplD);
INSTANTIATE_ASM(DomainWallVec5dImplF);
INSTANTIATE_ASM(DomainWallVec5dImplD);
INSTANTIATE_ASM(ZDomainWallVec5dImplF);
INSTANTIATE_ASM(ZDomainWallVec5dImplD);
}}
2016-06-03 11:24:26 +01:00