//! Causal decoder architecture.
//!
//! One compute graph covers all modern decoder-only transformers:
//! Llama, Mistral, Qwen 2/2.5/3, Phi 2/3/4, Gemma 1/2/3/4, SmolLM,
//! DeepSeek-dense, StarCoder, MiMo, NuExtract.
//!
//! Per-family behavioral differences (norm formula, embedding scale,
//! attention scale, v-norm) are captured in `families/` β no string
//! matching on model_type outside that folder.
//!
//! Spec: specs/arch.md Β§decoder
pub use LlamaConfig;
pub use LlamaModel;
pub use LayerWeights;
Homonyms
cyb/evy/forks/naga/src/back/hlsl/mod.rs
struct Baz { m: mat3x2, } struct Baz { float2 m_0; float2 m_1; float2 m_2; }; float3x2 GetMatmOnBaz(Baz obj) { return float3x2(obj.m_0, obj.m_1, obj.m_2); }