TorchLean API

NN.Runtime.Autograd.Engine.Core.Indexing

Core Tape Indexing Operations #

This file implements gather and scatter-style tape nodes. The forward rules expose typed indexing operations, and the backward rules route upstream gradients back to the selected source coordinates.

def Runtime.Autograd.Tape.select {α : Type} [TorchLean.Storage α] [Zero α] {s : Spec.Shape} (t : Tape α) (xId axis : ) [Spec.Shape.AxisInBounds axis s] (index : Fin (s.axisSize axis)) :

Select one bounded coordinate from any tensor axis.

Instances For
    def Runtime.Autograd.Tape.indexSelect {α : Type} [TorchLean.Storage α] [Add α] [Zero α] {s : Spec.Shape} (t : Tape α) (xId axis count : ) [Spec.Shape.AxisInBounds axis s] (indices : TorchLean.Tensor (Fin (s.axisSize axis)) [count]) :

    Select several bounded coordinates from any tensor axis.

    Instances For
      def Runtime.Autograd.Tape.scatterAdd {α : Type} [TorchLean.Storage α] [Add α] [Zero α] {s : Spec.Shape} (t : Tape α) (baseId sourceId axis count : ) [Spec.Shape.AxisInBounds axis s] (indices : TorchLean.Tensor (Fin (s.axisSize axis)) [count]) :

      Add indexed source slices into any tensor axis.

      Instances For