Skip to main content

oxicuda_levelzero/
lib.rs

1//! OxiCUDA Level Zero backend — GPU compute via Intel oneAPI/Level Zero.
2//!
3//! # Platform Support
4//!
5//! | Platform | Status |
6//! |----------|--------|
7//! | Linux (Intel GPU) | Full support via libze_loader.so |
8//! | Windows (Intel GPU) | Full support via ze_loader.dll |
9//! | macOS | Not supported (`UnsupportedPlatform`) |
10
11pub mod backend;
12pub mod device;
13pub mod error;
14pub mod memory;
15pub mod multi_tile;
16pub mod spirv;
17pub mod spirv_nn;
18pub mod spirv_subgroup;
19pub mod spirv_xmx;
20
21pub use backend::LevelZeroBackend;
22pub use error::{LevelZeroError, LevelZeroResult};