TypeTensor - v0.1.0
    Preparing search index...

    Type Alias LogSoftmaxOp<Input, Axis, OutputDType>

    LogSoftmaxOp: ValidateDim<Axis, Input["__shape"]> extends DimensionError<string>
        ? never
        : StorageTransformation<
            "log_softmax",
            TensorStorage<
                OutputDType,
                Input["__shape"],
                ComputeStrides<Input["__shape"]>
                | Input["__strides"],
                SoftmaxOpLayout<Input["__layout"]>,
            >,
            readonly [Input],
        > & { __logSoftmaxAxis: ValidateDim<Axis, Input["__shape"]> }

    Log-softmax operation interface Computes log(softmax(x)) for numerical stability

    Type Parameters