TypeTensor - v0.1.0
    Preparing search index...

    Type Alias Mul<A, B>

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

    Multiply operation with broadcasting support

    Type Parameters

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