Skip to main content

qualia_core_db/platform/
mod.rs

1//! `platform` category (reorg).
2
3#[cfg(not(target_arch = "wasm32"))]
4pub mod compute_bridge;
5#[cfg(not(target_arch = "wasm32"))]
6pub mod device_benchmark;
7pub mod git_bridge;
8#[cfg(not(target_arch = "wasm32"))]
9pub mod hardware_passport;
10#[cfg(target_os = "android")]
11pub mod jni_bridge;
12pub mod kml_bridge;
13#[cfg(not(target_arch = "wasm32"))]
14pub mod npu_ffi;
15pub mod tee_ffi;
16// Hardware dispatch / I/O — relocated here from `modalities::calculus` (they are
17// platform concerns the compute layers depend on, not logic modalities).
18#[cfg(not(target_arch = "wasm32"))]
19pub mod gpu;
20#[cfg(not(target_arch = "wasm32"))]
21pub mod hetero_dispatch;
22#[cfg(not(target_arch = "wasm32"))]
23pub mod host;
24#[cfg(not(target_arch = "wasm32"))]
25pub mod local_scheduler;
26#[cfg(not(target_arch = "wasm32"))]
27pub mod platform_scheduler;