MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / erfc

Function erfc

samples/common/half.h:3443–3446  ·  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

3441/// \return 1 minus error function value of \a arg
3442// template<typename T> typename enable<expr,T>::type erfc(T arg) { return functions::erfc(arg); }
3443inline expr erfc(half arg)
3444{
3445 return functions::erfc(arg);
3446}
3447inline expr erfc(expr arg)
3448{
3449 return functions::erfc(arg);

Callers 1

erfcMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected