Skip to content

Commit

Permalink
raised tolerance for bicgstabl<float> (#70)
Browse files Browse the repository at this point in the history
* lowered tolerance for bicgstabl<float>

* bump version
  • Loading branch information
ntrost57 authored Sep 14, 2021
1 parent 643cbeb commit 8cf1151
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 4 additions & 0 deletions clients/include/testing_bicgstabl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8cf1151

Please sign in to comment.