1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

GPU happy code

This commit is contained in:
Peter Boyle 2019-06-05 00:08:54 +01:00
parent 8a5489d9e6
commit 9636324069

View File

@ -26,8 +26,7 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
See the full license in the file "LICENSE" in the top level distribution directory See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/ *************************************************************************************/
/* END LEGAL */ /* END LEGAL */
#ifndef GRID_QCD_ZMOBIUS_FERMION_H #pragma once
#define GRID_QCD_ZMOBIUS_FERMION_H
#include <Grid/qcd/action/fermion/FermionCore.h> #include <Grid/qcd/action/fermion/FermionCore.h>
@ -48,7 +47,7 @@ public:
GridCartesian &FourDimGrid, GridCartesian &FourDimGrid,
GridRedBlackCartesian &FourDimRedBlackGrid, GridRedBlackCartesian &FourDimRedBlackGrid,
RealD _mass,RealD _M5, RealD _mass,RealD _M5,
Vector<ComplexD> &gamma, RealD b,RealD c,const ImplParams &p= ImplParams()) : std::vector<ComplexD> &gamma, RealD b,RealD c,const ImplParams &p= ImplParams()) :
CayleyFermion5D<Impl>(_Umu, CayleyFermion5D<Impl>(_Umu,
FiveDimGrid, FiveDimGrid,
@ -72,4 +71,3 @@ public:
NAMESPACE_END(Grid); NAMESPACE_END(Grid);
#endif