futuresdr 0.7.0

An Experimental Async SDR Runtime for Heterogeneous Architectures.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Buffer implementation for Burn tensors.
//!
//! Burn tensors may take ownership of a buffer's backing data. The in-place
//! implementation therefore recycles capacity permits on drop and allocates a
//! fresh tensor/data buffer when a returned permit is used again.
#[allow(clippy::module_inception)]
mod burn;
pub use burn::Buffer;
pub use burn::Reader;
pub use burn::Writer;