MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / erfc

Function erfc

include/half/half.hpp:2517–2517  ·  view source on GitHub ↗

Complementary error function. \param arg function argument \return 1 minus error function value of \a arg template typename enable ::type erfc(T arg) { return functions::erfc(arg); }

Source from the content-addressed store, hash-verified

2515 /// \return 1 minus error function value of \a arg
2516// template<typename T> typename enable<expr,T>::type erfc(T arg) { return functions::erfc(arg); }
2517 inline expr erfc(half arg) { return functions::erfc(arg); }
2518 inline expr erfc(expr arg) { return functions::erfc(arg); }
2519
2520 /// Natural logarithm of gamma function.

Callers 1

erfcMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected