teeny-kernels 0.2.0

Teenygrad is a high-performance, memory-safe Rust ML training and inference library. It targets devices from microcontrollers to traditional GPUs with statically-typed kernels and full async support.
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
/*
 * Copyright (c) 2026 Teenygrad.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! Reduction kernels — each CTA handles one output element (one "row" of the
//! flattened [outer, inner] view).  The caller is responsible for reshaping
//! the input to `[n_outer, n_inner]` before invoking these kernels.
//!
//! Grid: `[n_outer, 1, 1]`
//! Block: `[BLOCK_INNER, 1, 1]`

#![allow(non_snake_case)]

use teeny_core::dtype::{Float, Num};
use teeny_macros::kernel;
use teeny_triton::triton::{
    types::{AddOffsets, Comparison},
    *,
};

// ── Helper macro for reduction RuntimeOp ─────────────────────────────────────

/// Standard reduction RuntimeOp: input shape [outer * inner], output shape [outer].
/// pack_args: x_ptr, y_ptr, n_inner, n_outer
macro_rules! impl_reduce_num_runtime_op {
    ($Fwd:ident) => {
        impl<D: Num + Send + Sync + 'static> teeny_core::model::RuntimeOp for $Fwd<D> {
            fn n_activation_inputs(&self) -> usize {
                1
            }
            fn param_shapes(&self, _: &[&[usize]], _: &[usize]) -> Vec<Vec<usize>> {
                vec![]
            }
            fn pack_args(
                &self,
                inputs: &[(teeny_core::model::RawPtr, &[usize])],
                _: &[teeny_core::model::RawPtr],
                output: teeny_core::model::RawPtr,
                output_shape: &[usize],
                _: i32,
                visitor: &mut dyn teeny_core::device::program::ArgVisitor,
            ) {
                // output_shape has been reduced; we need input_shape for n_inner.
                // n_outer = product of output dims
                // n_inner = product of input dims / n_outer
                let n_outer: usize = output_shape.iter().product::<usize>().max(1);
                let n_total: usize = inputs[0].1.iter().product();
                let n_inner: usize = if n_outer > 0 {
                    n_total / n_outer
                } else {
                    n_total
                };
                visitor.visit_ptr(inputs[0].0);
                visitor.visit_ptr(output);
                visitor.visit_i32(n_inner as i32);
                visitor.visit_i32(n_outer as i32);
            }
            fn block(&self) -> [u32; 3] {
                [self.block_inner as u32, 1, 1]
            }
            fn grid(&self, output_shape: &[usize]) -> [u32; 3] {
                let n_outer: usize = output_shape.iter().product::<usize>().max(1);
                [n_outer as u32, 1, 1]
            }
        }
    };
}

macro_rules! impl_reduce_float_runtime_op {
    ($Fwd:ident) => {
        impl<D: Float + Send + Sync + 'static> teeny_core::model::RuntimeOp for $Fwd<D> {
            fn n_activation_inputs(&self) -> usize {
                1
            }
            fn param_shapes(&self, _: &[&[usize]], _: &[usize]) -> Vec<Vec<usize>> {
                vec![]
            }
            fn pack_args(
                &self,
                inputs: &[(teeny_core::model::RawPtr, &[usize])],
                _: &[teeny_core::model::RawPtr],
                output: teeny_core::model::RawPtr,
                output_shape: &[usize],
                _: i32,
                visitor: &mut dyn teeny_core::device::program::ArgVisitor,
            ) {
                let n_outer: usize = output_shape.iter().product::<usize>().max(1);
                let n_total: usize = inputs[0].1.iter().product();
                let n_inner: usize = if n_outer > 0 {
                    n_total / n_outer
                } else {
                    n_total
                };
                visitor.visit_ptr(inputs[0].0);
                visitor.visit_ptr(output);
                visitor.visit_i32(n_inner as i32);
                visitor.visit_i32(n_outer as i32);
            }
            fn block(&self) -> [u32; 3] {
                [self.block_inner as u32, 1, 1]
            }
            fn grid(&self, output_shape: &[usize]) -> [u32; 3] {
                let n_outer: usize = output_shape.iter().product::<usize>().max(1);
                [n_outer as u32, 1, 1]
            }
        }
    };
}

// ── ReduceSum ─────────────────────────────────────────────────────────────────

/// Forward: y[row] = sum(x[row, :])
// ANCHOR: reduce_sum_forward
#[kernel]
pub fn reduce_sum_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let sum = T::sum(x, Some(0), true); // [1] or scalar
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), sum, None, &[], None, None);
}

// ANCHOR_END: reduce_sum_forward

impl_reduce_num_runtime_op!(ReduceSumForward);

// ── ReduceMean ────────────────────────────────────────────────────────────────

/// Forward: y[row] = mean(x[row, :])
#[kernel]
pub fn reduce_mean_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let sum = T::sum(x, Some(0), true);
    let n_f = T::cast::<i32, D>(T::full::<i32>(&[1], n_inner), None, false);
    let mean = sum / n_f;
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), mean, None, &[], None, None);
}

impl_reduce_float_runtime_op!(ReduceMeanForward);

// ── ReduceMax ─────────────────────────────────────────────────────────────────

/// Forward: y[row] = max(x[row, :])
#[kernel]
pub fn reduce_max_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    // Load with a very small fill value for masked lanes
    let neg_inf = T::cast::<f32, D>(
        T::full::<f32>(&[BLOCK_INNER], -3.4028235e38_f32),
        None,
        false,
    );
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(neg_inf),
        &[],
        None,
        None,
        None,
        false,
    );
    let val = T::max(x, Some(0), true);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_num_runtime_op!(ReduceMaxForward);

// ── ReduceMin ─────────────────────────────────────────────────────────────────

/// Forward: y[row] = min(x[row, :])
#[kernel]
pub fn reduce_min_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let pos_inf = T::cast::<f32, D>(
        T::full::<f32>(&[BLOCK_INNER], 3.4028235e38_f32),
        None,
        false,
    );
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(pos_inf),
        &[],
        None,
        None,
        None,
        false,
    );
    let val = T::min(x, Some(0), true);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_num_runtime_op!(ReduceMinForward);

// ── ReduceL1 ──────────────────────────────────────────────────────────────────

/// Forward: y[row] = sum(|x[row, :]|)
#[kernel]
pub fn reduce_l1_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let val = T::sum(T::abs(x), Some(0), true);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_num_runtime_op!(ReduceL1Forward);

// ── ReduceL2 ──────────────────────────────────────────────────────────────────

/// Forward: y[row] = sqrt(sum(x[row, :]^2))
#[kernel]
pub fn reduce_l2_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let sum_sq = T::sum(x * x, Some(0), true);
    let val = T::sqrt(sum_sq);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_float_runtime_op!(ReduceL2Forward);

// ── ReduceSumSquare ───────────────────────────────────────────────────────────

/// Forward: y[row] = sum(x[row, :]^2)
#[kernel]
pub fn reduce_sum_square_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let val = T::sum(x * x, Some(0), true);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_num_runtime_op!(ReduceSumSquareForward);

// ── ReduceLogSum ──────────────────────────────────────────────────────────────

/// Forward: y[row] = log(sum(x[row, :]))  (numerically unsafe; use ReduceLogSumExp for stable)
#[kernel]
pub fn reduce_log_sum_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let sum = T::sum(x, Some(0), true);
    let val = T::log(sum);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_float_runtime_op!(ReduceLogSumForward);

// ── ReduceLogSumExp ───────────────────────────────────────────────────────────

/// Forward: y[row] = log(sum(exp(x[row, :]))) — numerically stable via max subtraction
#[kernel]
pub fn reduce_log_sum_exp_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let neg_inf = T::cast::<f32, D>(
        T::full::<f32>(&[BLOCK_INNER], -3.4028235e38_f32),
        None,
        false,
    );
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(neg_inf),
        &[],
        None,
        None,
        None,
        false,
    );
    // Numerically stable: log(sum(exp(x))) = m + log(sum(exp(x - m)))
    // where m = max(x)
    let m = T::max(x, Some(0), true); // [1]
    let fill = T::cast::<f32, D>(T::full::<f32>(&[BLOCK_INNER], 0.0_f32), None, false);
    let x_adj = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(fill),
        &[],
        None,
        None,
        None,
        false,
    );
    let sum_exp = T::sum(T::exp(x_adj - m), Some(0), true);
    let val = m + T::log(sum_exp);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_float_runtime_op!(ReduceLogSumExpForward);

// ── ReduceProd ────────────────────────────────────────────────────────────────

/// Forward: y[row] = prod(x[row, :])
/// Note: implemented as exp(sum(log(x))) — only valid for positive x.
/// For general use this is a placeholder.
#[kernel]
pub fn reduce_prod_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    // Fill with 1.0 for masked-off lanes so they don't affect the product.
    let one_fill = T::cast::<f32, D>(T::full::<f32>(&[BLOCK_INNER], 1.0_f32), None, false);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(one_fill),
        &[],
        None,
        None,
        None,
        false,
    );
    // exp(sum(log(x))) approximates product for positive x.
    let val = T::exp(T::sum(T::log(x), Some(0), true));
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_float_runtime_op!(ReduceProdForward);

// ── CumSum ────────────────────────────────────────────────────────────────────

/// Forward: y = cumsum(x, axis=0) over a 1-D block
/// Each CTA handles one complete row (n_inner elements).
#[kernel]
pub fn cum_sum_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    // Use Triton's cumsum: axis=0 over the 1-D block, not reversed.
    let y = T::cumsum(x, 0, false);
    T::store(y_ptr.add_offsets(offsets), y, Some(mask), &[], None, None);
}

impl<D: Num + Send + Sync + 'static> teeny_core::model::RuntimeOp for CumSumForward<D> {
    fn n_activation_inputs(&self) -> usize {
        1
    }
    fn param_shapes(&self, _: &[&[usize]], _: &[usize]) -> Vec<Vec<usize>> {
        vec![]
    }
    fn pack_args(
        &self,
        inputs: &[(teeny_core::model::RawPtr, &[usize])],
        _: &[teeny_core::model::RawPtr],
        output: teeny_core::model::RawPtr,
        output_shape: &[usize],
        _: i32,
        visitor: &mut dyn teeny_core::device::program::ArgVisitor,
    ) {
        // For cumsum: output_shape == input_shape; n_outer = all dims except last
        let n_total: usize = output_shape.iter().product();
        let n_inner = output_shape.last().copied().unwrap_or(1);
        let n_outer = n_total / n_inner;
        visitor.visit_ptr(inputs[0].0);
        visitor.visit_ptr(output);
        visitor.visit_i32(n_inner as i32);
        visitor.visit_i32(n_outer as i32);
    }
    fn block(&self) -> [u32; 3] {
        [self.block_inner as u32, 1, 1]
    }
    fn grid(&self, output_shape: &[usize]) -> [u32; 3] {
        let n_total: usize = output_shape.iter().product();
        let n_inner = output_shape.last().copied().unwrap_or(1);
        let n_outer = n_total / n_inner;
        [n_outer as u32, 1, 1]
    }
}

// ── CumProd ───────────────────────────────────────────────────────────────────

/// Forward: y = cumprod(x, axis=0) over a 1-D block
#[kernel]
pub fn cum_prod_forward<T: Triton, D: Num, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let y = T::cumprod(x, 0, false);
    T::store(y_ptr.add_offsets(offsets), y, Some(mask), &[], None, None);
}

impl<D: Num + Send + Sync + 'static> teeny_core::model::RuntimeOp for CumProdForward<D> {
    fn n_activation_inputs(&self) -> usize {
        1
    }
    fn param_shapes(&self, _: &[&[usize]], _: &[usize]) -> Vec<Vec<usize>> {
        vec![]
    }
    fn pack_args(
        &self,
        inputs: &[(teeny_core::model::RawPtr, &[usize])],
        _: &[teeny_core::model::RawPtr],
        output: teeny_core::model::RawPtr,
        output_shape: &[usize],
        _: i32,
        visitor: &mut dyn teeny_core::device::program::ArgVisitor,
    ) {
        let n_total: usize = output_shape.iter().product();
        let n_inner = output_shape.last().copied().unwrap_or(1);
        let n_outer = n_total / n_inner;
        visitor.visit_ptr(inputs[0].0);
        visitor.visit_ptr(output);
        visitor.visit_i32(n_inner as i32);
        visitor.visit_i32(n_outer as i32);
    }
    fn block(&self) -> [u32; 3] {
        [self.block_inner as u32, 1, 1]
    }
    fn grid(&self, output_shape: &[usize]) -> [u32; 3] {
        let n_total: usize = output_shape.iter().product();
        let n_inner = output_shape.last().copied().unwrap_or(1);
        let n_outer = n_total / n_inner;
        [n_outer as u32, 1, 1]
    }
}

// ArgMax and ArgMin kernels are deferred — the Triton type system requires
// I32Tensor → Tensor<i32> coercion that isn't directly supported via #[kernel].
// These are handled as TODO in the lowering match arm.

// ── GlobalAvgPool ─────────────────────────────────────────────────────────────
//
// Treats input as [n_outer, n_inner] and averages over n_inner.
// For a [N, C, H, W] input: n_outer = N * C, n_inner = H * W.

/// Forward: y[row] = mean(x[row, :])  (same as ReduceMean)
#[kernel]
pub fn global_avg_pool_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(T::zeros::<D>(&[BLOCK_INNER])),
        &[],
        None,
        None,
        None,
        false,
    );
    let sum = T::sum(x, Some(0), true);
    let n_f = T::cast::<i32, D>(T::full::<i32>(&[1], n_inner), None, false);
    let mean = sum / n_f;
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), mean, None, &[], None, None);
}

impl_reduce_float_runtime_op!(GlobalAvgPoolForward);

// ── GlobalMaxPool ─────────────────────────────────────────────────────────────

/// Forward: y[row] = max(x[row, :])  (same as ReduceMax)
#[kernel]
pub fn global_max_pool_forward<T: Triton, D: Float, const BLOCK_INNER: i32>(
    x_ptr: T::Pointer<D>,
    y_ptr: T::Pointer<D>,
    n_inner: i32,
    n_outer: i32,
) where
    T::I32Tensor: types::Tensor<i32, 1>,
    T::I32Tensor: Comparison<i32, BoolTensor = T::BoolTensor>,
    T::Pointer<D>: AddOffsets<i32, 1, T::I32Tensor, Output = T::Tensor<T::Pointer<D>>>,
{
    let row = T::program_id(Axis::X);
    if row >= n_outer {
        return;
    }
    let col_offsets = T::arange(0, BLOCK_INNER);
    let offsets = col_offsets + row * n_inner;
    let mask = col_offsets.lt(n_inner);
    let neg_inf = T::cast::<f32, D>(
        T::full::<f32>(&[BLOCK_INNER], -3.4028235e38_f32),
        None,
        false,
    );
    let x = T::load(
        x_ptr.add_offsets(offsets),
        Some(mask),
        Some(neg_inf),
        &[],
        None,
        None,
        None,
        false,
    );
    let val = T::max(x, Some(0), true);
    let row_offsets = T::arange(0, 1) + row;
    T::store(y_ptr.add_offsets(row_offsets), val, None, &[], None, None);
}

impl_reduce_float_runtime_op!(GlobalMaxPoolForward);