-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathndarray_php.h
More file actions
2493 lines (2281 loc) · 89.7 KB
/
Copy pathndarray_php.h
File metadata and controls
2493 lines (2281 loc) · 89.7 KB
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
/* NDArray PHP - Auto-generated C header
* Do not edit manually. Generated by cbindgen.
*/
#ifndef NDARRAY_PHP_H
#define NDARRAY_PHP_H
/* Warning: this file is auto-generated by cbindgen. Do not modify. */
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#define SUCCESS 0
#define ERR_GENERIC 1
#define ERR_SHAPE 2
#define ERR_DTYPE 3
#define ERR_ALLOC 4
#define ERR_PANIC 5
#define ERR_INDEX 6
#define ERR_MATH 7
/**
* Opaque pointer type for FFI.
*
* PHP holds this pointer and passes it back to Rust for operations.
* The actual NDArrayWrapper is stored behind this pointer.
*/
typedef struct NdArrayHandle {
uint8_t _private[0];
} NdArrayHandle;
/**
* Metadata describing a view into an array.
*
* This struct bundles all the metadata needed to describe a view - offset, shape, strides, and ndim.
*/
typedef struct ArrayMetadata {
/**
* Offset into the underlying data buffer (in elements, not bytes)
*/
uintptr_t offset;
/**
* Pointer to shape dimensions array
*/
const uintptr_t *shape;
/**
* Pointer to strides array (in elements, not bytes)
*/
const uintptr_t *strides;
/**
* Number of dimensions
*/
uintptr_t ndim;
} ArrayMetadata;
/**
* Add two arrays.
*/
int32_t ndarray_add(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Add a scalar to an array.
*/
int32_t ndarray_add_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Divide two arrays.
*/
int32_t ndarray_div(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Divide an array by a scalar.
*/
int32_t ndarray_div_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise maximum with broadcasting.
*/
int32_t ndarray_maximum(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise maximum with a scalar.
*/
int32_t ndarray_maximum_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *meta,
double scalar,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise minimum with broadcasting.
*/
int32_t ndarray_minimum(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise minimum with a scalar.
*/
int32_t ndarray_minimum_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *meta,
double scalar,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Multiply two arrays.
*/
int32_t ndarray_mul(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Multiply an array by a scalar.
*/
int32_t ndarray_mul_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the remainder of two arrays.
*/
int32_t ndarray_rem(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the remainder of an array by a scalar.
*/
int32_t ndarray_rem_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Subtract two arrays.
*/
int32_t ndarray_sub(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Subtract a scalar from an array.
*/
int32_t ndarray_sub_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Extract the scalar value from a 0-dimensional array or view.
*
* The array must have ndim == 0.
* Writes the value to out_value; the caller must allocate a buffer of at least
* 8 bytes and interpret based on the array's dtype.
*
* For bool: writes 0 or 1 to the first byte.
* For numeric types: writes the native value (up to 8 bytes).
*/
int32_t ndarray_as_scalar(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
void *out_value);
/**
* Create a deep copy of an array view.
*/
int32_t ndarray_copy(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
struct NdArrayHandle **out_handle);
/**
* Create an NDArray from raw data with specified dtype.
*/
int32_t ndarray_create(const void *data,
uintptr_t len,
const uintptr_t *shape,
uintptr_t ndim,
int32_t dtype,
struct NdArrayHandle **out_handle);
/**
* Destroy an NDArray and free its memory.
*/
int32_t ndarray_free(struct NdArrayHandle *handle);
/**
* Get flattened data for an array view with optional offset and length.
*
* # Arguments
* * `handle` - Array handle
* * `meta` - View metadata
* * `start` - Starting element offset (0-indexed)
* * `len` - Number of elements to copy
* * `out_data` - Pointer to output buffer (type must match array dtype)
* * `out_len` - Output: actual number of elements copied
*/
int32_t ndarray_get_data(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
uintptr_t start,
uintptr_t len,
void *out_data,
uintptr_t *out_len);
/**
* Compute the bitwise AND of two arrays.
*/
int32_t ndarray_bitand(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the bitwise AND of an array and a scalar.
*/
int32_t ndarray_bitand_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the bitwise OR of two arrays.
*/
int32_t ndarray_bitor(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the bitwise OR of an array and a scalar.
*/
int32_t ndarray_bitor_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the bitwise XOR of two arrays.
*/
int32_t ndarray_bitxor(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the bitwise XOR of an array by a scalar.
*/
int32_t ndarray_bitxor_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the left shift of two arrays.
*/
int32_t ndarray_left_shift(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the left shift of an array by a scalar.
*/
int32_t ndarray_left_shift_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Compute the right shift of two arrays.
*/
int32_t ndarray_right_shift(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Right shift with scalar.
*/
int32_t ndarray_right_shift_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise equal comparison with broadcasting. Returns Bool array.
*/
int32_t ndarray_eq(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise equal comparison with scalar. Returns Bool array.
*/
int32_t ndarray_eq_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise greater-than comparison with broadcasting. Returns Bool array.
*/
int32_t ndarray_gt(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
int32_t ndarray_gt_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise greater-or-equal comparison with broadcasting. Returns Bool array.
*/
int32_t ndarray_gte(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
int32_t ndarray_gte_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise less-than comparison with broadcasting. Returns Bool array.
*/
int32_t ndarray_lt(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
int32_t ndarray_lt_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise less-or-equal comparison with broadcasting. Returns Bool array.
*/
int32_t ndarray_lte(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
int32_t ndarray_lte_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Element-wise not-equal comparison with broadcasting. Returns Bool array.
*/
int32_t ndarray_ne(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
struct NdArrayHandle **out,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
int32_t ndarray_ne_scalar(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const void *scalar,
uint8_t scalar_dtype,
struct NdArrayHandle **out,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* FFI entry point for einsum (1 or 2 operands, null b for single-op).
*/
int32_t ndarray_einsum(const struct NdArrayHandle *a,
const struct ArrayMetadata *a_meta,
const struct NdArrayHandle *b,
const struct ArrayMetadata *b_meta,
const char *subscripts,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape_ptr,
uintptr_t max_ndim);
/**
* One-dimensional complex FFT along `axis`. Real inputs are promoted to complex.
* `n == 0` keeps the current length along `axis` (optional padding length).
*/
int32_t ndarray_fft(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
int32_t axis,
uintptr_t n,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Inverse complex FFT along `axis`.
*/
int32_t ndarray_ifft(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
int32_t axis,
uintptr_t n,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* N-dimensional complex FFT over `axes` (empty means all axes).
*/
int32_t ndarray_fftn(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const int32_t *axes,
uintptr_t n_axes,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* N-dimensional inverse complex FFT over `axes` (empty means all axes).
*/
int32_t ndarray_ifftn(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const int32_t *axes,
uintptr_t n_axes,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Real DCT along one axis (`dct_type` 1–4).
*/
int32_t ndarray_dct(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
int32_t axis,
uintptr_t n,
uint8_t dct_type,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Inverse DCT along one axis (`dct_type` 1–4, same convention as SciPy `idct`).
*/
int32_t ndarray_idct(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
int32_t axis,
uintptr_t n,
uint8_t dct_type,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* N-dimensional DCT over `axes` (empty = all axes).
*/
int32_t ndarray_dctn(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const int32_t *axes,
uintptr_t n_axes,
uint8_t dct_type,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* N-dimensional inverse DCT over `axes` (empty = all axes).
*/
int32_t ndarray_idctn(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const int32_t *axes,
uintptr_t n_axes,
uint8_t dct_type,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Real-input FFT along `axis`. Output is complex with length `n//2+1` on that axis.
*/
int32_t ndarray_rfft(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
int32_t axis,
uintptr_t n,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Inverse real FFT: complex Hermitian spectrum → real array. `n == 0` infers real length.
*/
int32_t ndarray_irfft(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
int32_t axis,
uintptr_t n,
uint8_t norm,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype_ptr,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Create evenly spaced values within a given interval.
*
* For integer types, uses native arithmetic. For float types, manual calculation.
* Returns error if step is zero.
*/
int32_t ndarray_arange(double start,
double stop,
double step,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create a 2D identity matrix.
*/
int32_t ndarray_eye(uintptr_t n,
uintptr_t m,
intptr_t k,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create an array filled with a specific value.
*/
int32_t ndarray_full(const uintptr_t *shape,
uintptr_t ndim,
const void *value,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create numbers spaced geometrically from start to stop.
*
* Only supports Float32 and Float64 dtypes.
* Returns error if start and stop have different signs or if either is zero.
*/
int32_t ndarray_geomspace(double start,
double stop,
uintptr_t num,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create evenly spaced numbers over a specified interval.
*
* Only supports Float32 and Float64 dtypes.
* The endpoint parameter controls whether stop is included.
*/
int32_t ndarray_linspace(double start,
double stop,
uintptr_t num,
bool endpoint,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create numbers spaced evenly on a log scale.
*
* Only supports Float32 and Float64 dtypes.
* Returns `base.powf(start)` to `base.powf(stop)` with `num` points.
*/
int32_t ndarray_logspace(double start,
double stop,
uintptr_t num,
double base,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create an array of random values sampled from N(mean, std).
*
* Supports Float32 and Float64 only.
*/
int32_t ndarray_normal(double mean,
double std,
const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
bool has_seed,
uint64_t seed,
struct NdArrayHandle **out_handle);
/**
* Create an array filled with ones.
*/
int32_t ndarray_ones(const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Create an array of random values sampled from N(0, 1).
*
* Supports Float32 and Float64 only.
*/
int32_t ndarray_randn(const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
bool has_seed,
uint64_t seed,
struct NdArrayHandle **out_handle);
/**
* Create an array of random values sampled uniformly from [0, 1).
*
* Supports Float32 and Float64 only.
*/
int32_t ndarray_random(const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
bool has_seed,
uint64_t seed,
struct NdArrayHandle **out_handle);
/**
* Create an array of random integers sampled uniformly from [low, high).
*
* Supports signed and unsigned integer dtypes only.
*/
int32_t ndarray_random_int(int64_t low,
int64_t high,
const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
bool has_seed,
uint64_t seed,
struct NdArrayHandle **out_handle);
/**
* Create an array of random values sampled uniformly from [low, high).
*
* Supports Float32 and Float64 only.
*/
int32_t ndarray_uniform(double low,
double high,
const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
bool has_seed,
uint64_t seed,
struct NdArrayHandle **out_handle);
/**
* Create an array filled with zeros.
*/
int32_t ndarray_zeros(const uintptr_t *shape,
uintptr_t ndim,
uint8_t dtype,
struct NdArrayHandle **out_handle);
/**
* Assign values from source view to destination view.
*
* # Arguments
* * `dst` - Destination array handle
* * `dst_meta` - Destination view metadata
* * `src` - Source array handle
* * `src_meta` - Source view metadata
*/
int32_t ndarray_assign(const struct NdArrayHandle *dst,
const struct ArrayMetadata *dst_meta,
const struct NdArrayHandle *src,
const struct ArrayMetadata *src_meta);
/**
* Fill a slice with a value.
*
* # Arguments
* * `handle` - Array handle
* * `meta` - View metadata
* * `value` - Pointer to the fill value (type depends on array dtype)
*/
int32_t ndarray_fill(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const void *value);
/**
* Get an element at the given flat index.
*
* # Arguments
* * `handle` - Array handle
* * `flat_index` - Flat index of the element
* * `out_value` - Pointer to store the value (type depends on array dtype)
*
* The caller must ensure `out_value` points to the correct type for the array's dtype.
*/
int32_t ndarray_get_element(const struct NdArrayHandle *handle,
uintptr_t flat_index,
void *out_value);
/**
* Put values by flattened logical indices.
*/
int32_t ndarray_put(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const struct NdArrayHandle *indices_handle,
const struct ArrayMetadata *indices_meta,
const void *values,
uintptr_t values_len,
double scalar_value,
bool has_scalar,
struct NdArrayHandle **out_handle);
/**
* Scatter values along an axis and return a mutated copy.
*/
int32_t ndarray_put_along_axis(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const struct NdArrayHandle *indices_handle,
const struct ArrayMetadata *indices_meta,
int32_t axis,
const void *values,
uintptr_t values_len,
double scalar_value,
bool has_scalar,
struct NdArrayHandle **out_handle);
/**
* Add updates into flattened indices and return a mutated copy.
*/
int32_t ndarray_scatter_add_flat(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const struct NdArrayHandle *indices_handle,
const struct ArrayMetadata *indices_meta,
const void *updates,
uintptr_t updates_len,
double scalar_update,
bool has_scalar,
struct NdArrayHandle **out_handle);
/**
* Set an element at the given flat index.
*
* # Arguments
* * `handle` - Array handle
* * `flat_index` - Flat index of the element
* * `value` - Pointer to the value (type depends on array dtype)
*
* The caller must ensure `value` points to the correct type for the array's dtype.
*/
int32_t ndarray_set_element(struct NdArrayHandle *handle, uintptr_t flat_index, const void *value);
/**
* Gather values by flattened logical indices.
*/
int32_t ndarray_take(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const struct NdArrayHandle *indices_handle,
const struct ArrayMetadata *indices_meta,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**
* Take slices along an axis.
*
* This selects entire slices along the specified axis according to indices.
*/
int32_t ndarray_take_axis(const struct NdArrayHandle *handle,
const struct ArrayMetadata *meta,
const struct NdArrayHandle *indices_handle,
const struct ArrayMetadata *indices_meta,
int32_t axis,
struct NdArrayHandle **out_handle,
uint8_t *out_dtype,
uintptr_t *out_ndim,
uintptr_t *out_shape,
uintptr_t max_ndim);
/**