package owl-base

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

Source file owl_types.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 1 "src/base/types/owl_types.ml"
(*
 * OWL - OCaml Scientific Computing
 * Copyright (c) 2016-2022 Liang Wang <liang@ocaml.xyz>
 *)

(** This module defines the types shared by various sub-libraries in Owl.
  Note that they just wrappers, to find the exact module signature, please
  refer to the definition in the corresponding module.
 *)

include Owl_types_common

(* Module Signature for Ndarray *)

module type Ndarray_Basic = sig
  include Owl_types_ndarray_basic.Sig
end

module type Ndarray_Compare = sig
  include Owl_types_ndarray_compare.Sig
end

module type Ndarray_Mutable = sig
  include Owl_types_ndarray_mutable.Sig
end

module type Ndarray_Algodiff = sig
  include Owl_types_ndarray_algodiff.Sig
end

module type Ndarray_Numdiff = sig
  include Owl_types_ndarray_numdiff.Sig
end

module type Stats_Dist = sig
  include Owl_types_stats_dist.Sig
end

module type Computation_Device = sig
  include Owl_types_computation_device.Sig
end

(*
module type Computation_Engine = sig

  include Owl_types_computation_engine.Sig

end
*)

(* ends here *)
OCaml

Innovation. Community. Security.