diff --git a/CMakeLists.txt b/CMakeLists.txt index f35bb3de..6b381b3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -107,7 +107,7 @@ endif() # Setup version -set(VERSION_STRING "1.13.1") +set(VERSION_STRING "1.13.2") rocm_setup_version(VERSION ${VERSION_STRING}) set(rocalution_SOVERSION 0.1) diff --git a/clients/include/testing_bicgstabl.hpp b/clients/include/testing_bicgstabl.hpp index a8b43580..f8e7065f 100644 --- a/clients/include/testing_bicgstabl.hpp +++ b/clients/include/testing_bicgstabl.hpp @@ -33,7 +33,11 @@ using namespace rocalution; static bool check_residual(float res) { +#ifdef WIN32 + return (res < 1e-1f); +#else return (res < 1e-2f); +#endif } static bool check_residual(double res)