dlpark 0.8.0

dlpack Rust binding for Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Python DLPack protocol integration through PyO3.

mod capsule;
#[cfg(feature = "cudarc")]
mod cudarc;
/// Device discovery for Python DLPack producers.
pub mod device;
/// DLPack 1.3 C exchange API integration.
pub mod exchange;
/// Python stream argument encoding.
pub mod stream;

pub use device::dlpack_device;
pub use stream::{DlpackStream, StreamArg};