//! The CT-0 compile โ eight passes from `.graph` to `.model` (`specs/ct0.md`).
//!
//! - phase 1: [`index`] (pass 1), [`dialect`] (pass 2), arch (pass 3)
//! - phase 2: embed (pass 4), attn (pass 5)
//! - phase 3: mlp (pass 6), norm (pass 7), pack (pass 8)
//!
//! Structural passes (index, dialect, arch, norm, pack) are implemented; the
//! SVD-derived weight passes (embed, attn, mlp) land with the fixed-point
//! randomized-SVD milestone.
pub use Arch;
pub use compile;
pub use ;
pub use ;
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); }