onnxruntime-ep-mlx 0.3.0

MLX-native ONNX Runtime execution provider (plugin EP) for Apple Silicon — binds mlx-c directly, no mlx-rs.
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
//! Reduction op handlers: ReduceSum/Mean/Max/Min/Prod/SumSquare/L1/L2/LogSum/LogSumExp, ArgMax,
//! ArgMin, CumSum and (multi-output) TopK. Faithful port of the C++ `ops/reduction.cc` +
//! `ops/reduction2.cc` + the ArgMin/ArgMax handlers from `ops/math.cc`.
//!
//! Both opset forms are handled: axes as the legacy INTS attribute (opset-13) AND as the opset-18
//! `axes` INPUT tensor (read at translate time via `RawHost`), plus `keepdims` and
//! `noop_with_empty_axes`. Zero-size inputs are handled ON MLX (Max/Min/LogSumExp fill a
//! correctly-shaped identity array instead of calling the aborting kernel).

use crate::engine::{MlxError, NodeDesc, Src, TranslationContext};
use crate::registry::{
    is_mlx_float, is_mlx_numeric, ClaimResult, NodeView, OpRegistration, OpRegistry, K_ANY_OPSET,
};
use crate::sys::mlx;
use crate::sys::ort;
use crate::{deny, require};

#[derive(Clone, Copy, PartialEq)]
enum Kind {
    Sum,
    Max,
    Mean,
    Min,
    Prod,
    LogSumExp,
}

#[derive(Clone, Copy, PartialEq)]
enum PreOp {
    None,
    Abs,
    Square,
}

#[derive(Clone, Copy, PartialEq)]
enum PostOp {
    None,
    Log,
    Sqrt,
}

fn has_axes_input(n: &NodeDesc) -> bool {
    n.inputs.len() >= 2 && n.inputs[1].source != Src::Absent
}

fn read_axes(ctx: &TranslationContext, n: &NodeDesc) -> Result<Vec<i64>, MlxError> {
    if has_axes_input(n) {
        return ctx.read_ints(&n.inputs[1]);
    }
    Ok(n.int_arrays.get("axes").cloned().unwrap_or_default())
}

fn normalize_axes(axes: &[i64], rank: i32) -> Result<Vec<i32>, MlxError> {
    let mut out: Vec<i32> = Vec::with_capacity(axes.len());
    for &raw in axes {
        let axis = if raw < 0 { raw + rank as i64 } else { raw };
        if axis < 0 || axis >= rank as i64 {
            return Err("MLX reduction axis is out of range".to_string());
        }
        let v = axis as i32;
        if out.contains(&v) {
            return Err("MLX reduction axes contain a duplicate".to_string());
        }
        out.push(v);
    }
    Ok(out)
}

/// Fill a correctly-shaped identity array for a zero-size Max/Min/LogSumExp reduction (the MLX kernel
/// aborts at construction on an empty input, so synthesise the result directly).
fn empty_reduce(
    ctx: &mut TranslationContext,
    x: mlx::mlx_array,
    axes: &[i32],
    reduce_all: bool,
    keepdims: bool,
    identity_float: f32,
) -> Result<mlx::mlx_array, MlxError> {
    let in_shape = ctx.shape_of(x);
    let rank = in_shape.len();
    let mut reduced = vec![false; rank];
    if reduce_all {
        reduced.iter_mut().for_each(|r| *r = true);
    } else {
        for &a in axes {
            if (a as usize) < rank {
                reduced[a as usize] = true;
            }
        }
    }
    let mut out_shape: Vec<i32> = Vec::new();
    for i in 0..rank {
        if reduced[i] {
            if keepdims {
                out_shape.push(1);
            }
        } else {
            out_shape.push(in_shape[i]);
        }
    }
    let dt = ctx.dtype_of(x);
    let is_float = dt == mlx::mlx_dtype__MLX_FLOAT32
        || dt == mlx::mlx_dtype__MLX_FLOAT16
        || dt == mlx::mlx_dtype__MLX_BFLOAT16;
    let ident = if is_float { identity_float } else { 0.0 };
    let mut scalar = ctx.scalar_f32(ident);
    if dt != mlx::mlx_dtype__MLX_FLOAT32 {
        scalar = ctx.astype(scalar, dt)?;
    }
    ctx.emit(|res, s| unsafe {
        mlx::mlx_full(res, out_shape.as_ptr(), out_shape.len(), scalar, dt, s)
    })
}

