forked from mindspore-Ecosystem/mindspore
commit
08dc4ddd7a
|
@ -619,7 +619,7 @@ mindspore.Tensor
|
|||
|
||||
初始化的Tensor。
|
||||
|
||||
.. py::method:: inplace_add(v, indices)
|
||||
.. py:method:: inplace_add(v, indices)
|
||||
|
||||
根据 `indices`,将 `v` 加到原Tensor中。
|
||||
|
||||
|
@ -640,7 +640,7 @@ mindspore.Tensor
|
|||
- **TypeError** - `indices` 不是int或tuple。
|
||||
- **TypeError** - `indices` 是元组,但是其中的元素不是int。
|
||||
|
||||
.. py::method:: inplace_sub(v, indices)
|
||||
.. py:method:: inplace_sub(v, indices)
|
||||
|
||||
根据 `indices`,将 `v` 从原Tensor中减掉。
|
||||
|
||||
|
@ -661,7 +661,7 @@ mindspore.Tensor
|
|||
- **TypeError** - `indices` 不是int或tuple。
|
||||
- **TypeError** - `indices` 是元组,但是其中的元素不是int。
|
||||
|
||||
.. py::method:: inplace_update(v, indices)
|
||||
.. py:method:: inplace_update(v, indices)
|
||||
|
||||
根据 `indices` 以 `v` 来更新Tensor中的值。
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
mindspore.ops.inplace_add
|
||||
=========================
|
||||
|
||||
.. py:method:: inplace_add(x, v, indices)
|
||||
.. py:function:: mindspore.ops.inplace_add(x, v, indices)
|
||||
|
||||
根据 `indices`,将 `x` 中的对应位置加上 `v` 。
|
||||
|
||||
.. note::
|
||||
`indices`只能沿着最高轴进行索引。
|
||||
`indices` 只能沿着最高轴进行索引。
|
||||
|
||||
**参数:**
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
mindspore.ops.inplace_sub
|
||||
=========================
|
||||
|
||||
.. py:method:: inplace_sub(x, v, indices)
|
||||
.. py:function:: mindspore.ops.inplace_sub(x, v, indices)
|
||||
|
||||
根据 `indices`,将 `v` 从 `x` 中减掉。
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
mindspore.ops.inplace_update
|
||||
============================
|
||||
|
||||
.. py:method:: inplace_update(x, v, indices)
|
||||
.. py:function:: mindspore.ops.inplace_update(x, v, indices)
|
||||
|
||||
根据 `indices`,将 `x` 中的某些值更新为 `v`。
|
||||
|
||||
|
|
Loading…
Reference in New Issue