pub fn create_aligned_buffer<T>(capacity: usize) -> Result<AlignedBuffer<T>>Expand description
Create an aligned buffer that can be used like a Vec
Note: This returns an AlignedBuffer, not a Vec, because Rust’s Vec doesn’t guarantee memory alignment. Use AlignedBuffer for SIMD operations.