Module Owl_symbolic_ops_tensor.Split

type t = {
mutable name : string;
mutable input : string array;
mutable output : string array;
mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
mutable out_shape : int array option array;
mutable axis : int;
mutable split : int array;
}
val op_type : string
val create : ?⁠output:string array -> ?⁠name:string -> ?⁠axis:int -> string -> int array -> t