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

Function atan2

samples/common/half.h:3323–3326  ·  view source on GitHub ↗

Arc tangent function. \param x first argument \param y second argument \return arc tangent value template typename enable ::type atan2(T x, U y) { return functions::atan2(x, y); }

Source from the content-addressed store, hash-verified

3321// template<typename T,typename U> typename enable<expr,T,U>::type atan2(T x, U y) { return functions::atan2(x, y);
3322//}
3323inline expr atan2(half x, half y)
3324{
3325 return functions::atan2(x, y);
3326}
3327inline expr atan2(half x, expr y)
3328{
3329 return functions::atan2(x, y);

Callers 1

atan2Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected