diff --git a/test_conformance/math_brute_force/function_list.cpp b/test_conformance/math_brute_force/function_list.cpp index 5f7b8ea0e2..06b19f82ba 100644 --- a/test_conformance/math_brute_force/function_list.cpp +++ b/test_conformance/math_brute_force/function_list.cpp @@ -346,7 +346,6 @@ const Func functionList[] = { ENTRY(pown, 16.0f, 16.0f, 4.0f, FTZ_OFF, binaryF_i), ENTRY(powr, 16.0f, 16.0f, 4.0f, FTZ_OFF, binaryF), - //ENTRY(reciprocal, 1.0f, 1.0f, FTZ_OFF, unaryF), ENTRY(remainder, 0.0f, 0.0f, 0.0f, FTZ_OFF, binaryF), ENTRY(remquo, 0.0f, 0.0f, 0.0f, FTZ_OFF, binaryF_two_results_i), ENTRY(rint, 0.0f, 0.0f, 0.0f, FTZ_OFF, unaryF), diff --git a/test_conformance/math_brute_force/reference_math.cpp b/test_conformance/math_brute_force/reference_math.cpp index 049f2013b4..5cac2d072d 100644 --- a/test_conformance/math_brute_force/reference_math.cpp +++ b/test_conformance/math_brute_force/reference_math.cpp @@ -1854,10 +1854,6 @@ double reference_logb(double x) return exponent - 127; } -double reference_relaxed_reciprocal(double x) { return 1.0f / ((float)x); } - -double reference_reciprocal(double x) { return 1.0 / x; } - double reference_remainder(double x, double y) { int i; @@ -3740,9 +3736,6 @@ long double reference_nanl(cl_ulong x) return (long double)u.f; } - -long double reference_reciprocall(long double x) { return 1.0L / x; } - long double reference_remainderl(long double x, long double y) { int i; @@ -5771,4 +5764,4 @@ long double reference_erfcl(long double x) { return erfc(x); } long double reference_erfl(long double x) { return erf(x); } double reference_erfc(double x) { return erfc(x); } -double reference_erf(double x) { return erf(x); } \ No newline at end of file +double reference_erf(double x) { return erf(x); } diff --git a/test_conformance/math_brute_force/reference_math.h b/test_conformance/math_brute_force/reference_math.h index b740787ff5..a744ff9114 100644 --- a/test_conformance/math_brute_force/reference_math.h +++ b/test_conformance/math_brute_force/reference_math.h @@ -104,7 +104,6 @@ double reference_logb(double x); double reference_maxmag(double x, double y); double reference_minmag(double x, double y); double reference_nan(cl_uint x); -double reference_reciprocal(double x); double reference_remainder(double x, double y); double reference_rint(double x); double reference_round(double x); @@ -136,7 +135,6 @@ double reference_relaxed_log(double x); double reference_relaxed_log2(double x); double reference_relaxed_log10(double x); double reference_relaxed_pow(double x, double y); -double reference_relaxed_reciprocal(double x); // -- for testing double -- @@ -223,7 +221,6 @@ long double reference_logbl(long double x); long double reference_maxmagl(long double x, long double y); long double reference_minmagl(long double x, long double y); long double reference_nanl(cl_ulong x); -long double reference_reciprocall(long double x); long double reference_remainderl(long double x, long double y); long double reference_rintl(long double x); long double reference_roundl(long double x);