Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. mutable name : string;
  2. mutable input : string array;
  3. mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
  4. mutable out_shape : int array option array;
  5. mutable axis : int;
  6. mutable keepdims : bool;
  7. mutable split_scalar : int option;
  8. mutable split_array : int array option;
}
val op_type : string
val create : ?name:string -> ?axis:int -> ?keepdims:bool -> ?split_scalar:int -> ?split_array:int array -> string array -> t