mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Math bruteforce test - enable erf/erfc functions (#1289)
It was disabled because lack of reference implementation. However the reference implementation exists. Then no reason to start testing these functions.
This commit is contained in:
committed by
GitHub
parent
7e859cc296
commit
97cf4c7e25
@@ -5764,3 +5764,9 @@ int reference_notl(long double x)
|
||||
int r = !x;
|
||||
return r;
|
||||
}
|
||||
|
||||
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); }
|
||||
Reference in New Issue
Block a user