Procs
proc stable_softmax[T](x, max, sumexp: T): T {.noSideEffect, inline.}
- Source Edit
proc streaming_max_sumexp[T](t: Tensor[T]): tuple[max: T, sumexp: T] {. noSideEffect, inline.}
- Source Edit
proc streaming_max_sumexp[T](t: Tensor[T]; axis: int): Tensor[ tuple[max: T, sumexp: T]] {.noinit.}
- Source Edit