Module Owl_symbolic_ops_tensor.Slice

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 axes : int array option;
mutable starts : int array;
mutable ends : int array;
mutable steps : int array option;
}
val op_type : string
val create : ?⁠name:string -> ?⁠axes:int array -> ?⁠steps:int array -> int array -> int array -> string -> t