Source file owl_dense_ndarray_s.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/owl/dense/owl_dense_ndarray_s.ml"
open Bigarray
module M = Owl_dense_ndarray_generic
include M
type elt = float
type arr = (float, float32_elt, c_layout) Genarray.t
let number = Owl_types.F32
let empty dimension = M.empty Float32 dimension
let create dimension a = M.create Float32 dimension a
let init dimension f = M.init Float32 dimension f
let init_nd dimension f = M.init_nd Float32 dimension f
let zeros dimension = M.zeros Float32 dimension
let ones dimension = M.ones Float32 dimension
let uniform ?a ?b dimension = M.uniform Float32 ?a ?b dimension
let gaussian ?mu ?sigma dimension = M.gaussian ?mu ?sigma Float32 dimension
let sequential ?a ?step dimension = M.sequential Float32 ?a ?step dimension
let linspace a b n = M.linspace Float32 a b n
let logspace ?base a b n = M.logspace Float32 ?base a b n
let bernoulli ?p d = M.bernoulli Float32 ?p d
let load f = M.load Float32 f
let of_array x d = M.of_array Float32 x d
let mmap fd ?pos shared dims = Unix.map_file fd ?pos Float32 c_layout shared dims
let conj x = copy x
let of_arrays x = of_arrays Float32 x