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

Function sqrt

samples/common/half.h:3167–3170  ·  view source on GitHub ↗

Square root. \param arg function argument \return square root of \a arg template typename enable ::type sqrt(T arg) { return functions::sqrt(arg); }

Source from the content-addressed store, hash-verified

3165/// \return square root of \a arg
3166// template<typename T> typename enable<expr,T>::type sqrt(T arg) { return functions::sqrt(arg); }
3167inline expr sqrt(half arg)
3168{
3169 return functions::sqrt(arg);
3170}
3171inline expr sqrt(expr arg)
3172{
3173 return functions::sqrt(arg);

Callers 7

findCoeffOfVarianceFunction · 0.70
sqrtMethod · 0.70
hypotMethod · 0.70
asinhMethod · 0.70
acoshMethod · 0.70
erfMethod · 0.70
__init__Method · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected