owl_lazy.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15# 1 "src/base/core/owl_lazy.ml" (* * OWL - OCaml Scientific Computing * Copyright (c) 2016-2022 Liang Wang <liang@ocaml.xyz> *) open Owl_types (* Functor of making a Lazy engine, just an alias of CPU engine. *) module Make (A : Ndarray_Mutable) = struct include Owl_computation_cpu_engine.Make (A) end (* Make functor ends *)