package owl

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

Source file owl_sparse_ndarray.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
# 1 "src/owl/sparse/owl_sparse_ndarray.ml"
(*
 * OWL - OCaml Scientific and Engineering Computing
 * Copyright (c) 2016-2020 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

(** Sparse ndarray: module aliases *)

module Operator = Owl_operator.Make_Basic (Owl_sparse_ndarray_generic)

module Generic = struct
  include Owl_sparse_ndarray_generic
  include Operator
end

module S = struct
  include Owl_sparse_ndarray_s
  include Operator
end

module D = struct
  include Owl_sparse_ndarray_d
  include Operator
end

module C = struct
  include Owl_sparse_ndarray_c
  include Operator
end

module Z = struct
  include Owl_sparse_ndarray_z
  include Operator
end
OCaml

Innovation. Community. Security.