openvm-cuda-backend 2.0.0

OpenVM CUDA prover backend for the SWIRL proof system
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
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
use openvm_cuda_common::stream::cudaStream_t;

use super::*;
use crate::{
    monomial::{InteractionMonomialTerm, LambdaTerm, MonomialHeader, PackedVar},
    poly::SqrtEqLayers,
};

#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct MainMatrixPtrs<T> {
    pub data: *const T,
    pub air_width: u32,
}

// Types for batch MLE:
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct BlockCtx {
    pub local_block_idx_x: u32,
    /// Caution: this refers to the index within buffer of `ZerocheckCtx` or `LogupCtx`. It is
    /// hence a "local" AIR index and not the global AIR index within the proving key.
    pub air_idx: u32,
}

/// Per-AIR context for batched monomial evaluation.
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct MonomialAirCtx {
    pub d_headers: *const MonomialHeader,
    pub d_variables: *const PackedVar,
    pub d_lambda_combinations: *const EF, // Precomputed per-monomial
    pub num_monomials: u32,
    pub eval_ctx: EvalCoreCtx,
    pub d_eq_xi: *const EF,
    pub num_y: u32,
}

#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct EvalCoreCtx {
    pub d_selectors: *const EF,
    pub d_preprocessed: MainMatrixPtrs<EF>,
    pub d_main: *const MainMatrixPtrs<EF>,
    pub d_public: *const F,
}

#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct ZerocheckCtx {
    pub eval_ctx: EvalCoreCtx,
    pub d_intermediates: *mut EF,
    pub num_y: u32,
    pub d_eq_xi: *const EF,
    pub d_rules: *const std::ffi::c_void,
    pub rules_len: usize,
    pub d_used_nodes: *const usize,
    pub used_nodes_len: usize,
    pub buffer_size: u32,
}

#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct LogupCtx {
    pub eval_ctx: EvalCoreCtx,
    pub d_intermediates: *mut EF,
    pub num_y: u32,
    pub d_eq_xi: *const EF,
    pub d_challenges: *const EF,
    pub d_eq_3bs: *const EF,
    pub d_rules: *const std::ffi::c_void,
    pub rules_len: usize,
    pub d_used_nodes: *const usize,
    pub d_pair_idxs: *const u32,
    pub used_nodes_len: usize,
    pub buffer_size: u32,
}

/// Common per-AIR context for batched logup monomial evaluation.
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct LogupMonomialCommonCtx {
    pub eval_ctx: EvalCoreCtx,
    pub d_eq_xi: *const EF,
    pub bus_term_sum: EF, // Precomputed sum_i(beta[message_len_i] * (bus_idx[i]+1) * eq_3bs[i])
    pub num_y: u32,
    pub mono_blocks: u32,
}

/// Per-AIR context for batched logup monomial evaluation (numerator or denominator).
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct LogupMonomialCtx {
    pub d_headers: *const MonomialHeader,
    pub d_variables: *const PackedVar,
    pub d_combinations: *const EF,
    pub num_monomials: u32,
}

/// Per-AIR context for GKR input evaluation. Dispatched via a flat `BlockCtx` block list:
/// each block reads its `air_idx` and `local_block_idx_x` from the `BlockCtx` table and
/// then loads this struct for the AIR's pointers + sizing.
///
/// `task_stride` is the per-AIR thread count = `num_blocks_x * THREADS_PER_BLOCK`. It also
/// serves as the column stride for `d_intermediates`, which must hold at least
/// `task_stride * buffer_size` `EF` elements.
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct GkrInputCtx {
    pub d_fracs: *mut Frac<EF>,
    pub d_preprocessed: *const F,
    pub d_main: *const u64,
    pub d_public_values: *const F,
    pub d_challenges: *const EF,
    pub d_intermediates: *mut EF,
    pub d_rules: *const std::ffi::c_void,
    pub d_used_nodes: *const usize,
    pub d_pair_idxs: *const u32,
    pub used_nodes_len: usize,
    pub height: u32,
    pub task_stride: u32,
    pub num_rows_per_tile: u32,
}

// end of types for batch MLE

