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
//! Groupby aggregation operations: groupby_agg, groupby_multi_agg.
use crate::{LaunchAsync, LaunchConfig};
use xlog_core::{AggOp, Result, ScalarType, Schema, XlogError};
use super::{
arith_kernels, groupby_kernels, pack_kernels, scan_kernels, ARITH_MODULE, GROUPBY_MODULE,
PACK_MODULE, SCAN_MODULE,
};
use crate::memory::{CudaColumn, TrackedCudaSlice};
use crate::CudaBuffer;
impl super::CudaKernelProvider {
/// Perform groupby aggregation
///
/// Assumes input is already sorted by key columns.
///
/// # Arguments
/// * `input` - The input buffer
/// * `key_cols` - Column indices for grouping
/// * `agg` - Aggregation operation to perform
/// * `value_col` - Column index for the value to aggregate
///
/// # Returns
/// A buffer with one row per group, containing key columns and aggregated value
///
/// # Errors
/// Returns `XlogError::Kernel` if kernel execution fails
pub fn groupby_agg(
&self,
input: &CudaBuffer,
key_cols: &[usize],
agg: AggOp,
value_col: usize,
) -> Result<CudaBuffer> {
self.groupby_multi_agg(input, key_cols, &[(value_col, agg)])
}
/// Multi-aggregation groupby
///
/// Performs groupby with multiple aggregation operations at once.
/// This is more efficient than running separate groupby operations
/// because it only sorts and computes group boundaries once.
///
/// # Arguments
/// * `buffer` - The input buffer
/// * `key_cols` - Column indices for grouping (currently only single-column supported)
/// * `aggs` - A slice of (value_col, AggOp) pairs specifying which aggregations to perform
///
/// # Returns
/// A buffer with one row per group, containing key columns followed by aggregated values
/// in the same order as the `aggs` parameter
///
/// # Errors
/// Returns `XlogError::Kernel` if kernel execution fails
///
/// # Example
/// ```ignore
/// let result = provider.groupby_multi_agg(
/// &buffer,
/// &[0], // group by column 0
/// &[(1, AggOp::Sum), (1, AggOp::Count), (1, AggOp::Min)],
/// )?;
/// // result has columns: key, sum, count, min
/// ```
pub fn groupby_multi_agg(
&self,
buffer: &CudaBuffer,
key_cols: &[usize],
aggs: &[(usize, AggOp)],
) -> Result<CudaBuffer> {
// Env-gated recorded dispatch. `groupby_multi_agg_recorded`
// (slice #6) is narrow to U32 / Symbol keys + Count /
// Sum / Min / Max aggs + ≤4 key columns. Mismatch
// (any other key type, LogSumExp, or >4 keys) falls
// through to the legacy path.
if Self::use_recorded_groupby_env()
&& !key_cols.is_empty()
&& !aggs.is_empty()
&& key_cols.len() <= 4
{
if let Some(launch_stream) = self.recorded_op_stream_or_init() {
let keys_compatible = key_cols.iter().all(|&k| {
matches!(
buffer.schema.column_type(k),
Some(ScalarType::U32) | Some(ScalarType::Symbol)
)
});
let aggs_compatible = aggs.iter().all(|&(_, op)| {
matches!(op, AggOp::Count | AggOp::Sum | AggOp::Min | AggOp::Max)
});
if keys_compatible && aggs_compatible {
return self.groupby_multi_agg_recorded(buffer, key_cols, aggs, launch_stream);
}
}
}
let num_rows = self.device_row_count(buffer)?;
if num_rows == 0 {
let result_schema =
self.groupby_multi_agg_result_schema(buffer.schema(), key_cols, aggs);
return self.create_empty_buffer(result_schema);
}
if num_rows > u32::MAX as usize {
return Err(XlogError::Kernel(format!(
"GroupBy supports at most {} rows, got {}",
u32::MAX,
num_rows
)));
}
// Validate inputs
if key_cols.is_empty() {
return Err(XlogError::Kernel(
"GroupBy requires at least one key column".to_string(),
));
}
if aggs.is_empty() {
return Err(XlogError::Kernel(
"GroupBy requires at least one aggregation".to_string(),
));
}
// Validate key columns exist
for &key_col in key_cols {
if key_col >= buffer.arity() {
return Err(XlogError::Kernel(format!(
"Key column {} out of bounds (arity {})",
key_col,
buffer.arity()
)));
}
}
// Validate all value columns exist and basic dtype constraints for current kernels.
for &(value_col, agg_op) in aggs {
if value_col >= buffer.arity() {
return Err(XlogError::Kernel(format!(
"Value column {} out of bounds (arity {})",
value_col,
buffer.arity()
)));
}
let value_ty = buffer
.schema()
.column_type(value_col)
.ok_or_else(|| XlogError::Kernel("Value column has no type".to_string()))?;
match agg_op {
AggOp::Count => {}
AggOp::Sum | AggOp::Min | AggOp::Max => {
if value_ty != ScalarType::U32 {
return Err(XlogError::Kernel(format!(
"{:?} currently requires U32 values, got {:?}",
agg_op, value_ty
)));
}
}
AggOp::LogSumExp => {
if value_ty != ScalarType::F64 {
return Err(XlogError::Kernel(format!(
"LogSumExp requires F64 values, got {:?}",
value_ty
)));
}
}
}
}
// Step 1: Sort buffer by key columns
let sorted = self.sort(buffer, key_cols)?;
let num_rows = self.device_row_count(&sorted)?;
if num_rows > u32::MAX as usize {
return Err(XlogError::Kernel(format!(
"GroupBy supports at most {} rows, got {}",
u32::MAX,
num_rows
)));
}
let num_rows = num_rows as u32;
// Step 2: Detect boundaries using detect_group_boundaries kernel over packed key bytes
let boundary_func = self
.device
.inner()
.get_func(GROUPBY_MODULE, groupby_kernels::DETECT_GROUP_BOUNDARIES)
.ok_or_else(|| {
XlogError::Kernel("detect_group_boundaries kernel not found".to_string())
})?;
// Allocate boundaries mask
let boundaries = self.memory.alloc::<u8>(num_rows as usize)?;
let packed = self.compute_hashes_and_pack_keys(&sorted, key_cols)?;
if packed.key_bytes == 0 || packed.key_bytes % 4 != 0 {
return Err(XlogError::Kernel(format!(
"GroupBy key packing produced {} bytes per row (expected multiple of 4); Bool keys are not supported",
packed.key_bytes
)));
}
let segments_per_row = (packed.key_bytes / 4) as usize;
let total_segments = (num_rows as usize) * segments_per_row;
let packed_u32 = self.bytes_as_u32_view(&packed.packed_keys, total_segments)?;
// Launch boundary detection
let block_size = 256u32;
let grid_size = num_rows.div_ceil(block_size);
let config = LaunchConfig {
grid_dim: (grid_size, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
};
// SAFETY: Kernel parameters match expected signature
unsafe {
boundary_func.clone().launch(
config,
(
&packed_u32,
num_rows,
segments_per_row as u32,
segments_per_row as u32,
&boundaries,
),
)
}
.map_err(|e| XlogError::Kernel(format!("detect_group_boundaries failed: {}", e)))?;
self.device.synchronize()?;
// Step 3: Compute group IDs on-device using prefix sum over boundaries.
let device = self.device.inner();
let num_blocks = grid_size;
let d_boundary_pos = self.memory.alloc::<u32>(num_rows as usize)?;
let mut d_block_sums = self.memory.alloc::<u32>(num_blocks as usize)?;
let phase1_fn = device
.get_func(SCAN_MODULE, scan_kernels::MULTIBLOCK_SCAN_PHASE1)
.ok_or_else(|| {
XlogError::Kernel("Failed to get multiblock_scan_phase1 kernel".to_string())
})?;
// SAFETY: multiblock_scan_phase1(const uint8_t* mask, uint32_t* prefix_sum, uint32_t* block_sums, uint32_t n)
unsafe {
phase1_fn.clone().launch(
LaunchConfig {
grid_dim: (num_blocks, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
},
(&boundaries, &d_boundary_pos, &d_block_sums, num_rows),
)
}
.map_err(|e| XlogError::Kernel(format!("multiblock_scan_phase1 failed: {}", e)))?;
if num_blocks > 1 {
self.multiblock_scan_u32_inplace(&mut d_block_sums, num_blocks)?;
let phase3_fn = device
.get_func(SCAN_MODULE, scan_kernels::MULTIBLOCK_SCAN_PHASE3)
.ok_or_else(|| {
XlogError::Kernel("Failed to get multiblock_scan_phase3 kernel".to_string())
})?;
// SAFETY: multiblock_scan_phase3(uint32_t* prefix_sum, const uint32_t* block_offsets, uint32_t n)
unsafe {
phase3_fn.clone().launch(
LaunchConfig {
grid_dim: (num_blocks, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
},
(&d_boundary_pos, &d_block_sums, num_rows),
)
}
.map_err(|e| XlogError::Kernel(format!("multiblock_scan_phase3 failed: {}", e)))?;
}
self.device.synchronize()?;
let d_num_groups = self.capture_num_groups(&d_boundary_pos, &boundaries, num_rows)?;
let row_cap = num_rows as u64;
let row_cap_usize = num_rows as usize;
let row_cap_u32 = num_rows;
let mut group_ids = self.memory.alloc::<u32>(num_rows as usize)?;
let mut group_first_idx = self.memory.alloc::<u32>(row_cap_usize)?;
let group_ids_fn = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUP_IDS_FROM_BOUNDARIES)
.ok_or_else(|| {
XlogError::Kernel("group_ids_from_boundaries kernel not found".to_string())
})?;
let group_start_fn = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUP_START_INDICES)
.ok_or_else(|| XlogError::Kernel("group_start_indices kernel not found".to_string()))?;
// SAFETY: group_ids_from_boundaries(boundaries, boundary_pos, num_rows, group_ids)
unsafe {
group_ids_fn.clone().launch(
config,
(&boundaries, &d_boundary_pos, num_rows, &mut group_ids),
)
}
.map_err(|e| XlogError::Kernel(format!("group_ids_from_boundaries failed: {}", e)))?;
// SAFETY: group_start_indices(boundaries, boundary_pos, num_rows, group_first_idx)
unsafe {
group_start_fn.clone().launch(
config,
(&boundaries, &d_boundary_pos, num_rows, &mut group_first_idx),
)
}
.map_err(|e| XlogError::Kernel(format!("group_start_indices failed: {}", e)))?;
self.device.synchronize()?;
// Step 4: For each (value_col, op) pair, run the appropriate kernel on-device.
let mut agg_columns: Vec<CudaColumn> = Vec::with_capacity(aggs.len());
for &(value_col, agg_op) in aggs {
let values = sorted
.column(value_col)
.ok_or_else(|| XlogError::Kernel("Value column not found".to_string()))?;
match agg_op {
AggOp::Count => {
let output_bytes = row_cap_usize
.checked_mul(std::mem::size_of::<u64>())
.ok_or_else(|| {
XlogError::Kernel("Count output size overflow".to_string())
})?;
let mut output = self.memory.alloc::<u8>(output_bytes)?;
device.memset_zeros(&mut output).map_err(|e| {
XlogError::Kernel(format!("Failed to zero count output: {}", e))
})?;
let count_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_COUNT)
.ok_or_else(|| {
XlogError::Kernel("groupby_count kernel not found".to_string())
})?;
// SAFETY: groupby_count(boundaries, group_ids, num_rows, counts)
unsafe {
count_func
.clone()
.launch(config, (&boundaries, &group_ids, num_rows, &output))
}
.map_err(|e| XlogError::Kernel(format!("groupby_count failed: {}", e)))?;
self.device.synchronize()?;
agg_columns.push(output.into());
}
AggOp::Sum => {
let values_view = self.column_as_u32_view(values, num_rows as usize)?;
let output_bytes = row_cap_usize
.checked_mul(std::mem::size_of::<u64>())
.ok_or_else(|| XlogError::Kernel("Sum output size overflow".to_string()))?;
let mut output = self.memory.alloc::<u8>(output_bytes)?;
device.memset_zeros(&mut output).map_err(|e| {
XlogError::Kernel(format!("Failed to zero sum output: {}", e))
})?;
let sum_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_SUM)
.ok_or_else(|| {
XlogError::Kernel("groupby_sum kernel not found".to_string())
})?;
// SAFETY: groupby_sum(values, group_ids, num_rows, sums)
unsafe {
sum_func
.clone()
.launch(config, (&values_view, &group_ids, num_rows, &output))
}
.map_err(|e| XlogError::Kernel(format!("groupby_sum failed: {}", e)))?;
self.device.synchronize()?;
agg_columns.push(output.into());
}
AggOp::Min => {
let values_view = self.column_as_u32_view(values, num_rows as usize)?;
let output_bytes = row_cap_usize
.checked_mul(std::mem::size_of::<u32>())
.ok_or_else(|| XlogError::Kernel("Min output size overflow".to_string()))?;
let mut output = self.memory.alloc::<u8>(output_bytes)?;
let fill_fn = device
.get_func(ARITH_MODULE, arith_kernels::ARITH_FILL_CONST_U32)
.ok_or_else(|| {
XlogError::Kernel("arith_fill_const_u32 not found".to_string())
})?;
let fill_config = LaunchConfig::for_num_elems(row_cap_u32);
// SAFETY: kernel arguments match the PTX signature; device buffers were allocated with sufficient size
unsafe {
fill_fn
.clone()
.launch(fill_config, (u32::MAX, row_cap_u32, &mut output))
}
.map_err(|e| XlogError::Kernel(format!("Failed to init min output: {}", e)))?;
let min_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_MIN)
.ok_or_else(|| {
XlogError::Kernel("groupby_min kernel not found".to_string())
})?;
// SAFETY: groupby_min(values, group_ids, num_rows, mins)
unsafe {
min_func
.clone()
.launch(config, (&values_view, &group_ids, num_rows, &output))
}
.map_err(|e| XlogError::Kernel(format!("groupby_min failed: {}", e)))?;
self.device.synchronize()?;
agg_columns.push(output.into());
}
AggOp::Max => {
let values_view = self.column_as_u32_view(values, num_rows as usize)?;
let output_bytes = row_cap_usize
.checked_mul(std::mem::size_of::<u32>())
.ok_or_else(|| XlogError::Kernel("Max output size overflow".to_string()))?;
let mut output = self.memory.alloc::<u8>(output_bytes)?;
device.memset_zeros(&mut output).map_err(|e| {
XlogError::Kernel(format!("Failed to zero max output: {}", e))
})?;
let max_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_MAX)
.ok_or_else(|| {
XlogError::Kernel("groupby_max kernel not found".to_string())
})?;
// SAFETY: groupby_max(values, group_ids, num_rows, maxs)
unsafe {
max_func
.clone()
.launch(config, (&values_view, &group_ids, num_rows, &output))
}
.map_err(|e| XlogError::Kernel(format!("groupby_max failed: {}", e)))?;
self.device.synchronize()?;
agg_columns.push(output.into());
}
AggOp::LogSumExp => {
let values_f64 = self.column_as_f64_view(values, num_rows as usize)?;
let output_bytes = row_cap_usize
.checked_mul(std::mem::size_of::<f64>())
.ok_or_else(|| {
XlogError::Kernel("LogSumExp output size overflow".to_string())
})?;
let mut maxs = self.memory.alloc::<u8>(output_bytes)?;
let mut sumexps = self.memory.alloc::<u8>(output_bytes)?;
let results = self.memory.alloc::<u8>(output_bytes)?;
let fill_f64 = device
.get_func(ARITH_MODULE, arith_kernels::ARITH_FILL_CONST_F64)
.ok_or_else(|| {
XlogError::Kernel("arith_fill_const_f64 not found".to_string())
})?;
let fill_config = LaunchConfig::for_num_elems(row_cap_u32);
// SAFETY: kernel arguments match the PTX signature; device buffers were allocated with sufficient size
unsafe {
fill_f64
.clone()
.launch(fill_config, (f64::NEG_INFINITY, row_cap_u32, &mut maxs))
}
.map_err(|e| XlogError::Kernel(format!("Failed to init maxs: {}", e)))?;
device
.memset_zeros(&mut sumexps)
.map_err(|e| XlogError::Kernel(format!("Failed to init sumexps: {}", e)))?;
let max_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_LOGSUMEXP_MAX)
.ok_or_else(|| {
XlogError::Kernel("groupby_logsumexp_max kernel not found".to_string())
})?;
// SAFETY: kernel arguments match the PTX signature; device buffers were allocated with sufficient size
unsafe {
max_func
.clone()
.launch(config, (&values_f64, &group_ids, num_rows, &maxs))
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_logsumexp_max failed: {}", e))
})?;
self.device.synchronize()?;
let sumexp_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_LOGSUMEXP_SUMEXP)
.ok_or_else(|| {
XlogError::Kernel(
"groupby_logsumexp_sumexp kernel not found".to_string(),
)
})?;
// SAFETY: kernel arguments match the PTX signature; device buffers were allocated with sufficient size
unsafe {
sumexp_func
.clone()
.launch(config, (&values_f64, &group_ids, &maxs, num_rows, &sumexps))
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_logsumexp_sumexp failed: {}", e))
})?;
self.device.synchronize()?;
let final_config = LaunchConfig::for_num_elems(row_cap_u32);
let final_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_LOGSUMEXP_FINAL)
.ok_or_else(|| {
XlogError::Kernel(
"groupby_logsumexp_final kernel not found".to_string(),
)
})?;
// SAFETY: kernel arguments match the PTX signature; device buffers were allocated with sufficient size
unsafe {
final_func.clone().launch(
final_config,
(&maxs, &sumexps, &d_num_groups, row_cap_u32, &results),
)
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_logsumexp_final failed: {}", e))
})?;
self.device.synchronize()?;
agg_columns.push(results.into());
}
}
}
// Step 5: Build output buffer with keys and aggregated values.
let mut result_columns: Vec<CudaColumn> = Vec::with_capacity(key_cols.len() + aggs.len());
let group_packed_bytes = row_cap_usize
.checked_mul(packed.key_bytes as usize)
.ok_or_else(|| XlogError::Kernel("GroupBy packed size overflow".to_string()))?;
let mut group_packed = self.memory.alloc::<u8>(group_packed_bytes)?;
let gather_fn = device
.get_func(PACK_MODULE, pack_kernels::GATHER_PACKED_ROWS_COUNTED)
.ok_or_else(|| {
XlogError::Kernel("gather_packed_rows_counted kernel not found".to_string())
})?;
let gather_config = LaunchConfig::for_num_elems(row_cap_u32);
// SAFETY: gather_packed_rows_counted(src_packed, row_size, indices, num_rows, capacity_rows, dst_packed)
unsafe {
gather_fn.clone().launch(
gather_config,
(
&packed.packed_keys,
packed.key_bytes,
&group_first_idx,
&d_num_groups,
row_cap_u32,
&mut group_packed,
),
)
}
.map_err(|e| XlogError::Kernel(format!("gather_packed_rows failed: {}", e)))?;
let mut col_offsets: Vec<u32> = Vec::with_capacity(key_cols.len());
let mut col_sizes: Vec<u32> = Vec::with_capacity(key_cols.len());
let mut offset = 0u32;
for &key_col in key_cols {
let size = buffer
.schema()
.column_type(key_col)
.map(|t| t.size_bytes() as u32)
.unwrap_or(4);
col_offsets.push(offset);
col_sizes.push(size);
offset = offset
.checked_add(size)
.ok_or_else(|| XlogError::Kernel("GroupBy key size overflow".to_string()))?;
}
let unpack_fn = device
.get_func(PACK_MODULE, pack_kernels::UNPACK_COLUMN_COUNTED)
.ok_or_else(|| {
XlogError::Kernel("unpack_column_counted kernel not found".to_string())
})?;
let unpack_config = LaunchConfig::for_num_elems(row_cap_u32);
for idx in 0..key_cols.len() {
let col_size = col_sizes[idx];
let col_offset = col_offsets[idx];
let out_bytes = row_cap_usize
.checked_mul(col_size as usize)
.ok_or_else(|| XlogError::Kernel("GroupBy key column overflow".to_string()))?;
let mut out_col = self.memory.alloc::<u8>(out_bytes)?;
// SAFETY: unpack_column_counted(packed_input, row_size, col_offset, col_size, num_rows, capacity_rows, col_output)
unsafe {
unpack_fn.clone().launch(
unpack_config,
(
&group_packed,
packed.key_bytes,
col_offset,
col_size,
&d_num_groups,
row_cap_u32,
&mut out_col,
),
)
}
.map_err(|e| XlogError::Kernel(format!("unpack_column failed: {}", e)))?;
result_columns.push(out_col.into());
}
result_columns.extend(agg_columns);
let result_schema = self.groupby_multi_agg_result_schema(buffer.schema(), key_cols, aggs);
Ok(CudaBuffer::from_columns(
result_columns,
row_cap,
d_num_groups,
result_schema,
))
}
fn capture_num_groups(
&self,
boundary_pos: &TrackedCudaSlice<u32>,
boundaries: &TrackedCudaSlice<u8>,
num_rows: u32,
) -> Result<TrackedCudaSlice<u32>> {
let mut d_num_groups = self.memory.alloc::<u32>(1)?;
let capture_fn = self
.device
.inner()
.get_func(GROUPBY_MODULE, groupby_kernels::CAPTURE_NUM_GROUPS)
.ok_or_else(|| XlogError::Kernel("capture_num_groups kernel not found".to_string()))?;
// SAFETY: kernel arguments match the PTX signature; device buffers were allocated with sufficient size
unsafe {
capture_fn.clone().launch(
LaunchConfig {
grid_dim: (1, 1, 1),
block_dim: (1, 1, 1),
shared_mem_bytes: 0,
},
(boundary_pos, boundaries, num_rows, &mut d_num_groups),
)
}
.map_err(|e| XlogError::Kernel(format!("capture_num_groups failed: {}", e)))?;
Ok(d_num_groups)
}
/// Create result schema for multi-aggregation groupby
pub(crate) fn groupby_multi_agg_result_schema(
&self,
input: &Schema,
key_cols: &[usize],
aggs: &[(usize, AggOp)],
) -> Schema {
let mut columns: Vec<(String, ScalarType)> = key_cols
.iter()
.filter_map(|&i| input.columns.get(i).cloned())
.collect();
let mut sort_labels: Vec<String> = key_cols
.iter()
.filter_map(|&i| {
input
.column_sort_label(i)
.map(ToString::to_string)
.or_else(|| input.columns.get(i).map(|(name, _)| name.clone()))
})
.collect();
for (i, &(_value_col, agg_op)) in aggs.iter().enumerate() {
let agg_name = match agg_op {
AggOp::Count => format!("count_{}", i),
AggOp::Sum => format!("sum_{}", i),
AggOp::Min => format!("min_{}", i),
AggOp::Max => format!("max_{}", i),
AggOp::LogSumExp => format!("logsumexp_{}", i),
};
// Return correct types for each aggregation
// Count and Sum use u64 to match predicate declarations and prevent overflow
let agg_type = match agg_op {
AggOp::Count => ScalarType::U64,
AggOp::Sum => ScalarType::U64,
AggOp::Min | AggOp::Max => ScalarType::U32,
AggOp::LogSumExp => ScalarType::F64,
};
columns.push((agg_name, agg_type));
sort_labels.push(format!("aggregate_{}", i));
}
Schema::new(columns)
.with_sort_labels(sort_labels)
.expect("groupby result sort labels match column arity")
}
// ======================================================================
// Recorded GroupBy (v0.6 slice #6, provider-level only)
//
// Strict-recorder, launch_stream-routed sibling of `groupby_multi_agg`.
// Scope-narrow per the slice directive:
// * U32 / Symbol key columns only (delegates to sort_recorded which has
// the same constraint).
// * Aggs: Count, Sum, Min, Max only. LogSumExp is a multi-kernel
// chain (max → sumexp → final) and is outside this API surface.
// * No legacy default-routed code is touched. The legacy
// `groupby_multi_agg` and `groupby_agg` keep their semantics
// bit-for-bit; runtime/planner wiring is NOT included.
// ======================================================================
/// Stream-aware variant of `pack_keys_gpu` (≤4 columns).
/// Mirrors the legacy fused `pack_and_hash_keys` launch on
/// `launch_stream`, then records the kernel's intermediate
/// returned outputs (`packed_keys`, `hashes`) against the runtime so that
/// downstream consumers / drops are correctly serialized
/// against `launch_stream`.
pub(super) fn pack_keys_gpu_on_stream(
&self,
buffer: &CudaBuffer,
key_cols: &[usize],
cu_stream: &cudarc::driver::CudaStream,
launch_stream: crate::device_runtime::StreamId,
runtime: &crate::device_runtime::XlogDeviceRuntime,
) -> Result<crate::provider::PackedKeyData> {
use crate::launch::LaunchRecorder;
if key_cols.is_empty() {
return Err(XlogError::Kernel(
"pack_keys_gpu_on_stream: no key columns specified".to_string(),
));
}
if key_cols.len() > 4 {
return Err(XlogError::Kernel(
"pack_keys_gpu_on_stream: max 4 key columns supported".to_string(),
));
}
let num_rows = self.device_row_count(buffer)?;
if num_rows > u32::MAX as usize {
return Err(XlogError::Kernel(format!(
"pack_keys_gpu_on_stream supports at most {} rows, got {}",
u32::MAX,
num_rows
)));
}
let num_rows = num_rows as u32;
let mut col_sizes_host: Vec<u32> = Vec::with_capacity(key_cols.len());
let mut row_size: u32 = 0;
for &col_idx in key_cols {
let ty = buffer
.schema()
.column_type(col_idx)
.ok_or_else(|| XlogError::Kernel(format!("Invalid column index: {}", col_idx)))?;
let s = ty.size_bytes() as u32;
col_sizes_host.push(s);
row_size += s;
}
if num_rows == 0 {
return Ok(crate::provider::PackedKeyData {
hashes: self.memory.alloc::<u64>(0)?,
packed_keys: self.memory.alloc::<u8>(0)?,
key_bytes: row_size,
});
}
let packed_bytes = (num_rows as u64) * (row_size as u64);
let packed_slice = self.memory.alloc::<u8>(packed_bytes as usize)?;
let hash_slice = self.memory.alloc::<u64>(num_rows as usize)?;
let mut col_ptrs: [u64; 4] = [0; 4];
for (i, &col_idx) in key_cols.iter().enumerate() {
let col = buffer
.column(col_idx)
.ok_or_else(|| XlogError::Kernel(format!("Key column {} not found", col_idx)))?;
col_ptrs[i] = *col.device_ptr();
}
let mut packed_col_sizes = 0u64;
for (i, size) in col_sizes_host.iter().copied().enumerate() {
if size > u16::MAX as u32 {
return Err(XlogError::Kernel(format!(
"pack_keys_gpu_on_stream: column element size {} exceeds 16-bit kernel argument",
size
)));
}
packed_col_sizes |= (size as u64) << (i * 16);
}
// The pack kernel takes raw column pointers (`u64`)
// rather than typed `CudaColumn` kernel params, so the
// generic launch recorder cannot infer source-column
// lifetimes from the argument list. Record those reads
// explicitly before queueing the launch; this also
// enforces the strict external-memory policy for
// recorded paths.
let mut rec = LaunchRecorder::new_strict(launch_stream);
for &col_idx in key_cols {
let col = buffer
.column(col_idx)
.ok_or_else(|| XlogError::Kernel(format!("Key column {} not found", col_idx)))?;
rec.read_column(col);
}
rec.write(&packed_slice);
rec.write(&hash_slice);
rec.preflight(runtime).map_err(|e| {
XlogError::Kernel(format!(
"pack_keys_gpu_on_stream: launch recorder preflight failed: {}",
e
))
})?;
let func = self
.device
.inner()
.get_func(PACK_MODULE, pack_kernels::PACK_AND_HASH_KEYS)
.ok_or_else(|| XlogError::Kernel("pack_and_hash_keys kernel not found".to_string()))?;
let block_size = 256u32;
let grid_size = num_rows.div_ceil(block_size);
let cfg = LaunchConfig {
grid_dim: (grid_size, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
};
// SAFETY: pack_and_hash_keys signature.
unsafe {
func.clone().launch_on_stream(
cu_stream,
cfg,
(
col_ptrs[0],
col_ptrs[1],
col_ptrs[2],
col_ptrs[3],
packed_col_sizes,
key_cols.len() as u32,
num_rows,
row_size,
&packed_slice,
&hash_slice,
),
)
}
.map_err(|e| XlogError::Kernel(format!("pack_and_hash_keys (on_stream) failed: {}", e)))?;
// Record uses for buffers touched on launch_stream.
// `packed_slice` / `hash_slice` are fresh outputs that
// escape to the caller. The post-preflight-fresh path is
// valid because they were allocated by this helper before
// preflight and first used by the queued pack launch.
rec.commit(runtime).map_err(|e| {
XlogError::Kernel(format!(
"pack_keys_gpu_on_stream: launch recorder commit failed: {}",
e
))
})?;
Ok(crate::provider::PackedKeyData {
hashes: hash_slice,
packed_keys: packed_slice,
key_bytes: row_size,
})
}
/// Async u8 zero-fill on `cu_stream` via `cuMemsetD8Async`.
/// Used by recorded GroupBy aggregations that need a
/// freshly zeroed output buffer (Count, Sum, Max).
fn memset_zeros_u8_on_stream(
&self,
buf: &mut TrackedCudaSlice<u8>,
cu_stream: &cudarc::driver::CudaStream,
) -> Result<()> {
if buf.is_empty() {
return Ok(());
}
let ptr = *buf.device_ptr();
let len = <TrackedCudaSlice<u8> as crate::DeviceSlice<u8>>::len(buf);
// SAFETY: ptr is a live runtime-backed device pointer
// for `len` bytes, cu_stream is a valid CUDA stream
// owned by the runtime's pool. cuMemsetD8Async queues
// and returns immediately.
unsafe {
let res = cudarc::driver::sys::cuMemsetD8Async(ptr, 0, len, cu_stream.cu_stream());
if res != cudarc::driver::sys::cudaError_enum::CUDA_SUCCESS {
return Err(XlogError::Kernel(format!(
"cuMemsetD8Async (groupby init) failed: {:?}",
res
)));
}
}
Ok(())
}
/// Strict-recorder variant of [`Self::groupby_multi_agg`].
///
/// Sort + pack + boundary detect + scan + capture-num-groups
/// + group-id derivation + per-aggregation kernels + key
/// gather/unpack — every kernel runs on the caller-supplied
/// `launch_stream` via `launch_on_stream`. Composition with
/// existing recorded primitives:
/// * `sort_recorded` (slice #5) does the typed multi-column
/// sort and commits its own LaunchRecorder.
/// * `pack_keys_gpu_on_stream` (this slice) runs the fused
/// pack+hash kernel on launch_stream and records its
/// buffers directly via `record_block_use`.
/// * `multiblock_scan_u32_inplace_on_stream` (slice #4)
/// drives the boundary-position scan tail.
/// * The groupby-specific chain has its own LaunchRecorder
/// for the boundary mask, group ids, group_first
/// indices, num_groups scalar, per-aggregation outputs,
/// and key gather/unpack outputs.
///
/// Composition correctness: each recorder commits
/// independently; the runtime's record-all + wait-all
/// `last_use_events: Vec<CudaEvent>` semantics chain the
/// deallocate safety end-to-end across the four primitive
/// commits.
///
/// # Scope (narrow)
/// * U32 / Symbol key columns only (sort_recorded
/// constraint).
/// * Aggs: Count, Sum, Min, Max. LogSumExp is rejected with
/// a structured error — its multi-kernel chain is
/// outside this recorded provider surface.
/// * Manager must be runtime-backed.
pub fn groupby_multi_agg_recorded(
&self,
buffer: &CudaBuffer,
key_cols: &[usize],
aggs: &[(usize, AggOp)],
launch_stream: crate::device_runtime::StreamId,
) -> Result<CudaBuffer> {
use crate::launch::LaunchRecorder;
let runtime = self.memory.runtime().ok_or_else(|| {
XlogError::Kernel(
"groupby_multi_agg_recorded requires a runtime-backed GpuMemoryManager".to_string(),
)
})?;
let cu_stream = runtime
.stream_pool()
.resolve(launch_stream)
.ok_or_else(|| {
XlogError::Kernel(format!(
"groupby_multi_agg_recorded: launch_stream StreamId({}) does not resolve",
launch_stream.0
))
})?;
let num_rows = self.device_row_count(buffer)?;
if num_rows == 0 {
let result_schema =
self.groupby_multi_agg_result_schema(buffer.schema(), key_cols, aggs);
return self.create_empty_buffer(result_schema);
}
if num_rows > u32::MAX as usize {
return Err(XlogError::Kernel(format!(
"GroupBy supports at most {} rows, got {}",
u32::MAX,
num_rows
)));
}
if key_cols.is_empty() {
return Err(XlogError::Kernel(
"GroupBy requires at least one key column".to_string(),
));
}
if aggs.is_empty() {
return Err(XlogError::Kernel(
"GroupBy requires at least one aggregation".to_string(),
));
}
if key_cols.len() > 4 {
return Err(XlogError::Kernel(
"groupby_multi_agg_recorded: max 4 key columns supported (pack_keys constraint)"
.to_string(),
));
}
for &k in key_cols {
if k >= buffer.arity() {
return Err(XlogError::Kernel(format!(
"Key column {} out of bounds (arity {})",
k,
buffer.arity()
)));
}
let ty = buffer
.schema()
.column_type(k)
.ok_or_else(|| XlogError::Kernel("Key column has no type".to_string()))?;
if !matches!(ty, ScalarType::U32 | ScalarType::Symbol) {
return Err(XlogError::Kernel(format!(
"groupby_multi_agg_recorded: key column type {:?} unsupported (U32 / Symbol \
only); multi-type sort_recorded is deferred",
ty
)));
}
}
for &(value_col, agg_op) in aggs {
if value_col >= buffer.arity() {
return Err(XlogError::Kernel(format!(
"Value column {} out of bounds (arity {})",
value_col,
buffer.arity()
)));
}
let value_ty = buffer
.schema()
.column_type(value_col)
.ok_or_else(|| XlogError::Kernel("Value column has no type".to_string()))?;
match agg_op {
AggOp::Count => {}
AggOp::Sum | AggOp::Min | AggOp::Max => {
if value_ty != ScalarType::U32 {
return Err(XlogError::Kernel(format!(
"{:?} currently requires U32 values, got {:?}",
agg_op, value_ty
)));
}
}
AggOp::LogSumExp => {
return Err(XlogError::Kernel(
"groupby_multi_agg_recorded: LogSumExp not yet supported in the \
recorded path (multi-kernel chain deferred to a future slice)"
.to_string(),
));
}
}
}
// Step 1: sort by key columns (recorded sort, U32/Symbol only).
let sorted = self.sort_recorded(buffer, key_cols, launch_stream)?;
let num_rows = self.device_row_count(&sorted)?;
if num_rows > u32::MAX as usize {
return Err(XlogError::Kernel(format!(
"GroupBy supports at most {} rows, got {}",
u32::MAX,
num_rows
)));
}
let num_rows = num_rows as u32;
let row_cap_usize = num_rows as usize;
let row_cap_u32 = num_rows;
let row_cap_u64 = num_rows as u64;
// Step 2: pack keys on launch_stream.
let packed =
self.pack_keys_gpu_on_stream(&sorted, key_cols, &cu_stream, launch_stream, runtime)?;
if packed.key_bytes == 0 || packed.key_bytes % 4 != 0 {
return Err(XlogError::Kernel(format!(
"GroupBy key packing produced {} bytes per row (expected multiple of 4); \
Bool keys are not supported",
packed.key_bytes
)));
}
let segments_per_row = (packed.key_bytes / 4) as usize;
let total_segments = row_cap_usize * segments_per_row;
let packed_u32 = self.bytes_as_u32_view(&packed.packed_keys, total_segments)?;
// Step 3: allocate ALL fresh runtime-backed buffers
// BEFORE the GroupBy recorder (Rust drop order — the
// recorder's 'b lifetime must outlive every borrow it
// holds via post_preflight_fresh).
let boundaries = self.memory.alloc::<u8>(row_cap_usize)?;
let block_size = 256u32;
let num_blocks = num_rows.div_ceil(block_size);
let cfg = LaunchConfig {
grid_dim: (num_blocks, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
};
let d_boundary_pos = self.memory.alloc::<u32>(row_cap_usize)?;
let mut d_block_sums = self.memory.alloc::<u32>(num_blocks as usize)?;
let mut d_num_groups = self.memory.alloc::<u32>(1)?;
let mut group_ids = self.memory.alloc::<u32>(row_cap_usize)?;
let mut group_first_idx = self.memory.alloc::<u32>(row_cap_usize)?;
// Per-aggregation outputs (allocated up front).
let mut agg_outputs: Vec<TrackedCudaSlice<u8>> = Vec::with_capacity(aggs.len());
for &(_, agg_op) in aggs {
let elem_size = match agg_op {
AggOp::Count | AggOp::Sum => std::mem::size_of::<u64>(),
AggOp::Min | AggOp::Max => std::mem::size_of::<u32>(),
AggOp::LogSumExp => unreachable!("rejected above"),
};
let bytes = row_cap_usize
.checked_mul(elem_size)
.ok_or_else(|| XlogError::Kernel("groupby agg output size overflow".to_string()))?;
agg_outputs.push(self.memory.alloc::<u8>(bytes)?);
}
// Key gather + unpack outputs.
let group_packed_bytes = row_cap_usize
.checked_mul(packed.key_bytes as usize)
.ok_or_else(|| XlogError::Kernel("GroupBy packed size overflow".to_string()))?;
let mut group_packed = self.memory.alloc::<u8>(group_packed_bytes)?;
let mut col_offsets: Vec<u32> = Vec::with_capacity(key_cols.len());
let mut col_sizes: Vec<u32> = Vec::with_capacity(key_cols.len());
let mut offset = 0u32;
for &key_col in key_cols {
let s = buffer
.schema()
.column_type(key_col)
.map(|t| t.size_bytes() as u32)
.unwrap_or(4);
col_offsets.push(offset);
col_sizes.push(s);
offset = offset
.checked_add(s)
.ok_or_else(|| XlogError::Kernel("GroupBy key size overflow".to_string()))?;
}
let mut key_unpacked: Vec<TrackedCudaSlice<u8>> = Vec::with_capacity(key_cols.len());
for &col_size in &col_sizes {
let bytes = row_cap_usize
.checked_mul(col_size as usize)
.ok_or_else(|| XlogError::Kernel("GroupBy key column overflow".to_string()))?;
key_unpacked.push(self.memory.alloc::<u8>(bytes)?);
}
// Build the recorder. Reads BEFORE preflight: the
// sorted buffer's value columns + num_rows_device, plus
// the packed_keys produced by pack_keys_on_stream
// (which already recorded its own writes against
// launch_stream — we record reads here so the chain
// ordering is explicit).
let mut rec = LaunchRecorder::new_strict(launch_stream);
rec.read(sorted.num_rows_device());
// sort_recorded already recorded reads on every input
// column on launch_stream; packed_keys is the new
// launch_stream-resident input to the boundary chain.
rec.read(&packed.packed_keys);
for &(value_col, _) in aggs {
let c = sorted.column(value_col).ok_or_else(|| {
XlogError::Kernel(format!("Value column {} not found", value_col))
})?;
rec.read_column(c);
}
rec.write(&boundaries);
rec.write(&d_boundary_pos);
rec.write(&d_block_sums);
rec.write(&d_num_groups);
rec.write(&group_ids);
rec.write(&group_first_idx);
rec.write(&group_packed);
for o in &agg_outputs {
rec.write(o);
}
for k in &key_unpacked {
rec.write(k);
}
rec.preflight(runtime).map_err(|e| {
XlogError::Kernel(format!(
"groupby_multi_agg_recorded: preflight failed: {}",
e
))
})?;
let device = self.device.inner();
// Step 4: detect_group_boundaries on launch_stream.
let boundary_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::DETECT_GROUP_BOUNDARIES)
.ok_or_else(|| {
XlogError::Kernel("detect_group_boundaries kernel not found".to_string())
})?;
// SAFETY: detect_group_boundaries(packed_u32, num_rows, segments_per_row, segments_per_row, boundaries)
unsafe {
boundary_func.clone().launch_on_stream(
&cu_stream,
cfg,
(
&packed_u32,
num_rows,
segments_per_row as u32,
segments_per_row as u32,
&boundaries,
),
)
}
.map_err(|e| {
XlogError::Kernel(format!("detect_group_boundaries (on_stream) failed: {}", e))
})?;
// Step 5: multi-block scan over boundary mask (yielding boundary positions).
let phase1_fn = device
.get_func(SCAN_MODULE, scan_kernels::MULTIBLOCK_SCAN_PHASE1)
.ok_or_else(|| {
XlogError::Kernel("Failed to get multiblock_scan_phase1 kernel".to_string())
})?;
// SAFETY: multiblock_scan_phase1(mask, prefix_sum, block_sums, n)
unsafe {
phase1_fn.clone().launch_on_stream(
&cu_stream,
LaunchConfig {
grid_dim: (num_blocks, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
},
(&boundaries, &d_boundary_pos, &d_block_sums, num_rows),
)
}
.map_err(|e| {
XlogError::Kernel(format!("multiblock_scan_phase1 (on_stream) failed: {}", e))
})?;
if num_blocks > 1 {
self.multiblock_scan_u32_inplace_on_stream(
&mut d_block_sums,
num_blocks,
&cu_stream,
launch_stream,
runtime,
)?;
let phase3_fn = device
.get_func(SCAN_MODULE, scan_kernels::MULTIBLOCK_SCAN_PHASE3)
.ok_or_else(|| {
XlogError::Kernel("Failed to get multiblock_scan_phase3 kernel".to_string())
})?;
// SAFETY: multiblock_scan_phase3(prefix_sum, block_offsets, n)
unsafe {
phase3_fn.clone().launch_on_stream(
&cu_stream,
LaunchConfig {
grid_dim: (num_blocks, 1, 1),
block_dim: (block_size, 1, 1),
shared_mem_bytes: 0,
},
(&d_boundary_pos, &d_block_sums, num_rows),
)
}
.map_err(|e| {
XlogError::Kernel(format!("multiblock_scan_phase3 (on_stream) failed: {}", e))
})?;
}
// Step 6: capture_num_groups on launch_stream.
let capture_fn = device
.get_func(GROUPBY_MODULE, groupby_kernels::CAPTURE_NUM_GROUPS)
.ok_or_else(|| XlogError::Kernel("capture_num_groups kernel not found".to_string()))?;
// SAFETY: capture_num_groups(boundary_pos, boundaries, num_rows, num_groups)
unsafe {
capture_fn.clone().launch_on_stream(
&cu_stream,
LaunchConfig {
grid_dim: (1, 1, 1),
block_dim: (1, 1, 1),
shared_mem_bytes: 0,
},
(&d_boundary_pos, &boundaries, num_rows, &mut d_num_groups),
)
}
.map_err(|e| XlogError::Kernel(format!("capture_num_groups (on_stream) failed: {}", e)))?;
// Step 7: derive group_ids + group_first_idx on launch_stream.
let group_ids_fn = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUP_IDS_FROM_BOUNDARIES)
.ok_or_else(|| {
XlogError::Kernel("group_ids_from_boundaries kernel not found".to_string())
})?;
let group_start_fn = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUP_START_INDICES)
.ok_or_else(|| XlogError::Kernel("group_start_indices kernel not found".to_string()))?;
// SAFETY: matches kernel signatures.
unsafe {
group_ids_fn.clone().launch_on_stream(
&cu_stream,
cfg,
(&boundaries, &d_boundary_pos, num_rows, &mut group_ids),
)
}
.map_err(|e| {
XlogError::Kernel(format!(
"group_ids_from_boundaries (on_stream) failed: {}",
e
))
})?;
unsafe {
group_start_fn.clone().launch_on_stream(
&cu_stream,
cfg,
(&boundaries, &d_boundary_pos, num_rows, &mut group_first_idx),
)
}
.map_err(|e| XlogError::Kernel(format!("group_start_indices (on_stream) failed: {}", e)))?;
// Step 8: per-aggregation kernels.
for ((value_col, agg_op), output) in aggs.iter().zip(agg_outputs.iter_mut()) {
let values = sorted.column(*value_col).ok_or_else(|| {
XlogError::Kernel(format!("Value column {} not found", value_col))
})?;
match agg_op {
AggOp::Count => {
self.memset_zeros_u8_on_stream(output, &cu_stream)?;
let count_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_COUNT)
.ok_or_else(|| {
XlogError::Kernel("groupby_count kernel not found".to_string())
})?;
// SAFETY: groupby_count(boundaries, group_ids, num_rows, counts)
unsafe {
count_func.clone().launch_on_stream(
&cu_stream,
cfg,
(&boundaries, &group_ids, num_rows, &*output),
)
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_count (on_stream) failed: {}", e))
})?;
}
AggOp::Sum => {
self.memset_zeros_u8_on_stream(output, &cu_stream)?;
let values_view = self.column_as_u32_view(values, row_cap_usize)?;
let sum_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_SUM)
.ok_or_else(|| {
XlogError::Kernel("groupby_sum kernel not found".to_string())
})?;
// SAFETY: groupby_sum(values, group_ids, num_rows, sums)
unsafe {
sum_func.clone().launch_on_stream(
&cu_stream,
cfg,
(&values_view, &group_ids, num_rows, &*output),
)
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_sum (on_stream) failed: {}", e))
})?;
}
AggOp::Min => {
let fill_fn = device
.get_func(ARITH_MODULE, arith_kernels::ARITH_FILL_CONST_U32)
.ok_or_else(|| {
XlogError::Kernel("arith_fill_const_u32 not found".to_string())
})?;
let fill_config = LaunchConfig::for_num_elems(row_cap_u32);
// SAFETY: arith_fill_const_u32(value, n, output)
unsafe {
fill_fn.clone().launch_on_stream(
&cu_stream,
fill_config,
(u32::MAX, row_cap_u32, &mut *output),
)
}
.map_err(|e| {
XlogError::Kernel(format!("arith_fill_const_u32 (on_stream) failed: {}", e))
})?;
let values_view = self.column_as_u32_view(values, row_cap_usize)?;
let min_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_MIN)
.ok_or_else(|| {
XlogError::Kernel("groupby_min kernel not found".to_string())
})?;
// SAFETY: groupby_min(values, group_ids, num_rows, mins)
unsafe {
min_func.clone().launch_on_stream(
&cu_stream,
cfg,
(&values_view, &group_ids, num_rows, &*output),
)
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_min (on_stream) failed: {}", e))
})?;
}
AggOp::Max => {
self.memset_zeros_u8_on_stream(output, &cu_stream)?;
let values_view = self.column_as_u32_view(values, row_cap_usize)?;
let max_func = device
.get_func(GROUPBY_MODULE, groupby_kernels::GROUPBY_MAX)
.ok_or_else(|| {
XlogError::Kernel("groupby_max kernel not found".to_string())
})?;
// SAFETY: groupby_max(values, group_ids, num_rows, maxs)
unsafe {
max_func.clone().launch_on_stream(
&cu_stream,
cfg,
(&values_view, &group_ids, num_rows, &*output),
)
}
.map_err(|e| {
XlogError::Kernel(format!("groupby_max (on_stream) failed: {}", e))
})?;
}
AggOp::LogSumExp => unreachable!("rejected above"),
}
}
// Step 9: gather packed key rows by group_first_idx.
let gather_fn = device
.get_func(PACK_MODULE, pack_kernels::GATHER_PACKED_ROWS_COUNTED)
.ok_or_else(|| {
XlogError::Kernel("gather_packed_rows_counted kernel not found".to_string())
})?;
let gather_config = LaunchConfig::for_num_elems(row_cap_u32);
// SAFETY: gather_packed_rows_counted(src_packed, row_size, indices, num_rows, capacity_rows, dst_packed)
unsafe {
gather_fn.clone().launch_on_stream(
&cu_stream,
gather_config,
(
&packed.packed_keys,
packed.key_bytes,
&group_first_idx,
&d_num_groups,
row_cap_u32,
&mut group_packed,
),
)
}
.map_err(|e| {
XlogError::Kernel(format!(
"gather_packed_rows_counted (on_stream) failed: {}",
e
))
})?;
// Step 10: unpack each key column from the gathered packed rows.
let unpack_fn = device
.get_func(PACK_MODULE, pack_kernels::UNPACK_COLUMN_COUNTED)
.ok_or_else(|| {
XlogError::Kernel("unpack_column_counted kernel not found".to_string())
})?;
let unpack_config = LaunchConfig::for_num_elems(row_cap_u32);
for idx in 0..key_cols.len() {
let col_size = col_sizes[idx];
let col_offset = col_offsets[idx];
// SAFETY: unpack_column_counted(packed, row_size, col_offset, col_size,
// num_rows, capacity_rows, col_output)
unsafe {
unpack_fn.clone().launch_on_stream(
&cu_stream,
unpack_config,
(
&group_packed,
packed.key_bytes,
col_offset,
col_size,
&d_num_groups,
row_cap_u32,
&mut key_unpacked[idx],
),
)
}
.map_err(|e| {
XlogError::Kernel(format!("unpack_column_counted (on_stream) failed: {}", e))
})?;
}
// Record fresh writes via post-preflight escape hatch.
rec.commit(runtime).map_err(|e| {
XlogError::Kernel(format!("groupby_multi_agg_recorded: commit failed: {}", e))
})?;
// Step 11: build the result CudaBuffer (keys then aggs).
let mut result_columns: Vec<CudaColumn> = Vec::with_capacity(key_cols.len() + aggs.len());
for k in key_unpacked {
result_columns.push(k.into());
}
for o in agg_outputs {
result_columns.push(o.into());
}
let result_schema = self.groupby_multi_agg_result_schema(buffer.schema(), key_cols, aggs);
Ok(CudaBuffer::from_columns(
result_columns,
row_cap_u64,
d_num_groups,
result_schema,
))
}
/// Convenience single-aggregation entry, mirrors
/// [`Self::groupby_agg`]. Forwards to
/// [`Self::groupby_multi_agg_recorded`].
pub fn groupby_agg_recorded(
&self,
input: &CudaBuffer,
key_cols: &[usize],
agg: AggOp,
value_col: usize,
launch_stream: crate::device_runtime::StreamId,
) -> Result<CudaBuffer> {
self.groupby_multi_agg_recorded(input, key_cols, &[(value_col, agg)], launch_stream)
}
}