forked from mindspore-Ecosystem/mindspore
24 lines
725 B
ReStructuredText
24 lines
725 B
ReStructuredText
|
|
mindspore.ops.log10
|
|||
|
|
====================
|
|||
|
|
|
|||
|
|
.. py:function:: mindspore.ops.log10(x)
|
|||
|
|
|
|||
|
|
逐元素返回Tensor以10为底的对数。
|
|||
|
|
|
|||
|
|
.. math::
|
|||
|
|
y_i = log_{10}(x_i)
|
|||
|
|
|
|||
|
|
.. note::
|
|||
|
|
Ascend上输入Tensor的维度要小于等于8,CPU上输入Tensor的维度要小于8。
|
|||
|
|
|
|||
|
|
参数:
|
|||
|
|
- **x** (Tensor) - 任意维度的输入Tensor。该值必须大于0。
|
|||
|
|
|
|||
|
|
返回:
|
|||
|
|
Tensor,具有与 `x` 相同的shape。
|
|||
|
|
|
|||
|
|
异常:
|
|||
|
|
- **TypeError** - `x` 不是Tensor。
|
|||
|
|
- **TypeError** - 在GPU和CPU平台上运行时,`x` 的数据类型不是float16、float32或float64。
|
|||
|
|
- **TypeError** - 在Ascend平台上运行时,`x` 的数据类型不是float16或float32。
|