TypeTensor - v0.1.0
    Preparing search index...

    Type Alias Flatten<T>

    Flatten: ReshapeOp<T, readonly [Product<T["__shape"]>]>

    Flatten operation - reshape tensor to 1D

    Type Parameters

    type A = TensorStorage<Float32, [2, 3, 4]>;
    type B = Flatten<A>; // Shape: [24]