Lines Matching refs:atol
120 * atol:
125 float atol = 1e-08, bool isquant = false) {
146 sum = sum + fabs(a[i] - b[i]) / (atol + rtol * fabs(b[i]));
147 sum_all = sum_all + fabs(a[i] - b[i]) / (atol + rtol * fabs(b[i]));
148 maximum = std::max(maximum, fabs(a[i] - b[i]) / (atol + rtol * fabs(b[i])));
149 minimum = std::min(minimum, fabs(a[i] - b[i]) / (atol + rtol * fabs(b[i])));
156 } else if (fabs(a[i] - b[i]) > (atol + rtol * fabs(b[i]))) {
201 printf("\n *** These data compare failed: atol = %f, rtol = %f\n", atol,
215 float atol = 1e-08, bool isquant = false) {
236 sum = sum + fabs(a[i] - b[i]) / (atol + rtol * fabs(b[i]));
237 sum_all = sum_all + fabs(a[i] - b[i]) / (atol + rtol * fabs(b[i]));
239 static_cast<double>(fabs(a[i] - b[i])) / (atol + rtol * fabs(b[i])));
241 static_cast<double>(fabs(a[i] - b[i])) / (atol + rtol * fabs(b[i])));
292 printf("\n *** These data compare failed: atol = %f, rtol = %f\n", atol,
311 * atol:
316 float rtol = 1e-05, float atol = 1e-08,
333 bool ret = allclose(actualOutputData, expectedOutputData, data_size, rtol, atol,
338 bool ret = allclose(actualOutputData, expectedOutputData, data_size, rtol, atol);
344 float rtol = 1e-05, float atol = 1e-08,
366 atol, true);
371 atol);