1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 08:17:05 +01:00

guard prevents multiple A64FX build messages

This commit is contained in:
nmeyer-ur
2020-05-20 19:16:30 +02:00
parent 6b6bf537d3
commit 9e085bd04e
4 changed files with 37 additions and 6 deletions

View File

@ -39,16 +39,16 @@ Author: Nils Meyer <nils.meyer@ur.de> Regensburg University
// enable A64FX body
#define WILSONKERNELSASMBODYA64FX
#pragma message("Including A64FX Dslash: WilsonKernelsAsmBodyA64FX.h")
#pragma message("A64FX Dslash: WilsonKernelsAsmBodyA64FX.h")
///////////////////////////////////////////////////////////
// If we are A64FX specialise the single precision routine
///////////////////////////////////////////////////////////
#if defined(DSLASHINTRIN)
#pragma message ("including A64FX Dslash: intrin")
#pragma message ("A64FX Dslash: intrin")
#include <simd/Fujitsu_A64FX_intrin_single.h>
#else
#pragma message ("including A64FX Dslash: asm")
#pragma message ("A64FX Dslash: asm")
#include <simd/Fujitsu_A64FX_asm_single.h>
#endif