Module Owl_symbolic_ops_generator.RandomNormal

type t = {
mutable name : string;
mutable attrs : (string * Owl_symbolic_types.attrvalue) array;
mutable dtype : Owl_symbolic_types.number_type;
mutable shape : int array;
mutable out_shape : int array option array;
mutable mean : float;
mutable stddev : float;
mutable seed : float option;
}
val op_type : string
val create : ?⁠mean:float -> ?⁠stddev:float -> ?⁠seed:float option -> ?⁠dtype:Owl_symbolic_types.number_type -> ?⁠name:string -> int array -> t