oxicuda-levelzero 0.1.0

OxiCUDA Level Zero — GPU compute via Intel oneAPI/Level Zero (pure Rust, libloading)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! OxiCUDA Level Zero backend — GPU compute via Intel oneAPI/Level Zero.
//!
//! # Platform Support
//!
//! | Platform | Status |
//! |----------|--------|
//! | Linux (Intel GPU) | Full support via libze_loader.so |
//! | Windows (Intel GPU) | Full support via ze_loader.dll |
//! | macOS | Not supported (`UnsupportedPlatform`) |

pub mod backend;
pub mod device;
pub mod error;
pub mod memory;
pub mod spirv;

pub use backend::LevelZeroBackend;
pub use error::{LevelZeroError, LevelZeroResult};