1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-07 04:35:56 +01:00

GPU happy code

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

@ -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
*************************************************************************************/
/* END LEGAL */
#ifndef GRID_QCD_ZMOBIUS_FERMION_H
#define GRID_QCD_ZMOBIUS_FERMION_H
#pragma once
#include <Grid/qcd/action/fermion/FermionCore.h>
@ -48,7 +47,7 @@ public:
GridCartesian &FourDimGrid,
GridRedBlackCartesian &FourDimRedBlackGrid,
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,
FiveDimGrid,
@ -72,4 +71,3 @@ public:
NAMESPACE_END(Grid);
#endif