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

Function log10

dali/python/nvidia/dali/math.py:89–95  ·  view source on GitHub ↗

Computes logarithm (base-10) of values in `input`. :rtype: TensorList of log10(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

87
88
89def log10(input) -> _DataNode:
90 """Computes logarithm (base-10) of values in `input`.
91
92 :rtype: TensorList of log10(input). If input is an integer, the result will be float,
93 otherwise the type is preserved.
94 """
95 return _arithm_op("log10", input)
96
97
98def abs(input) -> _DataNode:

Callers 2

math_overloads.hFile · 0.50
TEST_PFunction · 0.50

Calls 1

_arithm_opFunction · 0.70

Tested by 1

TEST_PFunction · 0.40