Module Owl_symbolic_ops_math.Gemm

type t = {
mutable name : string;
mutable input : string array;
mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
mutable out_shape : int array option array;
mutable alpha : float;
mutable beta : float;
mutable transA : bool;
mutable transB : bool;
}
val op_type : string
val create : ?⁠name:string -> ?⁠alpha:float -> ?⁠beta:float -> ?⁠transA:bool -> ?⁠transB:bool -> ?⁠c:string -> string -> string -> t