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 auto_pad : string;
  6. mutable ceil_mode : bool;
  7. mutable count_include_pad : bool;
  8. mutable dilations : int array;
  9. mutable kernel_shp : int array;
  10. mutable pads : int array option;
  11. mutable strides : int array;
}
val op_type : string
val create : ?padding:Owl_symbolic_types.pad -> ?strides:int array -> ?dilations:int array -> ?name:string -> ?ceil_mode:bool -> ?count_include_pad:bool -> string -> int array -> t