package owl-base

  1. Overview
  2. Docs
OCaml Scientific and Engineering Computing - Base

Install

Dune Dependency

Authors

Maintainers

Sources

owl-1.2.tbz
sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5
sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd

doc/src/owl-base/owl_types.ml.html

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.