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

Build a simple kernel to compare intel compiler and clang in simple environment

This commit is contained in:
Peter Boyle 2015-05-19 21:29:40 +01:00
parent efc0d1e0b9
commit 91ed085ca4

View File

@ -0,0 +1,10 @@
#include <Grid.h>
using namespace std;
using namespace Grid;
using namespace Grid::QCD;
void su3_test_mult(LatticeColourMatrix &z, LatticeColourMatrix &x,LatticeColourMatrix &y)
{
z=x*y;
}