Skip to main content

ClikaRT::ops::index_add_

function

index_add_()

Tensor& index_add_(
    Tensor& self,
    int64_t dim,
    Tensor indices,
    Tensor src
)

In-place index_add: self[.., indices[i], ..] += src[.., i, ..]; same arguments and error conditions as index_add(). Accumulates through self's storage (a strided view reaches its base buffer; aliases observe the write). Returns self under the value surface, Result<void> under the Result surface; CLIKART_CHECK is the mode-stable spelling.

Declared in ClikaRT/compute/ops.h, line 2445