mindspore/docs/api/api_python/ops/mindspore.ops.Xlogy.rst

27 lines
1.5 KiB
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.Xlogy
====================
.. py:class:: mindspore.ops.Xlogy
计算第一个输入Tensor乘以第二个输入Tensor的对数。当 `x` 为零时,则返回零。
.. math::
out_i = x_{i}\ln{y_{i}}
`x``y` 的输入遵循隐式类型转换规则使数据类型一致。输入必须是两个Tensor或一个Tensor和一个Scalar。当输入是两个Tensor时它们的数据类型不能同时是bool的它们的shape可以广播。当输入是一个Tensor和一个Scalar时Scalar只能是一个常量。
**输入:**
- **x** (Union[Tensor, number.Number, bool]) - 第一个输入为数值型。数据类型为 `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore.html#mindspore.dtype>`_`bool_ <https://www.mindspore.cn/docs/en/master/api_python/mindspore.html#mindspore.dtpye>`_
- **y** (Union[Tensor, number.Number, bool]) - 第二个输入为数值型。当第一个输入是Tensor或数据类型为数值型或bool的Tensor时 则第二个输入是数值型或bool。当第一个输入是Scalar时则第二个输入必须是数据类型为数值型或bool的Tensor。
**输出:**
Tensorshape与广播后的shape相同数据类型为两个输入中精度较高或数数值较高的类型。
**异常:**
- **TypeError** - 如果 `x``y` 不是数值型、bool或Tensor。
- **TypeError** - 如果 `x``y` 的数据类型不是float16、float32或float64。
- **ValueError** - 如果 `x` 不能广播到与 `y` 的shape一致。