extern "C" {
    // gkr.cu
    fn _frac_build_tree_layer(
        layer: *mut Frac<EF>,
        layer_size: usize,
        real_len: usize,
        logical_len: usize,
        revert: bool,
        alpha: EF,
        apply_alpha: bool,
        stream: cudaStream_t,
    ) -> i32;

    /// Fused two-layer tree build. Applies layers i and i+1 in one kernel pass,
    /// keeping intermediate right-half nodes for revert operations.
    /// `half_i1` = N >> (i+2), where i is the first of the two layers.
    fn _frac_build_tree_two_layers(
        layer: *mut Frac<EF>,
        half_i1: usize,
        real_len: usize,
        logical_len: usize,
        alpha: EF,
        stream: cudaStream_t,
    ) -> i32;

    pub fn _frac_compute_round_temp_buffer_size(stride: u32) -> u32;

    fn _frac_compute_round(
        eq_xi_low: *const EF,
        eq_xi_high: *const EF,
        pq_buffer: *const Frac<EF>,
        num_x: usize,
        eq_low_cap: usize,
        lambda: EF,
        out_device: *mut EF,
        tmp_block_sums: *mut EF,
        stream: cudaStream_t,
    ) -> i32;

    /// Fused compute round + tree layer revert. Combines frac_build_tree_layer(revert=true)
    /// with compute_round for the first inner round. Modifies layer in-place for revert.
    fn _frac_compute_round_and_revert(
        eq_xi_low: *const EF,
        eq_xi_high: *const EF,
        layer: *mut Frac<EF>,
        num_x: usize,
        real_len: usize,
        logical_len: usize,
        eq_low_cap: usize,
        lambda: EF,
        alpha: EF,
        out_device: *mut EF,
        tmp_block_sums: *mut EF,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_fold_fpext_columns(
        src: *const Frac<EF>,
        dst: *mut Frac<EF>,
        size: usize,
        real_len: usize,
        logical_len: usize,
        r: EF,
        alpha: EF,
        stream: cudaStream_t,
    ) -> i32;

    /// Fused compute round + fold (out-of-place). Reads from pre-fold src_pq_buffer (size
    /// src_pq_size), computes sumcheck sums, and writes folded output to dst_pq_buffer (size
    /// src_pq_size/2). IMPORTANT: src_pq_buffer and dst_pq_buffer must NOT alias.
    fn _frac_compute_round_and_fold(
        eq_xi_low: *const EF,
        eq_xi_high: *const EF,
        src_pq_buffer: *const Frac<EF>,
        dst_pq_buffer: *mut Frac<EF>,
        src_pq_size: usize,
        real_len: usize,
        logical_len: usize,
        eq_low_cap: usize,
        lambda: EF,
        r_prev: EF,
        alpha: EF,
        out_device: *mut EF,
        tmp_block_sums: *mut EF,
        stream: cudaStream_t,
    ) -> i32;

    /// Fused compute round + fold (in-place). Reads from pre-fold pq_buffer (size src_pq_size),
    /// computes sumcheck sums, and writes folded output to the same buffer (first src_pq_size/2
    /// elements).
    fn _frac_compute_round_and_fold_inplace(
        eq_xi_low: *const EF,
        eq_xi_high: *const EF,
        pq_buffer: *mut Frac<EF>,
        src_pq_size: usize,
        real_len: usize,
        logical_len: usize,
        dst_real_len: usize,
        dst_logical_len: usize,
        eq_low_cap: usize,
        lambda: EF,
        r_prev: EF,
        alpha: EF,
        out_device: *mut EF,
        tmp_block_sums: *mut EF,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_precompute_m_build(
        pq: *const Frac<EF>,
        real_len: usize,
        logical_len: usize,
        rem_n: usize,
        w: usize,
        lambda: EF,
        r_prev: EF,
        alpha: EF,
        inline_fold: bool,
        eq_tail_low: *const EF,
        eq_tail_high: *const EF,
        eq_tail_low_cap: usize,
        tail_tile: usize,
        partial_out: *mut EF,
        partial_len: usize,
        m_total: *mut EF,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_precompute_m_eval_round(
        m_total: *const EF,
        w: usize,
        t: usize,
        eq_r_prefix: *const EF,
        eq_suffix: *const EF,
        out: *mut EF,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_multifold(
        src: *const Frac<EF>,
        dst: *mut Frac<EF>,
        real_len: usize,
        logical_len: usize,
        rem_n: usize,
        w: usize,
        alpha: EF,
        eq_r_window: *const EF,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_add_alpha(
        data: *mut std::ffi::c_void,
        len: usize,
        alpha: EF,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_vector_scalar_multiply_ext_fp(
        frac_vec: *mut Frac<EF>,
        scalar: F,
        length: u32,
        stream: cudaStream_t,
    ) -> i32;

    // utils.cu
    fn _fold_ple_from_evals(
        input_matrix: *const F,
        output_matrix: *mut EF,
        omega_skip_pows: *const F,
        inv_lagrange_denoms: *const EF,
        height: u32,
        width: u32,
        l_skip: u32,
        new_height: u32,
        rotate: bool,
        stream: cudaStream_t,
    ) -> i32;

    fn _interpolate_columns(
        interpolated: *mut EF,
        columns: *const *const EF,
        s_deg: usize,
        num_y: usize,
        num_columns: usize,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_matrix_vertically_repeat(
        out: *mut Frac<EF>,
        input: *const Frac<EF>,
        width: u32,
        lifted_height: u32,
        height: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _frac_matrix_vertically_repeat_ext(
        out_numerators: *mut EF,
        out_denominators: *mut EF,
        in_numerators: *const EF,
        in_denominators: *const EF,
        width: u32,
        lifted_height: u32,
        height: u32,
        stream: cudaStream_t,
    ) -> i32;

    // gkr_input.cu
    fn _logup_gkr_input_eval(
        d_block_ctxs: *const BlockCtx,
        d_ctxs: *const GkrInputCtx,
        num_blocks: u32,
        threads_per_block: u32,
        stream: cudaStream_t,
    ) -> i32;

    // logup_round0.cu
    pub fn _logup_r0_temp_sums_buffer_size(
        buffer_size: u32,
        skip_domain: u32,
        num_x: u32,
        num_cosets: u32,
        max_temp_bytes: usize,
    ) -> usize;

    pub fn _logup_r0_intermediates_buffer_size(
        buffer_size: u32,
        skip_domain: u32,
        num_x: u32,
        num_cosets: u32,
        max_temp_bytes: usize,
    ) -> usize;

    fn _logup_bary_eval_interactions_round0(
        tmp_sums_buffer: *mut Frac<EF>,
        output: *mut Frac<EF>,
        selectors_cube: *const F,
        preprocessed: *const F,
        main_parts: *const *const F,
        eq_cube: *const EF,
        public_values: *const F,
        numer_weights: *const EF,
        denom_weights: *const EF,
        denom_sum_init: EF,
        d_rules: *const std::ffi::c_void,
        rules_len: usize,
        buffer_size: u32,
        d_intermediates: *mut F,
        skip_domain: u32,
        num_x: u32,
        height: u32,
        num_cosets: u32,
        g_shift: F,
        max_temp_bytes: usize,
        stream: cudaStream_t,
    ) -> i32;

    // zerocheck_round0.cu
    pub fn _zerocheck_r0_temp_sums_buffer_size(
        buffer_size: u32,
        skip_domain: u32,
        num_x: u32,
        num_cosets: u32,
        max_temp_bytes: usize,
    ) -> usize;

    pub fn _zerocheck_r0_intermediates_buffer_size(
        buffer_size: u32,
        skip_domain: u32,
        num_x: u32,
        num_cosets: u32,
        max_temp_bytes: usize,
    ) -> usize;

    fn _zerocheck_ntt_eval_constraints(
        tmp_sums_buffer: *mut EF,
        output: *mut EF,
        selectors_cube: *const F,
        preprocessed: *const F,
        main_parts: *const *const F,
        eq_cube: *const EF,
        d_lambda_pows: *const EF,
        public_values: *const F,
        d_rules: *const std::ffi::c_void,
        rules_len: usize,
        d_used_nodes: *const usize,
        used_nodes_len: usize,
        lambda_len: usize,
        buffer_size: u32,
        d_intermediates: *mut F,
        skip_domain: u32,
        num_x: u32,
        height: u32,
        num_cosets: u32,
        g_shift: F,
        max_temp_bytes: usize,
        stream: cudaStream_t,
    ) -> i32;

    fn _fold_selectors_round0(
        out: *mut EF,
        input: *const F,
        is_first: EF,
        is_last: EF,
        num_x: u32,
        stream: cudaStream_t,
    ) -> i32;

    // mle.cu
    pub fn _zerocheck_mle_temp_sums_buffer_size(num_x: u32, num_y: u32) -> usize;

    pub fn _zerocheck_mle_intermediates_buffer_size(
        buffer_size: u32,
        num_x: u32,
        num_y: u32,
    ) -> usize;

    fn _zerocheck_eval_mle(
        tmp_sums_buffer: *mut EF,
        output: *mut EF,
        eq_xi: *const EF,
        selectors: *const EF,
        preprocessed: MainMatrixPtrs<EF>,
        main: *const MainMatrixPtrs<EF>,
        lambda_pows: *const EF,
        public_values: *const F,
        rules: *const std::ffi::c_void,
        rules_len: usize,
        used_nodes: *const usize,
        used_nodes_len: usize,
        lambda_len: usize,
        buffer_size: u32,
        intermediates: *mut EF,
        num_y: u32,
        num_x: u32,
        stream: cudaStream_t,
    ) -> i32;

    pub fn _logup_mle_temp_sums_buffer_size(num_x: u32, num_y: u32) -> usize;
    pub fn _logup_mle_intermediates_buffer_size(buffer_size: u32, num_x: u32, num_y: u32) -> usize;

    fn _logup_eval_mle(
        tmp_sums_buffer: *mut Frac<EF>,
        output: *mut Frac<EF>,
        eq_xi: *const EF,
        selectors: *const EF,
        preprocessed: MainMatrixPtrs<EF>,
        main: *const MainMatrixPtrs<EF>,
        challenges: *const EF,
        eq_3bs: *const EF,
        public_values: *const F,
        rules: *const std::ffi::c_void,
        used_nodes: *const usize,
        pair_idxs: *const u32,
        used_nodes_len: usize,
        buffer_size: u32,
        intermediates: *mut EF,
        num_y: u32,
        num_x: u32,
        stream: cudaStream_t,
    ) -> i32;

    // batch_mle.cu (batch kernels always use global intermediates when buffer_size > 0)
    pub fn _zerocheck_batch_mle_intermediates_buffer_size(
        buffer_size: u32,
        num_x: u32,
        num_y: u32,
    ) -> usize;

    pub fn _logup_batch_mle_intermediates_buffer_size(
        buffer_size: u32,
        num_x: u32,
        num_y: u32,
    ) -> usize;

    fn _zerocheck_batch_eval_mle(
        tmp_sums_buffer: *mut EF,
        output: *mut EF,
        block_ctxs: *const BlockCtx,
        zc_ctxs: *const ZerocheckCtx,
        air_block_offsets: *const u32,
        lambda_pows: *const EF,
        lambda_len: usize,
        num_blocks: u32,
        num_x: u32,
        num_airs: u32,
        threads_per_block: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _logup_batch_eval_mle(
        tmp_sums_buffer: *mut Frac<EF>,
        output: *mut Frac<EF>,
        block_ctxs: *const BlockCtx,
        logup_ctxs: *const LogupCtx,
        air_block_offsets: *const u32,
        num_blocks: u32,
        num_x: u32,
        num_airs: u32,
        threads_per_block: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _zerocheck_monomial_batched(
        tmp_sums: *mut EF,
        output: *mut EF,
        block_ctxs: *const BlockCtx,
        air_ctxs: *const MonomialAirCtx,
        air_block_offsets: *const u32,
        num_blocks: u32,
        num_x: u32,
        num_airs: u32,
        threads_per_block: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _zerocheck_monomial_par_y_batched(
        tmp_sums: *mut EF,
        output: *mut EF,
        block_ctxs: *const BlockCtx,
        air_ctxs: *const MonomialAirCtx,
        air_block_offsets: *const u32,
        num_blocks: u32,
        num_x: u32,
        num_airs: u32,
        chunk_size: u32,
        threads_per_block: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _precompute_lambda_combinations(
        out: *mut EF,
        headers: *const MonomialHeader,
        lambda_terms: *const LambdaTerm<F>,
        lambda_pows: *const EF,
        num_monomials: u32,
        stream: cudaStream_t,
    ) -> i32;

    // Logup monomial kernels
    fn _precompute_logup_numer_combinations(
        out: *mut EF,
        headers: *const MonomialHeader,
        terms: *const InteractionMonomialTerm<F>,
        eq_3bs: *const EF,
        num_monomials: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _precompute_logup_denom_combinations(
        out: *mut EF,
        headers: *const MonomialHeader,
        terms: *const InteractionMonomialTerm<F>,
        beta_pows: *const EF,
        eq_3bs: *const EF,
        num_monomials: u32,
        stream: cudaStream_t,
    ) -> i32;

    fn _logup_monomial_batched(
        tmp_sums: *mut Frac<EF>,
        output: *mut Frac<EF>,
        block_ctxs: *const BlockCtx,
        common_ctxs: *const LogupMonomialCommonCtx,
        numer_ctxs: *const LogupMonomialCtx,
        denom_ctxs: *const LogupMonomialCtx,
        air_block_offsets: *const u32,
        num_blocks: u32,
        num_x: u32,
        num_airs: u32,
        threads_per_block: u32,
        stream: cudaStream_t,
    ) -> i32;
}

pub unsafe fn interpolate_columns_gpu(
    interpolated: &DeviceBuffer<EF>,
    columns: &DeviceBuffer<*const EF>,
    s_deg: usize,
    num_y: usize,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_interpolate_columns(
        interpolated.as_mut_ptr(),
        columns.as_ptr(),
        s_deg,
        num_y,
        columns.len(),
        stream,
    ))
}

pub unsafe fn frac_build_tree_layer(
    layer: &mut DeviceBuffer<Frac<EF>>,
    layer_size: usize,
    logical_len: usize,
    revert: bool,
    alpha: EF,
    apply_alpha: bool,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(layer.len() >= layer_size || layer_size == logical_len);
    CudaError::from_result(_frac_build_tree_layer(
        layer.as_mut_ptr(),
        layer_size,
        layer.len(),
        logical_len,
        revert,
        alpha,
        apply_alpha,
        stream,
    ))
}

/// Fused two-layer tree build kernel.
/// `half_i1` = N >> (i+2), where i is the first of the two layers being fused.
pub unsafe fn frac_build_tree_two_layers(
    layer: &mut DeviceBuffer<Frac<EF>>,
    half_i1: usize,
    logical_len: usize,
    alpha: EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_frac_build_tree_two_layers(
        layer.as_mut_ptr(),
        half_i1,
        layer.len(),
        logical_len,
        alpha,
        stream,
    ))
}

// `eq_xi` will not store evaluations for the first hypercube coordinate because the prover factors
// out the first eq term.
#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_compute_round(
    eq_xi: &SqrtEqLayers,
    pq_buffer: &DeviceBuffer<Frac<EF>>,
    num_x: usize,
    lambda: EF,
    out_device: &mut DeviceBuffer<EF>,
    tmp_block_sums: &mut DeviceBuffer<EF>,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    let low_n = eq_xi.low_n();
    let high_n = eq_xi.high_n();
    debug_assert_eq!(2 << (low_n + high_n), num_x);
    debug_assert!(pq_buffer.len() >= 2 * num_x);
    #[cfg(debug_assertions)]
    {
        let len = tmp_block_sums.len();
        let required = _frac_compute_round_temp_buffer_size(num_x.try_into().unwrap());
        assert!(
            len >= required as usize,
            "tmp_block_sums len={len} < required={required}"
        );
    }
    CudaError::from_result(_frac_compute_round(
        eq_xi.low.get_ptr(low_n),
        eq_xi.high.get_ptr(high_n),
        pq_buffer.as_ptr(),
        num_x,
        1 << low_n,
        lambda,
        out_device.as_mut_ptr(),
        tmp_block_sums.as_mut_ptr(),
        stream,
    ))
}

/// Fused compute round + tree layer revert kernel.
///
/// Combines `frac_build_tree_layer(revert=true)` with `compute_round` for the first inner round.
/// The revert operation modifies `layer` in-place: `layer[i] = layer[i] - layer[i + half]` for `i <
/// half`.
///
/// This eliminates one kernel launch per outer round.
#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_compute_round_and_revert(
    eq_xi: &SqrtEqLayers,
    layer: &mut DeviceBuffer<Frac<EF>>,
    num_x: usize,
    logical_len: usize,
    lambda: EF,
    alpha: EF,
    out_device: &mut DeviceBuffer<EF>,
    tmp_block_sums: &mut DeviceBuffer<EF>,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    let low_n = eq_xi.low_n();
    let high_n = eq_xi.high_n();
    debug_assert_eq!(2 << (low_n + high_n), num_x);
    #[cfg(debug_assertions)]
    {
        let len = tmp_block_sums.len();
        let required = _frac_compute_round_temp_buffer_size(num_x.try_into().unwrap());
        assert!(
            len >= required as usize,
            "tmp_block_sums len={len} < required={required}"
        );
        assert!(
            layer.len() >= 2 * num_x || 2 * num_x == logical_len,
            "layer too small for pq_size"
        );
    }
    CudaError::from_result(_frac_compute_round_and_revert(
        eq_xi.low.get_ptr(low_n),
        eq_xi.high.get_ptr(high_n),
        layer.as_mut_ptr(),
        num_x,
        layer.len(),
        logical_len,
        1 << low_n,
        lambda,
        alpha,
        out_device.as_mut_ptr(),
        tmp_block_sums.as_mut_ptr(),
        stream,
    ))
}

/// Folds `Frac<EF>` buffer. Pairs (idx, idx+quarter) and (idx+half, idx+3*quarter),
/// writes results to dst[idx] and dst[idx+quarter]. Output size is `size / 2`.
/// Dense folds are safe for src == dst because each thread handles disjoint indices.
/// Compact virtual folds must use an out-of-place destination because virtual reads can
/// recover source values from physical slots in the output range.
#[allow(clippy::too_many_arguments)]
pub unsafe fn fold_ef_frac_columns(
    src: &DeviceBuffer<Frac<EF>>,
    dst: &mut DeviceBuffer<Frac<EF>>,
    size: usize,
    real_len: usize,
    logical_len: usize,
    r: EF,
    alpha: EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(
        src.len() >= real_len,
        "compact buffer must hold at least real_len entries"
    );
    debug_assert!(real_len <= logical_len);
    debug_assert!(dst.len() >= size / 2);
    CudaError::from_result(_frac_fold_fpext_columns(
        src.as_ptr(),
        dst.as_mut_ptr(),
        size,
        real_len,
        logical_len,
        r,
        alpha,
        stream,
    ))
}

/// In-place fold. See [`fold_ef_frac_columns`] for details.
pub unsafe fn fold_ef_frac_columns_inplace(
    buffer: &mut DeviceBuffer<Frac<EF>>,
    size: usize,
    real_len: usize,
    logical_len: usize,
    r: EF,
    alpha: EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(
        buffer.len() >= real_len,
        "compact buffer must hold at least real_len entries"
    );
    debug_assert!(real_len <= logical_len);
    debug_assert_eq!(
        real_len, logical_len,
        "virtual compact folds must use an out-of-place destination"
    );
    let ptr = buffer.as_mut_ptr();
    CudaError::from_result(_frac_fold_fpext_columns(
        ptr,
        ptr,
        size,
        real_len,
        logical_len,
        r,
        alpha,
        stream,
    ))
}

/// Fused compute round + fold kernel.
///
/// Reads from pre-fold `src_pq_buffer` (size `src_pq_size`), performs fold-on-the-fly using
/// `r_prev`, computes s' polynomial evaluations (degree 2), and writes folded output to
/// `dst_pq_buffer` (size `src_pq_size/2`).
///
/// This fuses the fold operation into the next round's compute, eliminating one kernel launch per
/// inner round and reducing memory traffic.
///
/// The eq_xi layers should have max_n = log2(src_pq_size / 4) = log2(post-fold num_x).
#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_compute_round_and_fold(
    eq_xi: &SqrtEqLayers,
    src_pq_buffer: &DeviceBuffer<Frac<EF>>,
    dst_pq_buffer: &mut DeviceBuffer<Frac<EF>>,
    src_pq_size: usize,
    real_len: usize,
    logical_len: usize,
    lambda: EF,
    r_prev: EF,
    alpha: EF,
    out_device: &mut DeviceBuffer<EF>,
    tmp_block_sums: &mut DeviceBuffer<EF>,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    let low_n = eq_xi.low_n();
    let high_n = eq_xi.high_n();
    // Post-fold: num_x = src_pq_size / 4
    let num_x = src_pq_size >> 2;
    debug_assert_eq!(2 << (low_n + high_n), num_x);
    #[cfg(debug_assertions)]
    {
        assert!(src_pq_size > 2, "src_pq_size must be > 2");
        let pq_size = src_pq_size >> 1;
        assert!(num_x > 0, "num_x must be > 0");
        assert!(
            src_pq_buffer.len() >= src_pq_size || src_pq_size == logical_len,
            "src_pq_buffer too small: {} < {}",
            src_pq_buffer.len(),
            src_pq_size
        );
        assert!(
            dst_pq_buffer.len() >= pq_size,
            "dst_pq_buffer too small: {} < {}",
            dst_pq_buffer.len(),
            pq_size
        );
        let len = tmp_block_sums.len();
        let required = _frac_compute_round_temp_buffer_size(num_x as u32);
        assert!(
            len >= required as usize,
            "tmp_block_sums len={len} < required={required}"
        );
    }
    CudaError::from_result(_frac_compute_round_and_fold(
        eq_xi.low.get_ptr(low_n),
        eq_xi.high.get_ptr(high_n),
        src_pq_buffer.as_ptr(),
        dst_pq_buffer.as_mut_ptr(),
        src_pq_size,
        real_len,
        logical_len,
        1 << low_n,
        lambda,
        r_prev,
        alpha,
        out_device.as_mut_ptr(),
        tmp_block_sums.as_mut_ptr(),
        stream,
    ))
}

/// In-place fused compute round + fold kernel. See [`frac_compute_round_and_fold`] for details.
///
/// Uses a dedicated in-place kernel that doesn't have `__restrict__` on the pq pointer,
/// avoiding undefined behavior from aliased restrict pointers.
///
/// **IN-PLACE SAFETY:** Each thread writes only to indices it reads from in the first half of the
/// buffer, so there are no cross-thread conflicts. The second half is read-only.
#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_compute_round_and_fold_inplace(
    eq_xi: &SqrtEqLayers,
    pq_buffer: &mut DeviceBuffer<Frac<EF>>,
    src_pq_size: usize,
    real_len: usize,
    logical_len: usize,
    dst_real_len: usize,
    dst_logical_len: usize,
    lambda: EF,
    r_prev: EF,
    alpha: EF,
    out_device: &mut DeviceBuffer<EF>,
    tmp_block_sums: &mut DeviceBuffer<EF>,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    let low_n = eq_xi.low_n();
    let high_n = eq_xi.high_n();
    // Post-fold: num_x = src_pq_size / 4
    let num_x = src_pq_size >> 2;
    debug_assert_eq!(2 << (low_n + high_n), num_x);
    #[cfg(debug_assertions)]
    {
        assert!(src_pq_size > 2, "src_pq_size must be > 2");
        assert!(num_x > 0, "num_x must be > 0");
        assert!(
            pq_buffer.len() >= src_pq_size || src_pq_size == logical_len,
            "pq_buffer too small: {} < {}",
            pq_buffer.len(),
            src_pq_size
        );
        let len = tmp_block_sums.len();
        let required = _frac_compute_round_temp_buffer_size(num_x as u32);
        assert!(
            len >= required as usize,
            "tmp_block_sums len={len} < required={required}"
        );
    }
    CudaError::from_result(_frac_compute_round_and_fold_inplace(
        eq_xi.low.get_ptr(low_n),
        eq_xi.high.get_ptr(high_n),
        pq_buffer.as_mut_ptr(),
        src_pq_size,
        real_len,
        logical_len,
        dst_real_len,
        dst_logical_len,
        1 << low_n,
        lambda,
        r_prev,
        alpha,
        out_device.as_mut_ptr(),
        tmp_block_sums.as_mut_ptr(),
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_precompute_m_build_raw(
    pq: *const Frac<EF>,
    real_len: usize,
    logical_len: usize,
    rem_n: usize,
    w: usize,
    lambda: EF,
    r_prev: EF,
    alpha: EF,
    inline_fold: bool,
    eq_tail_low: *const EF,
    eq_tail_high: *const EF,
    eq_tail_low_cap: usize,
    tail_tile: usize,
    partial_out: *mut EF,
    partial_len: usize,
    m_total: *mut EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(rem_n > 0);
    debug_assert!(w > 0 && w <= rem_n);
    debug_assert!(eq_tail_low_cap.is_power_of_two());
    debug_assert!(tail_tile > 0);
    CudaError::from_result(_frac_precompute_m_build(
        pq,
        real_len,
        logical_len,
        rem_n,
        w,
        lambda,
        r_prev,
        alpha,
        inline_fold,
        eq_tail_low,
        eq_tail_high,
        eq_tail_low_cap,
        tail_tile,
        partial_out,
        partial_len,
        m_total,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_precompute_m_eval_round_raw(
    m_total: *const EF,
    w: usize,
    t: usize,
    eq_r_prefix: *const EF,
    eq_suffix: *const EF,
    out: *mut EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(w > 0);
    debug_assert!(t < w);
    CudaError::from_result(_frac_precompute_m_eval_round(
        m_total,
        w,
        t,
        eq_r_prefix,
        eq_suffix,
        out,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_multifold_raw(
    src: *const Frac<EF>,
    dst: *mut Frac<EF>,
    real_len: usize,
    logical_len: usize,
    rem_n: usize,
    w: usize,
    alpha: EF,
    eq_r_window: *const EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(rem_n > 0);
    debug_assert!(w > 0 && w <= rem_n);
    CudaError::from_result(_frac_multifold(
        src,
        dst,
        real_len,
        logical_len,
        rem_n,
        w,
        alpha,
        eq_r_window,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn fold_ple_from_evals(
    input_matrix: &DeviceBuffer<F>,
    output_matrix: *mut EF,
    omega_skip_pows: &DeviceBuffer<F>,
    inv_lagrange_denoms: &DeviceBuffer<EF>,
    height: u32,
    width: u32,
    l_skip: u32,
    new_height: u32,
    rotate: bool,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_fold_ple_from_evals(
        input_matrix.as_ptr(),
        output_matrix,
        omega_skip_pows.as_ptr(),
        inv_lagrange_denoms.as_ptr(),
        height,
        width,
        l_skip,
        new_height,
        rotate,
        stream,
    ))
}

/// GKR input eval that processes multiple AIRs in a single kernel launch via a flat block list.
///
/// Each entry of `d_block_ctxs` describes one block in the launch (which AIR it serves and its
/// sub-block index within that AIR's allotment). Per-AIR sizing lives in `d_ctxs[air_idx]`.
///
/// # Safety
/// - `d_block_ctxs` must contain exactly `num_blocks` valid `BlockCtx` entries.
/// - `d_ctxs` must contain a valid `GkrInputCtx` for every distinct `air_idx` referenced by
///   `d_block_ctxs`. All referenced device pointers in each ctx must be valid.
pub unsafe fn logup_gkr_input_eval(
    d_block_ctxs: &DeviceBuffer<BlockCtx>,
    d_ctxs: &DeviceBuffer<GkrInputCtx>,
    num_blocks: u32,
    threads_per_block: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_logup_gkr_input_eval(
        d_block_ctxs.as_ptr(),
        d_ctxs.as_ptr(),
        num_blocks,
        threads_per_block,
        stream,
    ))
}

pub unsafe fn frac_add_alpha(
    data: &DeviceBuffer<Frac<EF>>,
    alpha: EF,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_frac_add_alpha(
        data.as_mut_raw_ptr(),
        data.len(),
        alpha,
        stream,
    ))
}

/// # Safety
/// - `buffer_size` does not refer to the capacity of `intermediates`. It refers to "how many DAG
///   nodes per row need to be buffered". The capacity is a multiple of `buffer_size` which is
///   runtime calculated based on `buffer_size`.
/// - `eq_cube` must be a pointer to device buffer with at least `num_x` elements representing
///   evaluations on hypercube.
#[allow(clippy::too_many_arguments)]
pub unsafe fn zerocheck_ntt_eval_constraints(
    tmp_sums_buffer: &mut DeviceBuffer<EF>,
    output: &mut DeviceBuffer<EF>,
    selectors_cube: &DeviceBuffer<F>,
    preprocessed: *const F,
    main_ptrs: &DeviceBuffer<*const F>,
    eq_cube: *const EF,
    lambda_pows: &DeviceBuffer<EF>,
    public_values: &DeviceBuffer<F>,
    rules: &DeviceBuffer<u128>,
    used_nodes: &DeviceBuffer<usize>,
    buffer_size: u32,
    intermediates: &mut DeviceBuffer<F>,
    skip_domain: u32,
    num_x: u32,
    height: u32,
    num_cosets: u32,
    g_shift: F,
    max_temp_bytes: usize,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_zerocheck_ntt_eval_constraints(
        tmp_sums_buffer.as_mut_ptr(),
        output.as_mut_ptr(),
        selectors_cube.as_ptr(),
        preprocessed,
        main_ptrs.as_ptr(),
        eq_cube,
        lambda_pows.as_ptr(),
        public_values.as_ptr(),
        rules.as_raw_ptr(),
        rules.len(),
        used_nodes.as_ptr(),
        used_nodes.len(),
        lambda_pows.len(),
        buffer_size,
        intermediates.as_mut_ptr(),
        skip_domain,
        num_x,
        height,
        num_cosets,
        g_shift,
        max_temp_bytes,
        stream,
    ))
}

/// # Safety
/// - `buffer_size` does not refer to the capacity of `intermediates`. It refers to "how many DAG
///   nodes per row need to be buffered". The capacity is a multiple of `buffer_size` which is
///   runtime calculated based on `buffer_size`.
/// - `eq_cube` must be a pointer to device buffer with at least `num_x` elements representing
///   evaluations on hypercube.
/// - `output` will not be written to by this function. Only `tmp_sums_buffer` is written.
#[allow(clippy::too_many_arguments)]
pub unsafe fn logup_bary_eval_interactions_round0(
    tmp_sums_buffer: &mut DeviceBuffer<Frac<EF>>,
    output: &mut DeviceBuffer<Frac<EF>>,
    selectors_cube: &DeviceBuffer<F>,
    preprocessed: *const F,
    main_ptrs: &DeviceBuffer<*const F>,
    eq_cube: *const EF,
    public_values: &DeviceBuffer<F>,
    numer_weights: &DeviceBuffer<EF>,
    denom_weights: &DeviceBuffer<EF>,
    denom_sum_init: EF,
    rules: &DeviceBuffer<u128>,
    buffer_size: u32,
    intermediates: &mut DeviceBuffer<F>,
    skip_domain: u32,
    num_x: u32,
    height: u32,
    num_cosets: u32,
    g_shift: F,
    max_temp_bytes: usize,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_logup_bary_eval_interactions_round0(
        tmp_sums_buffer.as_mut_ptr(),
        output.as_mut_ptr(),
        selectors_cube.as_ptr(),
        preprocessed,
        main_ptrs.as_ptr(),
        eq_cube,
        public_values.as_ptr(),
        numer_weights.as_ptr(),
        denom_weights.as_ptr(),
        denom_sum_init,
        rules.as_raw_ptr(),
        rules.len(),
        buffer_size,
        intermediates.as_mut_ptr(),
        skip_domain,
        num_x,
        height,
        num_cosets,
        g_shift,
        max_temp_bytes,
        stream,
    ))
}

/// Evaluate zerocheck MLE constraints on GPU with raw device pointers.
#[allow(clippy::too_many_arguments)]
pub unsafe fn zerocheck_eval_mle(
    tmp_sums_buffer: &mut DeviceBuffer<EF>,
    output: &mut DeviceBuffer<EF>,
    eq_xi: *const EF,
    selectors: *const EF,
    preprocessed: MainMatrixPtrs<EF>,
    main_ptrs: *const MainMatrixPtrs<EF>,
    lambda_pows: *const EF,
    lambda_len: usize,
    public_values: *const F,
    rules: *const std::ffi::c_void,
    rules_len: usize,
    used_nodes: *const usize,
    used_nodes_len: usize,
    buffer_size: u32,
    intermediates: &mut DeviceBuffer<EF>,
    num_y: u32,
    num_x: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_zerocheck_eval_mle(
        tmp_sums_buffer.as_mut_ptr(),
        output.as_mut_ptr(),
        eq_xi,
        selectors,
        preprocessed,
        main_ptrs,
        lambda_pows,
        public_values,
        rules,
        rules_len,
        used_nodes,
        used_nodes_len,
        lambda_len,
        buffer_size,
        intermediates.as_mut_ptr(),
        num_y,
        num_x,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn zerocheck_batch_eval_mle(
    tmp_sums_buffer: &mut DeviceBuffer<EF>,
    output: &mut DeviceBuffer<EF>,
    block_ctxs: &DeviceBuffer<BlockCtx>,
    zc_ctxs: &DeviceBuffer<ZerocheckCtx>,
    air_block_offsets: &DeviceBuffer<u32>,
    lambda_pows: &DeviceBuffer<EF>,
    lambda_len: usize,
    num_blocks: u32,
    num_x: u32,
    num_airs: u32,
    threads_per_block: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_zerocheck_batch_eval_mle(
        tmp_sums_buffer.as_mut_ptr(),
        output.as_mut_ptr(),
        block_ctxs.as_ptr(),
        zc_ctxs.as_ptr(),
        air_block_offsets.as_ptr(),
        lambda_pows.as_ptr(),
        lambda_len,
        num_blocks,
        num_x,
        num_airs,
        threads_per_block,
        stream,
    ))
}

/// Evaluate logup MLE interactions on GPU with raw device pointers.
#[allow(clippy::too_many_arguments)]
pub unsafe fn logup_eval_mle(
    tmp_sums_buffer: &mut DeviceBuffer<Frac<EF>>,
    output: &mut DeviceBuffer<Frac<EF>>,
    eq_xi: *const EF,
    selectors: *const EF,
    preprocessed: MainMatrixPtrs<EF>,
    main_ptrs: *const MainMatrixPtrs<EF>,
    challenges: *const EF,
    eq_3bs: *const EF,
    public_values: *const F,
    rules: *const std::ffi::c_void,
    used_nodes: *const usize,
    pair_idxs: *const u32,
    used_nodes_len: usize,
    buffer_size: u32,
    intermediates: &mut DeviceBuffer<EF>,
    num_y: u32,
    num_x: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_logup_eval_mle(
        tmp_sums_buffer.as_mut_ptr(),
        output.as_mut_ptr(),
        eq_xi,
        selectors,
        preprocessed,
        main_ptrs,
        challenges,
        eq_3bs,
        public_values,
        rules,
        used_nodes,
        pair_idxs,
        used_nodes_len,
        buffer_size,
        intermediates.as_mut_ptr(),
        num_y,
        num_x,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn logup_batch_eval_mle(
    tmp_sums_buffer: &mut DeviceBuffer<Frac<EF>>,
    output: &mut DeviceBuffer<Frac<EF>>,
    block_ctxs: &DeviceBuffer<BlockCtx>,
    logup_ctxs: &DeviceBuffer<LogupCtx>,
    air_block_offsets: &DeviceBuffer<u32>,
    num_blocks: u32,
    num_x: u32,
    num_airs: u32,
    threads_per_block: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_logup_batch_eval_mle(
        tmp_sums_buffer.as_mut_ptr(),
        output.as_mut_ptr(),
        block_ctxs.as_ptr(),
        logup_ctxs.as_ptr(),
        air_block_offsets.as_ptr(),
        num_blocks,
        num_x,
        num_airs,
        threads_per_block,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn zerocheck_monomial_batched(
    tmp_sums: &mut DeviceBuffer<EF>,
    output: &mut DeviceBuffer<EF>,
    block_ctxs: &DeviceBuffer<BlockCtx>,
    air_ctxs: &DeviceBuffer<MonomialAirCtx>,
    air_block_offsets: &DeviceBuffer<u32>,
    num_blocks: u32,
    num_x: u32,
    num_airs: u32,
    threads_per_block: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_zerocheck_monomial_batched(
        tmp_sums.as_mut_ptr(),
        output.as_mut_ptr(),
        block_ctxs.as_ptr(),
        air_ctxs.as_ptr(),
        air_block_offsets.as_ptr(),
        num_blocks,
        num_x,
        num_airs,
        threads_per_block,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn zerocheck_monomial_par_y_batched(
    tmp_sums: &mut DeviceBuffer<EF>,
    output: &mut DeviceBuffer<EF>,
    block_ctxs: &DeviceBuffer<BlockCtx>,
    air_ctxs: &DeviceBuffer<MonomialAirCtx>,
    air_block_offsets: &DeviceBuffer<u32>,
    num_blocks: u32,
    num_x: u32,
    num_airs: u32,
    chunk_size: u32,
    threads_per_block: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_zerocheck_monomial_par_y_batched(
        tmp_sums.as_mut_ptr(),
        output.as_mut_ptr(),
        block_ctxs.as_ptr(),
        air_ctxs.as_ptr(),
        air_block_offsets.as_ptr(),
        num_blocks,
        num_x,
        num_airs,
        chunk_size,
        threads_per_block,
        stream,
    ))
}

pub unsafe fn precompute_lambda_combinations(
    out: &mut DeviceBuffer<EF>,
    headers: *const MonomialHeader,
    lambda_terms: *const LambdaTerm<F>,
    lambda_pows: &DeviceBuffer<EF>,
    num_monomials: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_precompute_lambda_combinations(
        out.as_mut_ptr(),
        headers,
        lambda_terms,
        lambda_pows.as_ptr(),
        num_monomials,
        stream,
    ))
}

pub unsafe fn precompute_logup_numer_combinations(
    out: &mut DeviceBuffer<EF>,
    headers: *const MonomialHeader,
    terms: *const InteractionMonomialTerm<F>,
    eq_3bs: &DeviceBuffer<EF>,
    num_monomials: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_precompute_logup_numer_combinations(
        out.as_mut_ptr(),
        headers,
        terms,
        eq_3bs.as_ptr(),
        num_monomials,
        stream,
    ))
}

pub unsafe fn precompute_logup_denom_combinations(
    out: &mut DeviceBuffer<EF>,
    headers: *const MonomialHeader,
    terms: *const InteractionMonomialTerm<F>,
    beta_pows: &DeviceBuffer<EF>,
    eq_3bs: &DeviceBuffer<EF>,
    num_monomials: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_precompute_logup_denom_combinations(
        out.as_mut_ptr(),
        headers,
        terms,
        beta_pows.as_ptr(),
        eq_3bs.as_ptr(),
        num_monomials,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn logup_monomial_batched(
    tmp_sums: &mut DeviceBuffer<Frac<EF>>,
    output: &mut DeviceBuffer<Frac<EF>>,
    block_ctxs: &DeviceBuffer<BlockCtx>,
    common_ctxs: &DeviceBuffer<LogupMonomialCommonCtx>,
    numer_ctxs: &DeviceBuffer<LogupMonomialCtx>,
    denom_ctxs: &DeviceBuffer<LogupMonomialCtx>,
    air_block_offsets: &DeviceBuffer<u32>,
    num_blocks: u32,
    num_x: u32,
    num_airs: u32,
    threads_per_block: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_logup_monomial_batched(
        tmp_sums.as_mut_ptr(),
        output.as_mut_ptr(),
        block_ctxs.as_ptr(),
        common_ctxs.as_ptr(),
        numer_ctxs.as_ptr(),
        denom_ctxs.as_ptr(),
        air_block_offsets.as_ptr(),
        num_blocks,
        num_x,
        num_airs,
        threads_per_block,
        stream,
    ))
}

pub unsafe fn frac_vector_scalar_multiply_ext_fp(
    frac_vec: *mut Frac<EF>,
    scalar: F,
    length: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_frac_vector_scalar_multiply_ext_fp(
        frac_vec, scalar, length, stream,
    ))
}

/// Vertically repeats the rows of `input` and writes them to `out`. Both matrices are column-major.
///
/// # Safety
/// - `out` must be a pointer to `DeviceBuffer<F>` with length at least `lifted_height * width`.
/// - `input` must be a pointer to `DeviceBuffer<F>` with length at least `height * width`.
/// - `out` and `input` must not overlap.
pub unsafe fn frac_matrix_vertically_repeat(
    out: *mut Frac<EF>,
    input: *const Frac<EF>,
    width: u32,
    lifted_height: u32,
    height: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(lifted_height > height);
    CudaError::from_result(_frac_matrix_vertically_repeat(
        out,
        input,
        width,
        lifted_height,
        height,
        stream,
    ))
}

#[allow(clippy::too_many_arguments)]
pub unsafe fn frac_matrix_vertically_repeat_ext(
    out_numerators: *mut EF,
    out_denominators: *mut EF,
    in_numerators: *const EF,
    in_denominators: *const EF,
    width: u32,
    lifted_height: u32,
    height: u32,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    debug_assert!(lifted_height > height);
    CudaError::from_result(_frac_matrix_vertically_repeat_ext(
        out_numerators,
        out_denominators,
        in_numerators,
        in_denominators,
        width,
        lifted_height,
        height,
        stream,
    ))
}

/// Create folded selectors around round 0 from hypercube evaluations and univariate factors.
///
/// Note: `is_transition` is not a product of univariate and hypercube factors.
pub unsafe fn fold_selectors_round0(
    out: *mut EF,
    input: *const F,
    is_first: EF,
    is_last: EF,
    num_x: usize,
    stream: cudaStream_t,
) -> Result<(), CudaError> {
    CudaError::from_result(_fold_selectors_round0(
        out,
        input,
        is_first,
        is_last,
        num_x as u32,
        stream,
    ))
}