Sets the entries of NDArray pointed by index, according to linear indexing, to be the numbers in value. Value has to be of the same shape as index. @param index select the entries of an NDArray @param value numbers to assign to the indexed entries @return the NDArray with update
(NDArray index, NDArray value)
| 728 | * @return the NDArray with updated values |
| 729 | */ |
| 730 | NDArray put(NDArray index, NDArray value); |
| 731 | |
| 732 | /** |
| 733 | * Writes all values from the tensor value into self at the indices specified in the index |
no outgoing calls