1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

Merge branch 'develop' into feature/hdcr

This commit is contained in:
Peter Boyle 2019-12-10 21:47:41 -05:00
commit bab0bf2e93

View File

@ -784,7 +784,6 @@ int main (int argc, char ** argv)
std::cout <<" OK ! "<<std::endl; std::cout <<" OK ! "<<std::endl;
// Double to Half // Double to Half
#ifdef USE_FP16
std::cout << GridLogMessage<< "Double to half" ; std::cout << GridLogMessage<< "Double to half" ;
precisionChange(&H[0],&D[0],Ndp); precisionChange(&H[0],&D[0],Ndp);
precisionChange(&DD[0],&H[0],Ndp); precisionChange(&DD[0],&H[0],Ndp);
@ -813,7 +812,7 @@ int main (int argc, char ** argv)
assert( tmp < 1.0e-3 ); assert( tmp < 1.0e-3 );
} }
std::cout <<" OK ! "<<std::endl; std::cout <<" OK ! "<<std::endl;
#endif
} }
Grid_finalize(); Grid_finalize();
} }