1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 15:55:37 +00:00
Grid/lib/lattice/Lattice_unary.h

77 lines
2.4 KiB
C
Raw Normal View History

2018-01-14 23:52:26 +00:00
/*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid
Source file: ./lib/lattice/Lattice_unary.h
Copyright (C) 2015
Author: Azusa Yamaguchi <ayamaguc@staffmail.ed.ac.uk>
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
Author: neo <cossu@post.kek.jp>
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
2018-01-14 23:52:26 +00:00
*************************************************************************************/
/* END LEGAL */
#ifndef GRID_LATTICE_UNARY_H
#define GRID_LATTICE_UNARY_H
2018-01-14 23:52:26 +00:00
NAMESPACE_BEGIN(Grid);
2018-01-14 23:52:26 +00:00
template<class obj> Lattice<obj> pow(const Lattice<obj> &rhs,RealD y){
2018-01-27 00:04:12 +00:00
Lattice<obj> ret(rhs.Grid());
2018-01-26 23:06:03 +00:00
ret.Checkerboard() = rhs.Checkerboard();
2018-01-14 23:52:26 +00:00
conformable(ret,rhs);
2018-01-24 13:41:12 +00:00
accelerator_loop(ss,rhs,{
2018-01-26 23:06:03 +00:00
ret[ss]=pow(rhs[ss],y);
2018-01-24 13:41:12 +00:00
});
2018-01-14 23:52:26 +00:00
return ret;
}
template<class obj> Lattice<obj> mod(const Lattice<obj> &rhs,Integer y){
2018-01-27 00:04:12 +00:00
Lattice<obj> ret(rhs.Grid());
2018-01-26 23:06:03 +00:00
ret.Checkerboard() = rhs.Checkerboard();
2018-01-14 23:52:26 +00:00
conformable(ret,rhs);
2018-01-24 13:41:12 +00:00
accelerator_loop(ss,rhs,{
2018-01-26 23:06:03 +00:00
ret[ss]=mod(rhs[ss],y);
2018-01-24 13:41:12 +00:00
});
2018-01-14 23:52:26 +00:00
return ret;
}
2018-01-14 23:52:26 +00:00
template<class obj> Lattice<obj> div(const Lattice<obj> &rhs,Integer y){
2018-01-27 00:04:12 +00:00
Lattice<obj> ret(rhs.Grid());
2018-01-26 23:06:03 +00:00
ret.Checkerboard() = rhs.Checkerboard();
2018-01-14 23:52:26 +00:00
conformable(ret,rhs);
2018-01-24 13:41:12 +00:00
accelerator_loop(ss,rhs,{
2018-01-26 23:06:03 +00:00
ret[ss]=div(rhs[ss],y);
2018-01-24 13:41:12 +00:00
});
2018-01-14 23:52:26 +00:00
return ret;
}
2015-11-29 00:54:43 +00:00
2018-01-14 23:52:26 +00:00
template<class obj> Lattice<obj> expMat(const Lattice<obj> &rhs, RealD alpha, Integer Nexp = DEFAULT_MAT_EXP){
2018-01-27 00:04:12 +00:00
Lattice<obj> ret(rhs.Grid());
2018-01-26 23:06:03 +00:00
ret.Checkerboard() = rhs.Checkerboard();
2018-01-14 23:52:26 +00:00
conformable(ret,rhs);
2018-01-24 13:41:12 +00:00
accelerator_loop(ss,rhs,{
2018-01-26 23:06:03 +00:00
ret[ss]=Exponentiate(rhs[ss],alpha, Nexp);
2018-01-24 13:41:12 +00:00
});
2018-01-14 23:52:26 +00:00
return ret;
}
2018-01-14 23:52:26 +00:00
NAMESPACE_END(Grid);
#endif