mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
a32ac287bb
Useful to compare; raises Intel compiler from 9GFlop/s to 17.5 Gflops. on ivybridge core. Raises Clang form 14.5 to 17.5
14 lines
309 B
C++
14 lines
309 B
C++
#ifndef GRID_LATTICE_CONFORMABLE_H
|
|
#define GRID_LATTICE_CONFORMABLE_H
|
|
|
|
namespace Grid {
|
|
|
|
template<class obj1,class obj2> void conformable(const Lattice<obj1> &lhs,const Lattice<obj2> &rhs)
|
|
{
|
|
assert(lhs._grid == rhs._grid);
|
|
assert(lhs.checkerboard == rhs.checkerboard);
|
|
}
|
|
|
|
}
|
|
#endif
|