MCPcopy Create free account
hub / github.com/NVIDIA/DALI / tan

Function tan

dali/python/nvidia/dali/math.py:151–157  ·  view source on GitHub ↗

Computes tangent of values in `input`. :rtype: TensorList of tan(input). If input is an integer, the result will be float, otherwise the type is preserved.

(input)

Source from the content-addressed store, hash-verified

149
150
151def tan(input) -> _DataNode:
152 """Computes tangent of values in `input`.
153
154 :rtype: TensorList of tan(input). If input is an integer, the result will be float,
155 otherwise the type is preserved.
156 """
157 return _arithm_op("tan", input)
158
159
160def asin(input) -> _DataNode:

Callers 2

DefineTransformsMethod · 0.50
math_overloads.hFile · 0.50

Calls 1

_arithm_opFunction · 0.70

Tested by

no test coverage detected