Source file scikit_matrix.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
module BA2 = Bigarray.Array2
type t = (float, Bigarray.float64_elt, Bigarray.c_layout) BA2.t
type gen = (float, Bigarray.float64_elt, Bigarray.c_layout) Bigarray.Genarray.t
let create ~(lines : int) ~(cols : int) =
let mat = BA2.create Bigarray.Float64 Bigarray.C_layout lines cols in
BA2.fill mat 0.0 ;
mat
let init ~(lines : int) ~(cols : int) ~f =
let mat = BA2.create Bigarray.Float64 Bigarray.C_layout lines cols in
for i = 0 to lines - 1 do
for j = 0 to cols - 1 do
BA2.set mat i j (f i j)
done
done ;
mat
let dim1 (mat : t) = BA2.dim1 mat
let dim2 (mat : t) = BA2.dim2 mat
let shape (mat : t) = (dim1 mat, dim2 mat)
let set (mat : t) i j v = BA2.set mat i j v
let get (mat : t) i j = BA2.get mat i j
let map (mat : t) (f : float -> float) =
let res = create ~lines:(dim1 mat) ~cols:(dim2 mat) in
for i = 0 to dim1 mat - 1 do
for j = 0 to dim2 mat - 1 do
set res i j (f (get mat i j))
done
done ;
res
let column (mat : t) (i : int) =
let lines, cols = shape mat in
if i >= cols then
let msg =
Printf.sprintf
"Matrix.column: matrix has shape %d x %d, column %d out of bounds"
lines
cols
i
in
Stdlib.failwith msg
else
let col = create ~lines ~cols:1 in
for k = 0 to lines - 1 do
set col k 0 (get mat k i)
done ;
col
let is_column (m : t) : bool =
let _, cols = shape m in
cols = 1
let all_equal (l : int list) : int option =
let result =
List.sort_uniq (fun (x : int) (y : int) -> Stdlib.compare x y) l
in
match result with [uniq] -> Some uniq | _ -> None
let concat_columns_horiz (columns : t list) : t =
let cols = List.length columns in
if cols = 0 then Stdlib.failwith "concat_columns_horiz: empty list of columns" ;
if not (List.for_all is_column columns) then
Stdlib.failwith "concat_columns_horiz: invalid argument" ;
let row_dims = List.map dim1 columns in
match all_equal row_dims with
| None -> Stdlib.failwith "concat_columns_horiz: invalid argument"
| Some rows ->
let columns = Array.of_list columns in
init ~lines:rows ~cols ~f:(fun l c -> get columns.(c) l 0)
let to_genarray (m : t) : gen = Bigarray.genarray_of_array2 m
let of_genarray (a : gen) : t = Bigarray.array2_of_genarray a
let bigarray_copy (a : gen) =
let dims = Bigarray.Genarray.dims a in
let copy = Bigarray.Genarray.create Bigarray.Float64 Bigarray.C_layout dims in
Bigarray.Genarray.blit a copy ;
copy
let to_numpy (mat : t) : Pytypes.pyobject =
Numpy.of_bigarray (bigarray_copy (to_genarray mat))
let to_numpy_vector vec =
Numpy.of_bigarray (bigarray_copy (Bigarray.genarray_of_array1 vec))
let of_numpy (npy : Pytypes.pyobject) : t =
let genmat = Numpy.to_bigarray Bigarray.Float64 Bigarray.c_layout npy in
let genmat = bigarray_copy genmat in
let ndims = Bigarray.Genarray.num_dims genmat in
let reshaped =
if ndims <= 0 || ndims > 2 then
Stdlib.failwith "numpy_to_mat: input array has dims <= 0 || dims > 2"
else if ndims = 1 then
Bigarray.reshape genmat [|Bigarray.Genarray.nth_dim genmat 0; 1|]
else genmat
in
of_genarray reshaped
let numpy_mul (mat1 : t) (mat2 : t) =
let py_mat =
Py.Module.get_function
(Pyinit.numpy ())
"matmul"
[|to_numpy mat1; to_numpy mat2|]
in
of_numpy py_mat
let numpy_add (mat1 : t) (mat2 : t) =
let py_mat =
Py.Module.get_function
(Pyinit.numpy ())
"add"
[|to_numpy mat1; to_numpy mat2|]
in
of_numpy py_mat
let numpy_sub (mat1 : t) (mat2 : t) =
let py_mat =
Py.Module.get_function
(Pyinit.numpy ())
"sub"
[|to_numpy mat1; to_numpy mat2|]
in
of_numpy py_mat
let numpy_show (mat : t) : string =
let py_str =
Py.Module.get_function (Pyinit.numpy ()) "array2string" [|to_numpy mat|]
in
Py.String.to_string py_str