TypeTensor - v0.1.0
    Preparing search index...

    Type Alias Div<A, B>

    Div: CanBroadcast<A["__shape"], B["__shape"]> extends true
        ? BinaryOp<A, B, "div">
        : IncompatibleShapes<A["__shape"], B["__shape"]>

    Divide operation with broadcasting support

    Type Parameters

    type A = TensorStorage<Float32, [2, 3]>;
    type B = TensorStorage<Float32, [1, 3]>;
    type Result = Div<A, B>; // Output shape: [2, 3]