dlpack-rs 0.3.3

Portable Rust bindings for the DLPack protocol (FFI + safe wrappers + optional pyo3 glue)
Documentation
1
2
3
4
5
6
7
//! Portable DLPack bindings: raw FFI ([`ffi`]), safe builders ([`safe`]),
//! and optional pyo3 capsule glue (feature `pyo3`).
pub mod ffi;
#[cfg(feature = "pyo3")]
pub mod pyo3_glue;
pub mod safe;
mod sys;