himada-integrations 0.1.0

Himada framework integrations — Candle, Burn, ONNX Runtime, ndarray
1
2
3
4
5
6
7
8
9
// TODO: Himada + dfdx integration
// dfdx's type-level tensor shapes require const-generic gymnastics.
// For now, use the C ABI or Dispatch directly when working with dfdx:
//
// use himada_dispatch::*;
// let d = Dispatch::<DotKernel>::new("dfdx_dot", vec![]);
// let result = d.compute(&a, &b);
//
// See docs/c/README.md for C ABI setup.