torch.SliceScatterOptions
export interface SliceScatterOptions {
/** The dimension to scatter along (default: 0) */
dim?: number;
/** The starting index (default: 0) */
start?: number;
/** The ending index (default: start + src.shape[dim]) */
end?: number;
/** The step size (default: 1) */
step?: number;
}dim(number)optional- – The dimension to scatter along (default: 0)
start(number)optional- – The starting index (default: 0)
end(number)optional- – The ending index (default: start + src.shape[dim])
step(number)optional- – The step size (default: 1)
Options for slice_scatter operations