numrs/codegen/
mod.rs

1pub mod cpu;
2pub mod cuda;
3pub mod webgpu;
4pub mod metal;
5
6/// High-level codegen utilities
7pub fn emit_program_for_backend(_backend: &str) {
8    // helper for the future
9}