Skip to main content

Module yolo

Module yolo 

Source
Expand description

Internal YOLO decoder kernels.

All items in this module are pub(crate). The public API surface for decoding is crate::Decoder + crate::DecoderBuilder; external callers must go through that entry point so we can evolve the kernels (split paths, dispatch tables, NEON tiers) without breaking semver. See CHANGELOG.md for the 0.20.0 narrowing.

Traits§

FloatProtoElem
Per-float-dtype construction of an edgefirst_tensor::TensorDyn from a flat slice or a 3-D ArrayView. Each implementor either passes its element type straight to Tensor::from_slice / Tensor::from_arrayview3, or narrows f64 to f32 — there is no native f64 kernel path, so f64 protos lose precision here rather than at some later, less obvious point.