fn apply_reduction(
    ctx: &mut TranslationContext,
    x: mlx::mlx_array,
    axes: &[i32],
    reduce_all: bool,
    keepdims: bool,
    kind: Kind,
) -> Result<mlx::mlx_array, MlxError> {
    if matches!(kind, Kind::Max | Kind::Min | Kind::LogSumExp) && ctx.size_of(x) == 0 {
        let ident = f32::NEG_INFINITY; // Max/LogSumExp identity; Min uses +inf below
        let ident = if kind == Kind::Min {
            f32::INFINITY
        } else {
            ident
        };
        return empty_reduce(ctx, x, axes, reduce_all, keepdims, ident);
    }
    if reduce_all {
        match kind {
            Kind::Sum => ctx.emit(|res, s| unsafe { mlx::mlx_sum(res, x, keepdims, s) }),
            Kind::Max => ctx.emit(|res, s| unsafe { mlx::mlx_max(res, x, keepdims, s) }),
            Kind::Mean => ctx.emit(|res, s| unsafe { mlx::mlx_mean(res, x, keepdims, s) }),
            Kind::Min => ctx.emit(|res, s| unsafe { mlx::mlx_min(res, x, keepdims, s) }),
            Kind::Prod => ctx.emit(|res, s| unsafe { mlx::mlx_prod(res, x, keepdims, s) }),
            Kind::LogSumExp => {
                ctx.emit(|res, s| unsafe { mlx::mlx_logsumexp(res, x, keepdims, s) })
            }
        }
    } else {
        let n = axes.len();
        let p = axes.as_ptr();
        match kind {
            Kind::Sum => ctx.emit(|res, s| unsafe { mlx::mlx_sum_axes(res, x, p, n, keepdims, s) }),
            Kind::Max => ctx.emit(|res, s| unsafe { mlx::mlx_max_axes(res, x, p, n, keepdims, s) }),
            Kind::Mean => {
                ctx.emit(|res, s| unsafe { mlx::mlx_mean_axes(res, x, p, n, keepdims, s) })
            }
            Kind::Min => ctx.emit(|res, s| unsafe { mlx::mlx_min_axes(res, x, p, n, keepdims, s) }),
            Kind::Prod => {
                ctx.emit(|res, s| unsafe { mlx::mlx_prod_axes(res, x, p, n, keepdims, s) })
            }
            Kind::LogSumExp => {
                ctx.emit(|res, s| unsafe { mlx::mlx_logsumexp_axes(res, x, p, n, keepdims, s) })
            }
        }
    }
}

fn reduce(
    ctx: &mut TranslationContext,
    n: &NodeDesc,
    kind: Kind,
    pre: PreOp,
    post: PostOp,
) -> Result<(), MlxError> {
    let x = ctx.resolve(&n.inputs[0])?;
    let body = match pre {
        PreOp::None => x,
        PreOp::Abs => ctx.emit(|res, s| unsafe { mlx::mlx_abs(res, x, s) })?,
        PreOp::Square => ctx.emit(|res, s| unsafe { mlx::mlx_square(res, x, s) })?,
    };

    let has_axes = has_axes_input(n) || n.int_arrays.contains_key("axes");
    let raw_axes = read_axes(ctx, n)?;
    let noop = n.ints.get("noop_with_empty_axes").copied().unwrap_or(0) != 0;

    let apply_post =
        |ctx: &mut TranslationContext, v: mlx::mlx_array| -> Result<mlx::mlx_array, MlxError> {
            match post {
                PostOp::None => Ok(v),
                PostOp::Log => ctx.emit(|res, s| unsafe { mlx::mlx_log(res, v, s) }),
                PostOp::Sqrt => ctx.emit(|res, s| unsafe { mlx::mlx_sqrt(res, v, s) }),
            }
        };

    if has_axes && raw_axes.is_empty() && noop {
        let out = apply_post(ctx, body)?;
        ctx.bind(&n.outputs[0], out);
        return Ok(());
    }

    let rank = ctx.ndim(x) as i32;
    let axes = if raw_axes.is_empty() {
        Vec::new()
    } else {
        normalize_axes(&raw_axes, rank)?
    };
    let keepdims = n.ints.get("keepdims").copied().unwrap_or(1) != 0;
    let reduced = apply_reduction(ctx, body, &axes, raw_axes.is_empty(), keepdims, kind)?;
    let out = apply_post(ctx, reduced)?;
    ctx.bind(&n.outputs[0], out);
    Ok(())
}

