1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

include versions.h again and add back asserts in Test_simd

This commit is contained in:
Christoph Lehner 2020-07-29 10:18:05 -04:00
parent 2004611def
commit 3e64d78469
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
#include <iostream>
//#include "Version.h"
#include "Version.h"
namespace Grid {
void printHash(){
#ifdef GITHASH

View File

@ -175,7 +175,7 @@ void Tester(const functor &func)
} else {
std::cout<<GridLogMessage << " wrong!" <<std::endl;
}
//assert(ok==0);
assert(ok==0);
}
template<class functor>
@ -234,7 +234,7 @@ void IntTester(const functor &func)
} else {
std::cout<<GridLogMessage << " wrong!" <<std::endl;
}
//assert(ok==0);
assert(ok==0);
}
@ -285,7 +285,7 @@ void ReductionTester(const functor &func)
} else {
std::cout<<GridLogMessage << " wrong!" <<std::endl;
}
//assert(ok==0);
assert(ok==0);
}
@ -332,7 +332,7 @@ void IntReductionTester(const functor &func)
} else {
std::cout<<GridLogMessage << " wrong!" <<std::endl;
}
//assert(ok==0);
assert(ok==0);
}
@ -456,7 +456,7 @@ void PermTester(const functor &func)
} else {
std::cout<<GridLogMessage << " wrong!" <<std::endl;
}
//assert(ok==0);
assert(ok==0);
}