1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 04:37:05 +01:00

Make tests all compile ccurrent Grid, mostly MdagM removal of norms fixes but a few minor

issues fiixed too
This commit is contained in:
Peter Boyle
2020-05-12 17:57:24 -04:00
parent 0e3c49f687
commit 8b5b55b682
16 changed files with 55 additions and 64 deletions

View File

@ -28,13 +28,12 @@ See the full license in the file "LICENSE" in the top level distribution directo
#include <Grid/Grid.h>
#if defined(GRID_COMMS_NONE)
#error This test requires Grid compiled with MPI
#endif
using namespace Grid;
int main(int argc, char** argv) {
#if !defined(GRID_COMMS_NONE)
Grid_init(&argc, &argv);
auto simd_layout = GridDefaultSimd(Nd, vComplex::Nsimd());
@ -81,4 +80,5 @@ int main(int argc, char** argv) {
// clang-format on
Grid_finalize();
#endif
}