macro_rules! reduce_handler {
    ($name:ident, $kind:expr, $pre:expr, $post:expr) => {
        fn $name(ctx: &mut TranslationContext, n: &NodeDesc) -> Result<(), MlxError> {
            reduce(ctx, n, $kind, $pre, $post)
        }
    };
}

reduce_handler!(reduce_sum_op, Kind::Sum, PreOp::None, PostOp::None);
reduce_handler!(reduce_mean_op, Kind::Mean, PreOp::None, PostOp::None);
reduce_handler!(reduce_max_op, Kind::Max, PreOp::None, PostOp::None);
reduce_handler!(reduce_min_op, Kind::Min, PreOp::None, PostOp::None);
reduce_handler!(reduce_prod_op, Kind::Prod, PreOp::None, PostOp::None);
reduce_handler!(reduce_sumsquare_op, Kind::Sum, PreOp::Square, PostOp::None);
reduce_handler!(reduce_l1_op, Kind::Sum, PreOp::Abs, PostOp::None);
reduce_handler!(reduce_l2_op, Kind::Sum, PreOp::Square, PostOp::Sqrt);
reduce_handler!(reduce_logsum_op, Kind::Sum, PreOp::None, PostOp::Log);
reduce_handler!(
    reduce_logsumexp_op,
    Kind::LogSumExp,
    PreOp::None,
    PostOp::None
);

// ---- ArgMin / ArgMax ---------------------------------------------------------------------------

type ArgOp =
    unsafe extern "C" fn(*mut mlx::mlx_array, mlx::mlx_array, i32, bool, mlx::mlx_stream) -> i32;

fn argminmax(ctx: &mut TranslationContext, n: &NodeDesc, op: ArgOp) -> Result<(), MlxError> {
    let x = ctx.resolve(&n.inputs[0])?;
    let rank = ctx.ndim(x) as i32;
    let mut axis = n.ints.get("axis").copied().unwrap_or(0) as i32;
    if axis < 0 {
        axis += rank;
    }
    let keepdims = n.ints.get("keepdims").copied().unwrap_or(1) != 0;
    let select_last = n.ints.get("select_last_index").copied().unwrap_or(0) != 0;
    let dim = ctx.dim(x, axis);

    let arg_input = if select_last {
        let rev = ctx.emit(|res, s| unsafe {
            mlx::mlx_arange(
                res,
                (dim - 1) as f64,
                -1.0,
                -1.0,
                mlx::mlx_dtype__MLX_INT32,
                s,
            )
        })?;
        ctx.emit(|res, s| unsafe { mlx::mlx_take_axis(res, x, rev, axis, s) })?
    } else {
        x
    };

    let result = ctx.emit(|res, s| unsafe { op(res, arg_input, axis, keepdims, s) })?;
    let mut result = ctx.astype(result, mlx::mlx_dtype__MLX_INT64)?;
    if select_last {
        let base = ctx.scalar_i64((dim - 1) as i64);
        result = ctx.binary(mlx::mlx_subtract, base, result)?;
    }
    ctx.bind(&n.outputs[0], result);
    Ok(())
}

fn argmax_op(ctx: &mut TranslationContext, n: &NodeDesc) -> Result<(), MlxError> {
    argminmax(ctx, n, mlx::mlx_argmax_axis)
}

fn argmin_op(ctx: &mut TranslationContext, n: &NodeDesc) -> Result<(), MlxError> {
    argminmax(ctx, n, mlx::mlx_argmin_axis)
}

// ---- CumSum ------------------------------------------------------------------------------------

fn read_scalar_int(
    ctx: &TranslationContext,
    r: &crate::engine::TensorRef,
) -> Result<i64, MlxError> {
    let h = ctx.raw_host(r)?;
    if h.count != 1 || h.data.is_null() {
        return Err("MLX expected a scalar integer input".to_string());
    }
    match h.dtype {
        t if t == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT32 => {
            Ok(unsafe { *(h.data as *const i32) } as i64)
        }
        t if t == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64 => {
            Ok(unsafe { *(h.data as *const i64) })
        }
        _ => Err("MLX expected an int32 or int64 scalar input".to_string()),
    }
}

