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)
| 87 | |
| 88 | |
| 89 | def 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 | |
| 98 | def abs(input) -> _DataNode: |