diff --git a/test_conformance/math_brute_force/unary_float.cpp b/test_conformance/math_brute_force/unary_float.cpp index 9666d5ea4..cd93d3c97 100644 --- a/test_conformance/math_brute_force/unary_float.cpp +++ b/test_conformance/math_brute_force/unary_float.cpp @@ -489,7 +489,6 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode) cl_int error; float maxError = 0.0f; double maxErrorVal = 0.0; - int skipTestingRelaxed = (relaxedMode && strcmp(f->name, "tan") == 0); logFunctionInfo(f->name, sizeof(cl_float), relaxedMode); @@ -583,7 +582,7 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode) return error; // Run the kernels - if (!gSkipCorrectnessTesting || skipTestingRelaxed) + if (!gSkipCorrectnessTesting) { error = ThreadPool_Do(Test, test_info.jobCount, &test_info); if (error) return error; @@ -603,12 +602,6 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode) else vlog("passed"); - if (skipTestingRelaxed) - { - vlog(" (rlx skip correctness testing)\n"); - return error; - } - vlog("\t%8.2f @ %a", maxError, maxErrorVal); }