fn cumsum_op(ctx: &mut TranslationContext, n: &NodeDesc) -> Result<(), MlxError> {
    let x = ctx.resolve(&n.inputs[0])?;
    let rank = ctx.ndim(x) as i64;
    let mut axis = read_scalar_int(ctx, &n.inputs[1])?;
    if axis < 0 {
        axis += rank;
    }
    if axis < 0 || axis >= rank {
        return Err("MLX CumSum axis is out of range".to_string());
    }
    let reverse = n.ints.get("reverse").copied().unwrap_or(0) != 0;
    let inclusive = n.ints.get("exclusive").copied().unwrap_or(0) == 0;
    let axis = axis as i32;
    let out = ctx.emit(|res, s| unsafe { mlx::mlx_cumsum(res, x, axis, reverse, inclusive, s) })?;
    ctx.bind(&n.outputs[0], out);
    Ok(())
}

// ---- TopK (multi-output) -----------------------------------------------------------------------

fn topk_op(ctx: &mut TranslationContext, n: &NodeDesc) -> Result<(), MlxError> {
    let x = ctx.resolve(&n.inputs[0])?;
    let shape = ctx.shape_of(x);
    let mut axis = n.ints.get("axis").copied().unwrap_or(-1) as i32;
    if axis < 0 {
        axis += shape.len() as i32;
    }
    if axis < 0 || axis as usize >= shape.len() {
        return Err("MLX TopK axis is out of range".to_string());
    }
    let k64 = read_scalar_int(ctx, &n.inputs[1])?;
    if k64 <= 0 || k64 > shape[axis as usize] as i64 {
        return Err("MLX TopK K is out of range".to_string());
    }
    let k = k64 as i32;
    let largest = n.ints.get("largest").copied().unwrap_or(1) != 0;

    let sort_input = if largest {
        ctx.emit(|res, s| unsafe { mlx::mlx_negative(res, x, s) })?
    } else {
        x
    };
    let sorted_indices =
        ctx.emit(|res, s| unsafe { mlx::mlx_argsort_axis(res, sort_input, axis, s) })?;
    let selector = ctx.emit(|res, s| unsafe {
        mlx::mlx_arange(res, 0.0, k as f64, 1.0, mlx::mlx_dtype__MLX_INT32, s)
    })?;
    let top_indices =
        ctx.emit(|res, s| unsafe { mlx::mlx_take_axis(res, sorted_indices, selector, axis, s) })?;
    let values =
        ctx.emit(|res, s| unsafe { mlx::mlx_take_along_axis(res, x, top_indices, axis, s) })?;
    let cvalues = ctx.contiguous(values)?;
    let cindices = ctx.contiguous(top_indices)?;
    ctx.bind(&n.outputs[0], cvalues);
    let idx64 = ctx.astype(cindices, mlx::mlx_dtype__MLX_INT64)?;
    ctx.bind(&n.outputs[1], idx64);
    Ok(())
}

// ---- claim predicates --------------------------------------------------------------------------

fn axes_are_valid(axes: &[i64], rank: i64) -> bool {
    let mut seen: Vec<i64> = Vec::new();
    for &a in axes {
        let axis = if a < 0 { a + rank } else { a };
        if axis < 0 || axis >= rank || seen.contains(&axis) {
            return false;
        }
        seen.push(axis);
    }
    true
}

fn reduction_claim(node: &NodeView, float_only: bool) -> ClaimResult {
    let nin = node.num_inputs();
    require!(
        (1..=2).contains(&nin) && node.num_outputs() == 1,
        "expects 1-2 inputs and 1 output, got {}in/{}out",
        nin,
        node.num_outputs()
    );
    let (x, out) = match (node.input_info(0), node.output_info(0)) {
        (Some(x), Some(o)) => (x, o),
        _ => deny!("missing tensor type/shape info on input or output"),
    };
    require!(
        !x.shape.is_empty(),
        "input must have rank >= 1 (got a scalar)"
    );
    require!(
        x.dtype == out.dtype,
        "input/output dtypes must match, got {} -> {}",
        crate::registry::ort_dtype_name(x.dtype),
        crate::registry::ort_dtype_name(out.dtype)
    );
    if float_only {
        require!(
            is_mlx_float(x.dtype),
            "dtype must be float32, float16, or bfloat16, got {}",
            crate::registry::ort_dtype_name(x.dtype)
        );
    } else {
        require!(
            is_mlx_numeric(x.dtype),
            "dtype must be an MLX-supported numeric type, got {}",
            crate::registry::ort_dtype_name(x.dtype)
        );
    }
    if nin == 2 && node.input_present(1) {
        let axes = match node.input_info(1) {
            Some(axes) => axes,
            None => deny!("missing tensor type/shape info on axes input"),
        };
        require!(
            axes.dtype == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64,
            "axes input must be int64, got {}",
            crate::registry::ort_dtype_name(axes.dtype)
        );
        require!(
            axes.shape.len() <= 1,
            "axes input must be a scalar or 1-D tensor, got rank {}",
            axes.shape.len()
        );
    }
    let (present, axes) = node.ints_attr("axes");
    require!(
        !present || axes_are_valid(&axes, x.shape.len() as i64),
        "axes attribute {:?} contains an out-of-range or duplicate axis for rank {}",
        axes,
        x.shape.len()
    );
    let keepdims = node.int_attr("keepdims", 1);
    let noop = node.int_attr("noop_with_empty_axes", 0);
    require!(
        keepdims == 0 || keepdims == 1,
        "keepdims must be 0 or 1 (got {keepdims})"
    );
    require!(
        noop == 0 || noop == 1,
        "noop_with_empty_axes must be 0 or 1 (got {noop})"
    );
    Ok(())
}

