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

19 lines
828 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.InplaceAdd
========================
.. py:class:: mindspore.ops.InplaceAdd(indices)
`input_v` 添加到 `x` 的特定行。即计算 `y` = `x`; `y[i,]` += `input_v`
更多参考详见 :func:`mindspore.ops.inplace_add`
参数:
- **indices** (Union[int, tuple]) - 指定将 `input_v` 添加到 `x` 的哪些行。可以为int或Tuple取值范围[0, len(`x`)]。
输入:
- **x** (Tensor) - 输入Tensorshape为:math:`(N,*)` ,其中 :math:`*` 表示任何数量的附加维度。
- **input_v** (Tensor) - 添加到 `x` 的Tensor。除第一个维度之外shape必须与 `x` 的shape相同。第一个维度必须与 `indices` 的长度相同。数据类型与 `x` 相同。
输出:
Tensor`x` 的shape和数据类型相同。