xnn 0.2.0

A lightweight ML framework with GPU-first architecture
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! GPU device and buffer management.
//!
//! Provides [`Context`] for GPU operations and [`Buffer`] for GPU memory.
//! Contexts are pooled by adapter index, automatically selecting
//! high-performance adapters by default.

mod buffer;
mod context;

pub use buffer::Buffer;
pub use context::Context;