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

Function sin

samples/common/half.h:3243–3246  ·  view source on GitHub ↗

Sine function. \param arg function argument \return sine value of \a arg template typename enable ::type sin(T arg) { return functions::sin(arg); }

Source from the content-addressed store, hash-verified

3241/// \return sine value of \a arg
3242// template<typename T> typename enable<expr,T>::type sin(T arg) { return functions::sin(arg); }
3243inline expr sin(half arg)
3244{
3245 return functions::sin(arg);
3246}
3247inline expr sin(expr arg)
3248{
3249 return functions::sin(arg);

Callers 3

sinMethod · 0.70
lgammaMethod · 0.70
tgammaMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected