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

Function frexp

samples/common/half.h:3622–3625  ·  view source on GitHub ↗

Decompress floating point number. \param arg number to decompress \param exp address to store exponent at \return significant in range [0.5, 1) template typename enable ::type frexp(T arg, int *exp) { return functions::frexp(arg, exp); }

Source from the content-addressed store, hash-verified

3620/// \return significant in range [0.5, 1)
3621// template<typename T> typename enable<half,T>::type frexp(T arg, int *exp) { return functions::frexp(arg, exp); }
3622inline half frexp(half arg, int* exp)
3623{
3624 return functions::frexp(arg, exp);
3625}
3626inline half frexp(expr arg, int* exp)
3627{
3628 return functions::frexp(arg, exp);

Callers 1

float2half_implFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected