Copies the elements from source
into the positions specified by index
. For the purpose of indexing, the self
tensor is treated as if it were a 1-D tensor.
index
and source
need to have the same number of elements, but not necessarily the same shape.
If accumulate
is True
, the elements in source
are added to self
. If accumulate is False
, the behavior is undefined if index
contain duplicate elements.
>>> src = torch.tensor([[4, 3, 5], ... [6, 7, 8]]) >>> src.put_(torch.tensor([1, 3]), torch.tensor([9, 10])) tensor([[ 4, 9, 5], [ 10, 7, 8]])
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4