package owl

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file owl_optimise.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 1 "src/owl/optimise/owl_optimise.ml"
(*
 * OWL - OCaml Scientific and Engineering Computing
 * Copyright (c) 2016-2019 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

(* Alias modules of numerical differentiation. *)

module Make_Embedded
  (A : Owl_types_ndarray_algodiff.Sig)
  = struct

  include
    Owl_optimise_generic.Make (
      Owl_algodiff_generic.Make (A)
    )

end



(* Optimise module of Float32 type *)
module S = Make_Embedded (Owl_dense_ndarray.S)


(* Optimise module of Float64 type *)
module D = Make_Embedded (Owl_dense_ndarray.D)


(* ends here *)
OCaml

Innovation. Community. Security.