mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Better pragma use
This commit is contained in:
parent
764732944f
commit
a2928321b6
@ -185,7 +185,7 @@ PARALLEL_FOR_LOOP
|
|||||||
template<class sobj,class vobj> strong_inline
|
template<class sobj,class vobj> strong_inline
|
||||||
void axpy(Lattice<vobj> &ret,sobj a,const Lattice<vobj> &x,const Lattice<vobj> &y){
|
void axpy(Lattice<vobj> &ret,sobj a,const Lattice<vobj> &x,const Lattice<vobj> &y){
|
||||||
conformable(x,y);
|
conformable(x,y);
|
||||||
#pragma omp parallel for
|
PARALLEL_FOR_LOOP
|
||||||
for(int ss=0;ss<x._grid->oSites();ss++){
|
for(int ss=0;ss<x._grid->oSites();ss++){
|
||||||
#ifdef STREAMING_STORES
|
#ifdef STREAMING_STORES
|
||||||
vobj tmp = a*x._odata[ss]+y._odata[ss];
|
vobj tmp = a*x._odata[ss]+y._odata[ss];
|
||||||
@ -198,7 +198,7 @@ PARALLEL_FOR_LOOP
|
|||||||
template<class sobj,class vobj> strong_inline
|
template<class sobj,class vobj> strong_inline
|
||||||
void axpby(Lattice<vobj> &ret,sobj a,sobj b,const Lattice<vobj> &x,const Lattice<vobj> &y){
|
void axpby(Lattice<vobj> &ret,sobj a,sobj b,const Lattice<vobj> &x,const Lattice<vobj> &y){
|
||||||
conformable(x,y);
|
conformable(x,y);
|
||||||
#pragma omp parallel for
|
PARALLEL_FOR_LOOP
|
||||||
for(int ss=0;ss<x._grid->oSites();ss++){
|
for(int ss=0;ss<x._grid->oSites();ss++){
|
||||||
#ifdef STREAMING_STORES
|
#ifdef STREAMING_STORES
|
||||||
vobj tmp = a*x._odata[ss]+b*y._odata[ss];
|
vobj tmp = a*x._odata[ss]+b*y._odata[ss];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user