ScatterAxes import { ScatterAxes } from "destack:tensor"; Axis mapping for tensor scatter. export struct ScatterAxes { updateWindow: [Axis; UpdateWindowCount]; insertedWindow: [Axis; InsertedWindowCount]; scatterToOperand: [Axis; ScatterOperandCount]; indexVector: Axis; } language/library/src/tensor/axes.ds:70:86 Members updateWindow: [Axis; UpdateWindowCount] Window axes in the updates tensor. insertedWindow: [Axis; InsertedWindowCount] Inserted window axes in the operand tensor. scatterToOperand: [Axis; ScatterOperandCount] Mapping from scatter index components to operand axes. indexVector: Axis Axis containing index vectors in the indices tensor.