fn reduce_numeric_claim(node: &NodeView) -> ClaimResult {
    reduction_claim(node, false)
}

fn reduce_float_claim(node: &NodeView) -> ClaimResult {
    reduction_claim(node, true)
}

fn argminmax_claim(node: &NodeView) -> ClaimResult {
    require!(
        node.num_inputs() == 1 && node.num_outputs() == 1,
        "expects 1 input and 1 output, got {}in/{}out",
        node.num_inputs(),
        node.num_outputs()
    );
    let (i, o) = match (node.input_info(0), node.output_info(0)) {
        (Some(i), Some(o)) => (i, o),
        _ => deny!("missing tensor type/shape info on input or output"),
    };
    require!(
        !i.shape.is_empty(),
        "input must have rank >= 1 (got a scalar)"
    );
    require!(
        is_mlx_numeric(i.dtype)
            && i.dtype != ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_UINT64,
        "input dtype {} is unsupported (must be MLX numeric, excluding uint64)",
        crate::registry::ort_dtype_name(i.dtype)
    );
    require!(
        o.dtype == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64,
        "output dtype must be int64, got {}",
        crate::registry::ort_dtype_name(o.dtype)
    );
    let mut axis = node.int_attr("axis", 0);
    let raw_axis = axis;
    if axis < 0 {
        axis += i.shape.len() as i64;
    }
    let keepdims = node.int_attr("keepdims", 1);
    let select_last = node.int_attr("select_last_index", 0);
    require!(
        axis >= 0 && axis < i.shape.len() as i64,
        "axis {raw_axis} is out of range for rank {}",
        i.shape.len()
    );
    require!(
        keepdims == 0 || keepdims == 1,
        "keepdims must be 0 or 1 (got {keepdims})"
    );
    require!(
        select_last == 0 || select_last == 1,
        "select_last_index must be 0 or 1 (got {select_last})"
    );
    Ok(())
}

fn cumsum_claim(node: &NodeView) -> ClaimResult {
    require!(
        node.num_inputs() == 2 && node.num_outputs() == 1,
        "expects 2 inputs and 1 output, got {}in/{}out",
        node.num_inputs(),
        node.num_outputs()
    );
    let (x, axis, out) = match (node.input_info(0), node.input_info(1), node.output_info(0)) {
        (Some(x), Some(a), Some(o)) => (x, a, o),
        _ => deny!("missing tensor type/shape info on input, axis, or output"),
    };
    require!(
        !x.shape.is_empty(),
        "input must have rank >= 1 (got a scalar)"
    );
    require!(
        x.dtype == out.dtype && is_mlx_numeric(x.dtype),
        "input/output must share an MLX numeric dtype, got {} -> {}",
        crate::registry::ort_dtype_name(x.dtype),
        crate::registry::ort_dtype_name(out.dtype)
    );
    require!(
        axis.dtype == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT32
            || axis.dtype == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64,
        "axis input must be int32 or int64, got {}",
        crate::registry::ort_dtype_name(axis.dtype)
    );
    require!(
        axis.shape.is_empty() || (axis.shape.len() == 1 && axis.shape[0] == 1),
        "axis input must be scalar or shape [1], got {:?}",
        axis.shape
    );
    let exclusive = node.int_attr("exclusive", 0);
    let reverse = node.int_attr("reverse", 0);
    require!(
        exclusive == 0 || exclusive == 1,
        "exclusive must be 0 or 1 (got {exclusive})"
    );
    require!(
        reverse == 0 || reverse == 1,
        "reverse must be 0 or 1 (got {reverse})"
    );
    Ok(())
}

