mindspore2022/docs/api/api_python/ops/mindspore.ops.AddN.rst

22 lines
731 B
ReStructuredText
Raw Permalink 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.AddN
===================
.. py:class:: mindspore.ops.AddN()
逐元素将所有输入的Tensor相加。
所有输入Tensor必须具有相同的shape。
**输入:**
- **x** (Union(tuple[Tensor], list[Tensor])) - Tensor组成的tuble或list类型为 `bool_ <https://www.mindspore.cn/docs/api/zh-CN/master/api_python/mindspore.html#mindspore.dtype>`_`number <https://www.mindspore.cn/docs/api/zh-CN/master/api_python/mindspore.html#mindspore.dtype>`_
**输出:**
Tensor`x` 的每个Tensor具有相同的shape和数据类型。
**异常:**
- **TypeError** - `x` 既不是tuple也不是list。
- **ValueError** - `x` 中存在shape不同的Tensor。