Source file nx_c.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
open Nx_core
open Bigarray_ext
type ('a, 'b) buffer = ('a, 'b, c_layout) Array1.t
type context = unit
let create_context () = ()
type ('a, 'b) t = {
context : context;
dtype : ('a, 'b) Dtype.t;
buffer : ('a, 'b) buffer;
view : Lazy_view.t;
}
type ('a, 'b) ffi_tensor = {
data : ('a, 'b) buffer;
shape : int array;
strides : int array;
offset : int;
}
[@@warning "-69"]
external caml_add :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_add"
external caml_mul :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_mul"
external caml_idiv :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_idiv"
external caml_fdiv :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_fdiv"
external caml_max :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_max"
external caml_mod :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_mod"
external caml_pow :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_pow"
external caml_cmplt :
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
(int, Dtype.uint8_elt) ffi_tensor ->
unit = "caml_nx_cmplt"
external caml_cmpne :
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
(int, Dtype.uint8_elt) ffi_tensor ->
unit = "caml_nx_cmpne"
external caml_xor :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_xor"
external caml_or :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_or"
external caml_and :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_and"
external caml_neg : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_neg"
external caml_log2 : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_log2"
external caml_exp2 : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_exp2"
external caml_sin : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_sin"
external caml_sqrt : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_sqrt"
external caml_recip : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_recip"
external caml_where :
(int, Dtype.uint8_elt) ffi_tensor ->
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
unit = "caml_nx_where"
external caml_reduce_sum :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> int array -> bool -> unit
= "caml_nx_reduce_sum"
external caml_reduce_max :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> int array -> bool -> unit
= "caml_nx_reduce_max"
external caml_reduce_prod :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> int array -> bool -> unit
= "caml_nx_reduce_prod"
external caml_associative_scan :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> int -> int -> unit
= "caml_nx_associative_scan"
external caml_cast : ('a, 'b) ffi_tensor -> ('c, 'd) ffi_tensor -> unit
= "caml_nx_cast"
external caml_copy : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor = "caml_nx_copy"
external caml_contiguous : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor
= "caml_nx_contiguous"
external caml_assign : ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_assign"
external caml_gather :
('a, 'b) ffi_tensor ->
(int32, Dtype.int32_elt) ffi_tensor ->
('a, 'b) ffi_tensor ->
int ->
unit = "caml_nx_op_gather"
external caml_scatter :
('a, 'b) ffi_tensor ->
(int32, Dtype.int32_elt) ffi_tensor ->
('a, 'b) ffi_tensor ->
int ->
('a, 'b) ffi_tensor ->
int ->
bool ->
unit = "caml_nx_op_scatter_bc" "caml_nx_op_scatter"
external caml_cholesky :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> bool -> unit
= "caml_nx_op_cholesky"
external caml_matmul :
('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_matmul"
external caml_triangular_solve :
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
bool ->
bool ->
bool ->
unit = "caml_nx_op_triangular_solve_bc" "caml_nx_op_triangular_solve"
external caml_qr :
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
bool ->
unit = "caml_nx_op_qr"
external caml_eig :
('a, 'b) ffi_tensor ->
('c, 'd) ffi_tensor ->
('e, 'f) ffi_tensor ->
bool ->
bool ->
unit = "caml_nx_op_eig"
external caml_svd :
('a, 'b) ffi_tensor ->
('a, 'b) ffi_tensor ->
('c, 'd) ffi_tensor ->
('a, 'b) ffi_tensor ->
bool ->
unit = "caml_nx_op_svd"
external caml_cat :
('a, 'b) ffi_tensor list -> int -> ('a, 'b) ffi_tensor -> unit = "caml_nx_cat"
external caml_pad :
('a, 'b) ffi_tensor -> int array -> 'a -> ('a, 'b) ffi_tensor -> unit
= "caml_nx_pad"
external caml_unfold :
('a, 'b) ffi_tensor ->
int array ->
int array ->
int array ->
int array ->
('a, 'b) ffi_tensor ->
unit = "caml_nx_op_unfold_bc" "caml_nx_op_unfold"
external caml_fold :
('a, 'b) ffi_tensor ->
int array ->
int array ->
int array ->
int array ->
int array ->
('a, 'b) ffi_tensor ->
unit = "caml_nx_op_fold_bc" "caml_nx_op_fold"
external caml_threefry :
(int32, Dtype.int32_elt) ffi_tensor ->
(int32, Dtype.int32_elt) ffi_tensor ->
(int32, Dtype.int32_elt) ffi_tensor ->
unit = "caml_nx_threefry"
let view t = t.view
let dtype t = t.dtype
let data t = t.buffer
let context t = t.context
let shape t =
let s = Lazy_view.shape t.view in
match Symbolic_shape.eval s with
| Some arr -> arr
| None -> Error.failed ~op:"shape" ~what:"symbolic shape not evaluable" ()
let strides t =
match Lazy_view.strides t.view with
| Some s -> s
| None -> Error.failed ~op:"strides" ~what:"cannot get strides for view" ()
let offset t =
let off = Lazy_view.offset t.view in
match Symbolic_shape.eval_dim off with
| Some n -> n
| None -> Error.failed ~op:"offset" ~what:"symbolic offset not evaluable" ()
let is_contiguous t = Lazy_view.is_contiguous t.view
let can_get_strides t = Lazy_view.can_get_strides t.view
let to_ffi_tensor t =
if not (can_get_strides t) then
Error.failed ~op:"to_ffi_tensor" ~what:"tensor has non-materializable view"
()
else
{ data = t.buffer; shape = shape t; strides = strides t; offset = offset t }
let create_tensor ctx dtype shape_arr =
let size = Array.fold_left ( * ) 1 shape_arr in
let kind = Dtype.to_bigarray_ext_kind dtype in
let buffer = Array1.create kind c_layout size in
let shape = Symbolic_shape.of_ints shape_arr in
let view = Lazy_view.create shape in
{ context = ctx; dtype; buffer; view }
let materialize t =
let strides_arr = strides t in
let has_broadcast = Array.exists (( = ) 0) strides_arr in
if is_contiguous t && offset t = 0 && not has_broadcast then t
else
let out_shape = shape t in
let out = create_tensor t.context t.dtype out_shape in
let t_ffi = to_ffi_tensor t in
let out_ffi = to_ffi_tensor out in
caml_assign t_ffi out_ffi;
out
let ensure_materializable t =
if not (can_get_strides t) then
materialize t
else
let strides_arr = strides t in
if Array.exists (( = ) 0) strides_arr then
materialize t
else t
let binary_op op_name ffi_op x y =
let x_shape = shape x in
let y_shape = shape y in
if x_shape <> y_shape then
Error.invalid ~op:op_name ~what:"shape mismatch"
~reason:
(Printf.sprintf "x: %s, y: %s"
(Array.to_list x_shape |> List.map string_of_int |> String.concat "x")
(Array.to_list y_shape |> List.map string_of_int |> String.concat "x"))
()
else
let x' = ensure_materializable x in
let y' = ensure_materializable y in
let out = create_tensor x.context x.dtype x_shape in
let x_ffi = to_ffi_tensor x' in
let y_ffi = to_ffi_tensor y' in
let out_ffi = to_ffi_tensor out in
ffi_op x_ffi y_ffi out_ffi;
out
let comparison_op op_name ffi_op x y =
let x_shape = shape x in
let y_shape = shape y in
if x_shape <> y_shape then
Error.invalid ~op:op_name ~what:"shape mismatch"
~reason:
(Printf.sprintf "x: %s, y: %s"
(Array.to_list x_shape |> List.map string_of_int |> String.concat "x")
(Array.to_list y_shape |> List.map string_of_int |> String.concat "x"))
()
else
let x' = ensure_materializable x in
let y' = ensure_materializable y in
let out = create_tensor x.context Dtype.uint8 x_shape in
let x_ffi = to_ffi_tensor x' in
let y_ffi = to_ffi_tensor y' in
let out_ffi = to_ffi_tensor out in
ffi_op x_ffi y_ffi out_ffi;
out
let op_buffer ctx dtype size_in_elements =
let kind = Dtype.to_bigarray_ext_kind dtype in
let buffer = Array1.create kind c_layout size_in_elements in
let shape = Symbolic_shape.of_ints [| size_in_elements |] in
let view = Lazy_view.create shape in
{ context = ctx; dtype; buffer; view }
let op_const_scalar ctx value dtype =
let kind = Dtype.to_bigarray_ext_kind dtype in
let buffer = Array1.create kind c_layout 1 in
Array1.set buffer 0 value;
let shape = Symbolic_shape.of_ints [||] in
let view = Lazy_view.create shape in
{ context = ctx; dtype; buffer; view }
let op_const_array ctx array =
let dtype = Dtype.of_bigarray_ext_kind (Array1.kind array) in
let size = Array1.dim array in
let shape = Symbolic_shape.of_ints [| size |] in
let view = Lazy_view.create shape in
{ context = ctx; dtype; buffer = array; view }
let unary_op _op_name ffi_op x =
let x' = ensure_materializable x in
let x_shape = shape x in
let out = create_tensor x.context x.dtype x_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
ffi_op x_ffi out_ffi;
out
let op_add x y = binary_op "add" caml_add x y
let op_mul x y = binary_op "mul" caml_mul x y
let op_idiv x y = binary_op "idiv" caml_idiv x y
let op_fdiv x y = binary_op "fdiv" caml_fdiv x y
let op_max x y = binary_op "max" caml_max x y
let op_mod x y = binary_op "mod" caml_mod x y
let op_pow x y = binary_op "pow" caml_pow x y
let op_xor x y = binary_op "xor" caml_xor x y
let op_or x y = binary_op "or" caml_or x y
let op_and x y = binary_op "and" caml_and x y
let op_cmplt x y = comparison_op "cmplt" caml_cmplt x y
let op_cmpne x y = comparison_op "cmpne" caml_cmpne x y
let op_neg x = unary_op "neg" caml_neg x
let op_log2 x = unary_op "log2" caml_log2 x
let op_exp2 x = unary_op "exp2" caml_exp2 x
let op_sin x = unary_op "sin" caml_sin x
let op_sqrt x = unary_op "sqrt" caml_sqrt x
let op_recip x = unary_op "recip" caml_recip x
let op_where cond if_true if_false =
let cond_shape = shape cond in
let if_true_shape = shape if_true in
let if_false_shape = shape if_false in
if cond_shape <> if_true_shape || if_true_shape <> if_false_shape then
Error.invalid ~op:"op_where" ~what:"shape mismatch"
~reason:
(Printf.sprintf "cond: %s, if_true: %s, if_false: %s"
(Array.to_list cond_shape |> List.map string_of_int
|> String.concat "x")
(Array.to_list if_true_shape
|> List.map string_of_int |> String.concat "x")
(Array.to_list if_false_shape
|> List.map string_of_int |> String.concat "x"))
()
else
let cond' = ensure_materializable cond in
let if_true' = ensure_materializable if_true in
let if_false' = ensure_materializable if_false in
let out = create_tensor if_true.context if_true.dtype if_true_shape in
let cond_ffi = to_ffi_tensor cond' in
let if_true_ffi = to_ffi_tensor if_true' in
let if_false_ffi = to_ffi_tensor if_false' in
let out_ffi = to_ffi_tensor out in
caml_where cond_ffi if_true_ffi if_false_ffi out_ffi;
out
let reduce_op _op_name ffi_op ~axes ~keepdims x =
let input_shape = shape x in
let ndim = Array.length input_shape in
if ndim = 0 then (
let out = create_tensor x.context x.dtype [||] in
Array1.set out.buffer 0 (Array1.get x.buffer 0);
out)
else
let normalized_axes =
Array.map (fun ax -> if ax < 0 then ax + ndim else ax) axes
in
let output_shape =
if keepdims then
Array.mapi
(fun i dim -> if Array.mem i normalized_axes then 1 else dim)
input_shape
else
let filtered = ref [] in
Array.iteri
(fun i dim ->
if not (Array.mem i normalized_axes) then
filtered := dim :: !filtered)
input_shape;
Array.of_list (List.rev !filtered)
in
let output_shape =
if Array.length output_shape = 0 then [||] else output_shape
in
let x' = ensure_materializable x in
let out = create_tensor x.context x.dtype output_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
ffi_op x_ffi out_ffi normalized_axes keepdims;
out
let op_reduce_sum ~axes ~keepdims x =
reduce_op "reduce_sum" caml_reduce_sum ~axes ~keepdims x
let op_reduce_max ~axes ~keepdims x =
reduce_op "reduce_max" caml_reduce_max ~axes ~keepdims x
let op_reduce_prod ~axes ~keepdims x =
reduce_op "reduce_prod" caml_reduce_prod ~axes ~keepdims x
let op_associative_scan ~axis ~op x =
let x_shape = shape x in
let rank = Array.length x_shape in
if rank = 0 then
Error.invalid ~op:"associative_scan" ~what:"tensor"
~reason:"requires rank >= 1" ()
else
let axis = if axis < 0 then axis + rank else axis in
if axis < 0 || axis >= rank then
Error.invalid ~op:"associative_scan" ~what:"axis"
~reason:(Printf.sprintf "axis %d out of bounds for rank %d" axis rank)
()
else
let x' = ensure_materializable x in
let out = create_tensor x.context x.dtype x_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
let op_tag =
match op with `Sum -> 0 | `Prod -> 1 | `Max -> 2 | `Min -> 3
in
caml_associative_scan x_ffi out_ffi axis op_tag;
out
let op_expand x shape = { x with view = Lazy_view.expand shape x.view }
let op_reshape x shape = { x with view = Lazy_view.reshape shape x.view }
let op_permute x axes = { x with view = Lazy_view.permute axes x.view }
let op_pad x padding fill_value =
let x' = ensure_materializable x in
let in_shape = shape x in
let ndim = Array.length in_shape in
let padding_flat =
Array.init (2 * ndim) (fun i ->
let dim = i / 2 in
if i mod 2 = 0 then fst padding.(dim) else snd padding.(dim))
in
let out_shape =
Array.init ndim (fun i ->
let before, after = padding.(i) in
in_shape.(i) + before + after)
in
let out = create_tensor x.context x.dtype out_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
caml_pad x_ffi padding_flat fill_value out_ffi;
out
let op_shrink x bounds = { x with view = Lazy_view.shrink bounds x.view }
let op_flip x axes = { x with view = Lazy_view.flip axes x.view }
let op_cat tensors axis =
match tensors with
| [] -> Error.failed ~op:"op_cat" ~what:"empty tensor list" ()
| first :: _ ->
let tensors' = List.map ensure_materializable tensors in
let first_shape = shape first in
let ndim = Array.length first_shape in
let norm_axis = if axis < 0 then ndim + axis else axis in
let total_axis_size =
List.fold_left
(fun acc t ->
let s = shape t in
acc + s.(norm_axis))
0 tensors
in
let out_shape =
Array.mapi
(fun i dim -> if i = norm_axis then total_axis_size else dim)
first_shape
in
let out = create_tensor first.context first.dtype out_shape in
let tensors_ffi = List.map to_ffi_tensor tensors' in
let out_ffi = to_ffi_tensor out in
caml_cat tensors_ffi norm_axis out_ffi;
out
let op_cast (type a b c d) (x : (a, b) t) (target_dtype : (c, d) Dtype.t) :
(c, d) t =
let x' = ensure_materializable x in
let x_shape = shape x in
let out = create_tensor x.context target_dtype x_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
caml_cast x_ffi out_ffi;
out
let op_contiguous x =
let strides_arr = strides x in
let has_broadcast = Array.exists (( = ) 0) strides_arr in
if is_contiguous x && offset x = 0 && not has_broadcast then x
else
let x' = ensure_materializable x in
let x_ffi = to_ffi_tensor x' in
let out_ffi = caml_contiguous x_ffi in
let shape_sym = Symbolic_shape.of_ints out_ffi.shape in
let view = Lazy_view.create shape_sym in
{ context = x.context; dtype = x.dtype; buffer = out_ffi.data; view }
let op_copy x =
let x' = ensure_materializable x in
let x_ffi = to_ffi_tensor x' in
let out_ffi = caml_copy x_ffi in
let shape_sym = Symbolic_shape.of_ints out_ffi.shape in
let view = Lazy_view.create shape_sym in
{ context = x.context; dtype = x.dtype; buffer = out_ffi.data; view }
let op_assign dst src =
let src' = ensure_materializable src in
let src_ffi = to_ffi_tensor src' in
let dst_ffi = to_ffi_tensor dst in
caml_assign src_ffi dst_ffi
let op_threefry key counter =
let key' = ensure_materializable key in
let counter' = ensure_materializable counter in
let out_shape = shape counter in
let out = create_tensor counter.context counter.dtype out_shape in
let key_ffi = to_ffi_tensor key' in
let counter_ffi = to_ffi_tensor counter' in
let out_ffi = to_ffi_tensor out in
caml_threefry key_ffi counter_ffi out_ffi;
out
let op_gather data indices axis =
let data' = ensure_materializable data in
let indices' =
if can_get_strides indices then indices else ensure_materializable indices
in
let indices_shape = shape indices in
let out_shape = indices_shape in
let out = create_tensor data.context data.dtype out_shape in
let data_ffi = to_ffi_tensor data' in
let indices_ffi = to_ffi_tensor indices' in
let out_ffi = to_ffi_tensor out in
caml_gather data_ffi indices_ffi out_ffi axis;
out
let op_scatter ?(mode = `Set) ?(unique_indices = false) data_template indices
updates axis =
let template' = ensure_materializable data_template in
let indices' = ensure_materializable indices in
let updates' = ensure_materializable updates in
let out =
if mode = `Set then op_copy data_template
else
create_tensor data_template.context data_template.dtype
(shape data_template)
in
let template_ffi = to_ffi_tensor template' in
let indices_ffi = to_ffi_tensor indices' in
let updates_ffi = to_ffi_tensor updates' in
let out_ffi = to_ffi_tensor out in
let mode_int = match mode with `Set -> 0 | `Add -> 1 in
caml_scatter template_ffi indices_ffi updates_ffi axis out_ffi mode_int
unique_indices;
out
let op_unfold x ~kernel_size ~stride ~dilation ~padding =
let x' = ensure_materializable x in
let in_shape = shape x in
let batch_size = in_shape.(0) in
let in_channels = in_shape.(1) in
let spatial_dims = Array.sub in_shape 2 (Array.length in_shape - 2) in
let padding_flat =
Array.init
(Array.length padding * 2)
(fun i ->
let dim = i / 2 in
if i mod 2 = 0 then fst padding.(dim) else snd padding.(dim))
in
let out_spatial =
Array.init (Array.length spatial_dims) (fun i ->
let pad_before, pad_after = padding.(i) in
let padded = spatial_dims.(i) + pad_before + pad_after in
let kernel_extent = (dilation.(i) * (kernel_size.(i) - 1)) + 1 in
let diff = padded - kernel_extent in
if diff < 0 then
Error.invalid ~op:"unfold"
~what:"kernel size larger than padded input" ()
else (diff / stride.(i)) + 1)
in
let kernel_prod = Array.fold_left ( * ) 1 kernel_size in
let spatial_prod = Array.fold_left ( * ) 1 out_spatial in
let out_shape = [| batch_size; in_channels * kernel_prod; spatial_prod |] in
let out = create_tensor x.context x.dtype out_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
caml_unfold x_ffi kernel_size stride dilation padding_flat out_ffi;
out
let op_fold x ~output_size ~kernel_size ~stride ~dilation ~padding =
let x' = ensure_materializable x in
let in_shape = shape x in
let batch_size = in_shape.(0) in
let kernel_prod = Array.fold_left ( * ) 1 kernel_size in
let channels = in_shape.(1) / kernel_prod in
let padding_flat =
Array.init
(Array.length padding * 2)
(fun i ->
let dim = i / 2 in
if i mod 2 = 0 then fst padding.(dim) else snd padding.(dim))
in
let _ =
Array.init (Array.length output_size) (fun i ->
let pad_before, pad_after = padding.(i) in
let padded = output_size.(i) + pad_before + pad_after in
let kernel_extent = (dilation.(i) * (kernel_size.(i) - 1)) + 1 in
let diff = padded - kernel_extent in
if diff < 0 then
Error.invalid ~op:"fold" ~what:"kernel size larger than padded output"
()
else (diff / stride.(i)) + 1)
in
let out_shape = Array.concat [ [| batch_size; channels |]; output_size ] in
let out = create_tensor x.context x.dtype out_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
caml_fold x_ffi output_size kernel_size stride dilation padding_flat out_ffi;
out
let op_matmul x y =
let x' = ensure_materializable x in
let y' = ensure_materializable y in
let x_shape = shape x in
let y_shape = shape y in
let x_ndim = Array.length x_shape in
let y_ndim = Array.length y_shape in
let out_shape =
if x_ndim = 1 && y_ndim = 1 then [||]
else if x_ndim = 1 then
Array.init (y_ndim - 1) (fun i ->
if i < y_ndim - 2 then y_shape.(i) else y_shape.(y_ndim - 1))
else if y_ndim = 1 then
Array.init (x_ndim - 1) (fun i -> x_shape.(i))
else
let broadcast_ndim = max x_ndim y_ndim in
Array.init broadcast_ndim (fun i ->
let i_from_end = broadcast_ndim - 1 - i in
if i_from_end = 0 then y_shape.(y_ndim - 1)
else if i_from_end = 1 then x_shape.(x_ndim - 2)
else
let x_idx = i - (broadcast_ndim - x_ndim) in
let y_idx = i - (broadcast_ndim - y_ndim) in
if x_idx < 0 && y_idx >= 0 then y_shape.(y_idx)
else if y_idx < 0 && x_idx >= 0 then x_shape.(x_idx)
else max x_shape.(x_idx) y_shape.(y_idx))
in
let out = create_tensor x.context x.dtype out_shape in
let x_ffi = to_ffi_tensor x' in
let y_ffi = to_ffi_tensor y' in
let out_ffi = to_ffi_tensor out in
caml_matmul x_ffi y_ffi out_ffi;
out
let contiguous_strides shape elem_size =
let ndim = Array.length shape in
if ndim = 0 then [||]
else
let strides = Array.make ndim 1 in
for i = ndim - 2 downto 0 do
strides.(i) <- strides.(i + 1) * shape.(i + 1)
done;
Array.map (fun s -> s * elem_size) strides
let op_fft (type a b) (x : (a, b) t) ~axes : (a, b) t =
let x' = materialize x in
let out_shape = shape x' in
let out = create_tensor x.context x.dtype out_shape in
let shape_arr = out_shape in
let elem_size = Dtype.itemsize x.dtype in
let strides_in = contiguous_strides out_shape elem_size in
let strides_out = contiguous_strides out_shape elem_size in
let ndim = Array.length out_shape in
let axes_arr = Array.map (fun ax -> if ax < 0 then ndim + ax else ax) axes in
(match (x.dtype : (a, b) Dtype.t) with
| Dtype.Complex32 ->
Pocketfft.c2c_f32 ~shape:shape_arr ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_arr ~forward:true ~fct:1.0
~data_in:x'.buffer ~data_out:out.buffer ~nthreads:1
| Dtype.Complex64 ->
Pocketfft.c2c_f64 ~shape:shape_arr ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_arr ~forward:true ~fct:1.0
~data_in:x'.buffer ~data_out:out.buffer ~nthreads:1
| _ -> Error.failed ~op:"op_fft" ~what:"unsupported dtype" ());
out
let op_ifft (type a b) (x : (a, b) t) ~axes : (a, b) t =
let x' = materialize x in
let out_shape = shape x' in
let out = create_tensor x.context x.dtype out_shape in
let shape_arr = out_shape in
let elem_size = Dtype.itemsize x.dtype in
let strides_in = contiguous_strides out_shape elem_size in
let strides_out = contiguous_strides out_shape elem_size in
let ndim = Array.length out_shape in
let axes_arr = Array.map (fun ax -> if ax < 0 then ndim + ax else ax) axes in
(match (x.dtype : (a, b) Dtype.t) with
| Dtype.Complex32 ->
Pocketfft.c2c_f32 ~shape:shape_arr ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_arr ~forward:false ~fct:1.0
~data_in:x'.buffer ~data_out:out.buffer ~nthreads:1
| Dtype.Complex64 ->
Pocketfft.c2c_f64 ~shape:shape_arr ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_arr ~forward:false ~fct:1.0
~data_in:x'.buffer ~data_out:out.buffer ~nthreads:1
| _ -> Error.failed ~op:"op_ifft" ~what:"unsupported dtype" ());
out
let op_rfft (type a b c d) (x : (a, b) t) ~(dtype : (c, d) Dtype.t) ~axes :
(c, d) t =
let x' = materialize x in
let in_shape = shape x' in
let out_shape = Array.copy in_shape in
let last_axis = Array.length axes - 1 in
(if last_axis >= 0 then
let axis_idx =
if axes.(last_axis) < 0 then Array.length in_shape + axes.(last_axis)
else axes.(last_axis)
in
out_shape.(axis_idx) <- (in_shape.(axis_idx) / 2) + 1);
let out = create_tensor x.context dtype out_shape in
let strides_in = contiguous_strides in_shape (Dtype.itemsize x.dtype) in
let strides_out = contiguous_strides out_shape (Dtype.itemsize dtype) in
let ndim = Array.length in_shape in
let axes_normalized =
Array.map (fun ax -> if ax < 0 then ndim + ax else ax) axes
in
(match ((x.dtype : (a, b) Dtype.t), (dtype : (c, d) Dtype.t)) with
| Dtype.Float32, Dtype.Complex32 ->
let data_in : (float, Dtype.float32_elt, c_layout) Array1.t = x'.buffer in
let data_out : (Complex.t, Dtype.complex32_elt, c_layout) Array1.t =
out.buffer
in
Pocketfft.r2c_f32 ~shape_in:in_shape ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_normalized ~forward:true ~fct:1.0
~data_in ~data_out ~nthreads:1
| Dtype.Float64, Dtype.Complex64 ->
let data_in : (float, Dtype.float64_elt, c_layout) Array1.t = x'.buffer in
let data_out : (Complex.t, Dtype.complex64_elt, c_layout) Array1.t =
out.buffer
in
Pocketfft.r2c_f64 ~shape_in:in_shape ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_normalized ~forward:true ~fct:1.0
~data_in ~data_out ~nthreads:1
| _ -> Error.failed ~op:"op_rfft" ~what:"unsupported dtype combination" ());
out
let op_irfft (type a b c d) (x : (a, b) t) ~(dtype : (c, d) Dtype.t) ~axes ~s :
(c, d) t =
let x' = materialize x in
let in_shape = shape x' in
let out_shape = Array.copy in_shape in
let last_axis = Array.length axes - 1 in
(if last_axis >= 0 then
let axis_idx =
if axes.(last_axis) < 0 then Array.length in_shape + axes.(last_axis)
else axes.(last_axis)
in
let size =
match s with
| None -> (in_shape.(axis_idx) - 1) * 2
| Some sizes -> sizes.(last_axis)
in
out_shape.(axis_idx) <- size);
let out = create_tensor x.context dtype out_shape in
let strides_in = contiguous_strides in_shape (Dtype.itemsize x.dtype) in
let strides_out = contiguous_strides out_shape (Dtype.itemsize dtype) in
let ndim = Array.length in_shape in
let axes_normalized =
Array.map (fun ax -> if ax < 0 then ndim + ax else ax) axes
in
(match ((x.dtype : (a, b) Dtype.t), (dtype : (c, d) Dtype.t)) with
| Dtype.Complex32, Dtype.Float32 ->
let data_in : (Complex.t, Dtype.complex32_elt, c_layout) Array1.t =
x'.buffer
in
let data_out : (float, Dtype.float32_elt, c_layout) Array1.t =
out.buffer
in
Pocketfft.c2r_f32 ~shape_out:out_shape ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_normalized ~forward:false ~fct:1.0
~data_in ~data_out ~nthreads:1
| Dtype.Complex64, Dtype.Float64 ->
let data_in : (Complex.t, Dtype.complex64_elt, c_layout) Array1.t =
x'.buffer
in
let data_out : (float, Dtype.float64_elt, c_layout) Array1.t =
out.buffer
in
Pocketfft.c2r_f64 ~shape_out:out_shape ~stride_in:strides_in
~stride_out:strides_out ~axes:axes_normalized ~forward:false ~fct:1.0
~data_in ~data_out ~nthreads:1
| _ -> Error.failed ~op:"op_irfft" ~what:"unsupported dtype combination" ());
out
let op_cholesky ~upper x =
let x' = ensure_materializable x in
let out_shape = shape x in
let out = create_tensor x.context x.dtype out_shape in
let x_ffi = to_ffi_tensor x' in
let out_ffi = to_ffi_tensor out in
caml_cholesky x_ffi out_ffi upper;
out
let op_qr ~reduced x =
let x' = ensure_materializable x in
let x_shape = shape x in
let m = x_shape.(Array.length x_shape - 2) in
let n = x_shape.(Array.length x_shape - 1) in
let k = min m n in
let q_shape = Array.copy x_shape in
let r_shape = Array.copy x_shape in
if reduced then (
q_shape.(Array.length q_shape - 1) <- k;
r_shape.(Array.length r_shape - 2) <- k)
else (
q_shape.(Array.length q_shape - 1) <- m;
());
let q = create_tensor x.context x.dtype q_shape in
let r = create_tensor x.context x.dtype r_shape in
let x_ffi = to_ffi_tensor x' in
let q_ffi = to_ffi_tensor q in
let r_ffi = to_ffi_tensor r in
caml_qr x_ffi q_ffi r_ffi reduced;
(q, r)
let op_svd (type a b) ~full_matrices (x : (a, b) t) :
(a, b) t * (float, Dtype.float64_elt) t * (a, b) t =
let x' = ensure_materializable x in
let x_shape = shape x in
let m = x_shape.(Array.length x_shape - 2) in
let n = x_shape.(Array.length x_shape - 1) in
let k = min m n in
let batch_shape = Array.sub x_shape 0 (Array.length x_shape - 2) in
let u_shape =
Array.append batch_shape (if full_matrices then [| m; m |] else [| m; k |])
in
let s_shape = Array.append batch_shape [| k |] in
let vt_shape =
Array.append batch_shape (if full_matrices then [| n; n |] else [| k; n |])
in
let u = create_tensor x.context x.dtype u_shape in
let s = create_tensor x.context Dtype.Float64 s_shape in
let vt = create_tensor x.context x.dtype vt_shape in
let x_ffi = to_ffi_tensor x' in
let u_ffi = to_ffi_tensor u in
let s_ffi = to_ffi_tensor s in
let vt_ffi = to_ffi_tensor vt in
caml_svd x_ffi u_ffi s_ffi vt_ffi full_matrices;
(u, s, vt)
let op_eig (type a b) ~vectors (x : (a, b) t) :
(Complex.t, Dtype.complex64_elt) t
* (Complex.t, Dtype.complex64_elt) t option =
let x' = ensure_materializable x in
let x_shape = shape x in
let n = x_shape.(Array.length x_shape - 1) in
let batch_shape = Array.sub x_shape 0 (Array.length x_shape - 2) in
let vals_shape = Array.append batch_shape [| n |] in
let vecs_shape = x_shape in
let vals = create_tensor x.context Dtype.Complex64 vals_shape in
let vecs =
if vectors then create_tensor x.context Dtype.Complex64 vecs_shape
else
create_tensor x.context Dtype.Complex64 [| 1 |]
in
let x_ffi = to_ffi_tensor x' in
let vals_ffi = to_ffi_tensor vals in
let vecs_ffi = to_ffi_tensor vecs in
caml_eig x_ffi vals_ffi vecs_ffi false vectors;
if vectors then (vals, Some vecs) else (vals, None)
let op_eigh (type a b) ~vectors (x : (a, b) t) :
(float, Dtype.float64_elt) t * (a, b) t option =
let x' = ensure_materializable x in
let x_shape = shape x in
let batch_shape = Array.sub x_shape 0 (Array.length x_shape - 2) in
let n = x_shape.(Array.length x_shape - 1) in
let vals_shape = Array.append batch_shape [| n |] in
let vals = create_tensor x.context Dtype.Float64 vals_shape in
let vecs =
if vectors then create_tensor x.context x.dtype x_shape
else
create_tensor x.context x.dtype [| 1 |]
in
let x_ffi = to_ffi_tensor x' in
let vals_ffi = to_ffi_tensor vals in
let vecs_ffi = to_ffi_tensor vecs in
caml_eig x_ffi vals_ffi vecs_ffi true vectors;
if vectors then (vals, Some vecs) else (vals, None)
let op_triangular_solve ~upper ~transpose ~unit_diag a b =
let a' = ensure_materializable a in
let b_shape = shape b in
let b_ndim = Array.length b_shape in
let b_is_1d = b_ndim = 1 in
let b_expanded, out_shape =
if b_is_1d then
let new_shape = [| b_shape.(0); 1 |] in
let b_reshaped = op_reshape b (Symbolic_shape.of_ints new_shape) in
(b_reshaped, b_shape)
else (b, shape b)
in
let b' = ensure_materializable b_expanded in
let out_shape_expanded = shape b_expanded in
let out_expanded = create_tensor b.context b.dtype out_shape_expanded in
let a_ffi = to_ffi_tensor a' in
let b_ffi = to_ffi_tensor b' in
let out_ffi = to_ffi_tensor out_expanded in
caml_triangular_solve a_ffi b_ffi out_ffi upper transpose unit_diag;
if b_is_1d then op_reshape out_expanded (Symbolic_shape.of_ints out_shape)
else out_expanded
let op_as_strided t new_shape new_strides_in_elements offset_in_elements =
let buffer_size = Array1.dim t.buffer in
let new_shape_arr =
match Symbolic_shape.eval new_shape with
| Some arr -> arr
| None ->
Error.failed ~op:"op_as_strided" ~what:"symbolic shapes not supported"
()
in
let max_element_accessed = ref offset_in_elements in
Array.iteri
(fun i dim ->
if dim > 0 then
max_element_accessed :=
max !max_element_accessed
(offset_in_elements + ((dim - 1) * new_strides_in_elements.(i))))
new_shape_arr;
if !max_element_accessed >= buffer_size then
Error.failed ~op:"op_as_strided"
~what:"view would access out-of-bounds memory" ();
let new_view =
Lazy_view.create_strided new_shape ~strides:new_strides_in_elements
~offset:offset_in_elements
in
{ t with view = new_view }