TypeTensor - v0.1.0
    Preparing search index...

    Type Alias UnaryOp<Input, OutputDType, Op>

    UnaryOp: StorageTransformation<
        Op,
        TensorStorage<
            OutputDType,
            Input["__shape"],
            ComputeStrides<Input["__shape"]>
            | Input["__strides"],
            UnaryOpLayout<Input["__layout"]>,
        >,
        readonly [Input],
    >

    Base unary operation interface The output can have EITHER the input strides (preserved) OR C-contiguous strides

    Type Parameters