fn topk_claim(node: &NodeView) -> ClaimResult {
    require!(
        node.num_inputs() == 2 && node.num_outputs() == 2,
        "expects 2 inputs and 2 outputs, got {}in/{}out",
        node.num_inputs(),
        node.num_outputs()
    );
    let (x, k, values, indices) = match (
        node.input_info(0),
        node.input_info(1),
        node.output_info(0),
        node.output_info(1),
    ) {
        (Some(x), Some(k), Some(v), Some(i)) => (x, k, v, i),
        _ => deny!("missing tensor type/shape info on X, K, values, or indices"),
    };
    require!(
        !x.shape.is_empty(),
        "input must have rank >= 1 (got a scalar)"
    );
    require!(
        is_mlx_float(x.dtype) && values.dtype == x.dtype,
        "X/values must share one float dtype (fp32/fp16/bf16), got {} -> {}",
        crate::registry::ort_dtype_name(x.dtype),
        crate::registry::ort_dtype_name(values.dtype)
    );
    require!(
        k.dtype == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64,
        "K must be an int64 scalar read at translation time, got {}",
        crate::registry::ort_dtype_name(k.dtype)
    );
    require!(
        indices.dtype == ort::ONNXTensorElementDataType_ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64,
        "indices output must be int64, got {}",
        crate::registry::ort_dtype_name(indices.dtype)
    );
    require!(
        k.shape.is_empty() || (k.shape.len() == 1 && k.shape[0] == 1),
        "K must be a scalar or shape [1], read at translation time and constrained to 1..=axis dimension (got shape {:?})",
        k.shape
    );
    let mut axis = node.int_attr("axis", -1);
    let raw_axis = axis;
    if axis < 0 {
        axis += x.shape.len() as i64;
    }
    require!(
        axis >= 0 && axis < x.shape.len() as i64,
        "axis {raw_axis} is out of range for rank {}; K is limited to 1..=that axis dimension",
        x.shape.len()
    );
    let largest = node.int_attr("largest", 1);
    let sorted = node.int_attr("sorted", 1);
    require!(
        largest == 0 || largest == 1,
        "largest must be 0 or 1 (got {largest})"
    );
    require!(
        sorted == 1,
        "only sorted=1 is supported (got {sorted}); K is read at translation time and must be within the selected axis"
    );
    Ok(())
}

fn reg(
    registry: &mut OpRegistry,
    op_type: &'static str,
    min_opset: i32,
    handler: crate::registry::OpHandler,
    claim: crate::registry::ClaimPredicate,
) {
    registry.register(OpRegistration {
        domain: "",
        op_type,
        min_opset,
        max_opset: K_ANY_OPSET,
        handler,
        claim,
    });
}

pub fn register(registry: &mut OpRegistry) {
    reg(
        registry,
        "ReduceSum",
        K_ANY_OPSET,
        reduce_sum_op,
        reduce_numeric_claim,
    );
    reg(
        registry,
        "ReduceMax",
        K_ANY_OPSET,
        reduce_max_op,
        reduce_numeric_claim,
    );
    reg(
        registry,
        "ReduceMean",
        K_ANY_OPSET,
        reduce_mean_op,
        reduce_float_claim,
    );
    reg(
        registry,
        "ReduceMin",
        K_ANY_OPSET,
        reduce_min_op,
        reduce_numeric_claim,
    );
    reg(
        registry,
        "ReduceProd",
        K_ANY_OPSET,
        reduce_prod_op,
        reduce_numeric_claim,
    );
    reg(
        registry,
        "ReduceSumSquare",
        K_ANY_OPSET,
        reduce_sumsquare_op,
        reduce_numeric_claim,
    );
    reg(
        registry,
        "ReduceL1",
        K_ANY_OPSET,
        reduce_l1_op,
        reduce_numeric_claim,
    );
    reg(
        registry,
        "ReduceL2",
        K_ANY_OPSET,
        reduce_l2_op,
        reduce_float_claim,
    );
    reg(
        registry,
        "ReduceLogSum",
        K_ANY_OPSET,
        reduce_logsum_op,
        reduce_float_claim,
    );
    reg(
        registry,
        "ReduceLogSumExp",
        K_ANY_OPSET,
        reduce_logsumexp_op,
        reduce_float_claim,
    );
    reg(registry, "ArgMax", K_ANY_OPSET, argmax_op, argminmax_claim);
    reg(registry, "ArgMin", K_ANY_OPSET, argmin_op, argminmax_claim);
    reg(registry, "CumSum", 11, cumsum_op, cumsum_claim);
    reg(registry, "TopK", 10, topk_op, topk_claim);
}