qualia_core_db/q42/mod.rs
1//! `q42` category (reorg).
2
3pub mod design_encode;
4/// Attested run recipe for a native `.p64` package (layout + mode + measured knobs).
5pub mod execution_profile;
6/// Host GPU native capability profile (CUDA / DX12 / Vulkan / Metal tiers over WGSL floor).
7pub mod machine_gpu_profile;
8/// Canonical Q42 v3 model-metadata volume for converted `.p64` packages.
9pub mod model_helper;
10#[cfg(any(not(target_arch = "wasm32"), feature = "wasm-llm"))]
11pub mod p64_weight;
12pub mod q42_kvp;
13#[cfg(not(target_arch = "wasm32"))]
14pub mod q42_lexicon;
15#[cfg(not(target_arch = "wasm32"))]
16pub mod q42_reader;
17#[cfg(not(target_arch = "wasm32"))]
18pub mod q42_volume;
19pub mod yaml_ld_q42;