Rename check_err() parameter

This commit is contained in:
Po Yen Chen
2024-04-09 14:02:13 +00:00
parent b71b9d2159
commit 93f608123d
2 changed files with 12 additions and 12 deletions

View File

@@ -117,15 +117,15 @@ auto get_elimit<ck_tile::fp8_t>(int init_method)
{
if(init_method == 0)
{
unsigned rounding_error = 0;
double atol = 2e-3;
return ck_tile::make_tuple(rounding_error, atol);
unsigned max_rounding_error_distance = 0;
double atol = 2e-3;
return ck_tile::make_tuple(max_rounding_error_distance, atol);
}
else
{
unsigned rounding_error = 1;
double atol = 0.0625;
return ck_tile::make_tuple(rounding_error, atol);
unsigned max_rounding_error_distance = 1;
double atol = 0.0625;
return ck_tile::make_tuple(max_rounding_error_distance, atol);
}
}