Add optional SIMD helpers for channel buffers
This commit is contained in:
parent
3f6f472a34
commit
33905e5bc2
3 changed files with 93 additions and 0 deletions
|
@ -27,6 +27,9 @@ default = []
|
||||||
# Enabling this feature will cause the plugin to terminate when allocations
|
# Enabling this feature will cause the plugin to terminate when allocations
|
||||||
# occur in the processing function while compiling in debug mode.
|
# occur in the processing function while compiling in debug mode.
|
||||||
assert_process_allocs = ["assert_no_alloc"]
|
assert_process_allocs = ["assert_no_alloc"]
|
||||||
|
# Add adapters to the Buffer object for reading the channel data to and from
|
||||||
|
# `std::simd` vectors. Requires a nightly compiler.
|
||||||
|
simd = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nih_plug_derive = { path = "nih_plug_derive" }
|
nih_plug_derive = { path = "nih_plug_derive" }
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
|
#[cfg(feature = "simd")]
|
||||||
|
use std::simd::{LaneCount, Simd, SupportedLaneCount};
|
||||||
|
|
||||||
// TODO: Does adding `#[inline]` to the .next() functions make any difference?
|
// TODO: Does adding `#[inline]` to the .next() functions make any difference?
|
||||||
|
|
||||||
/// The audio buffers used during processing. This contains the output audio output buffers with the
|
/// The audio buffers used during processing. This contains the output audio output buffers with the
|
||||||
|
@ -341,6 +344,91 @@ impl<'slice, 'sample> Channels<'slice, 'sample> {
|
||||||
.get_unchecked_mut(channel_index)
|
.get_unchecked_mut(channel_index)
|
||||||
.get_unchecked_mut(self.current_sample)
|
.get_unchecked_mut(self.current_sample)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Get a SIMD vector containing the channel data for this buffer. If `LANES > channels.len()`
|
||||||
|
/// then this will be padded with zeroes. If `LANES < channels.len()` then this won't contain
|
||||||
|
/// all values.
|
||||||
|
#[cfg(feature = "simd")]
|
||||||
|
#[inline]
|
||||||
|
pub fn to_simd<const LANES: usize>(&self) -> Simd<f32, LANES>
|
||||||
|
where
|
||||||
|
LaneCount<LANES>: SupportedLaneCount,
|
||||||
|
{
|
||||||
|
let used_lanes = self.len().max(LANES);
|
||||||
|
let mut values = [0.0; LANES];
|
||||||
|
for (channel_idx, value) in values.iter_mut().enumerate().take(used_lanes) {
|
||||||
|
*value = unsafe {
|
||||||
|
*(*self.buffers)
|
||||||
|
.get_unchecked(channel_idx)
|
||||||
|
.get_unchecked(self.current_sample)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Simd::from_array(values)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get a SIMD vector containing the channel data for this buffer. Will always read exactly
|
||||||
|
/// `LANES` channels.
|
||||||
|
///
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// Undefined behavior if `LANES > channels.len()`.
|
||||||
|
#[cfg(feature = "simd")]
|
||||||
|
#[inline]
|
||||||
|
pub unsafe fn to_simd_unchecked<const LANES: usize>(&self) -> Simd<f32, LANES>
|
||||||
|
where
|
||||||
|
LaneCount<LANES>: SupportedLaneCount,
|
||||||
|
{
|
||||||
|
let mut values = [0.0; LANES];
|
||||||
|
for (channel_idx, value) in values.iter_mut().enumerate() {
|
||||||
|
*value = *(*self.buffers)
|
||||||
|
.get_unchecked(channel_idx)
|
||||||
|
.get_unchecked(self.current_sample);
|
||||||
|
}
|
||||||
|
|
||||||
|
Simd::from_array(values)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Write data from a SIMD vector to this sample's channel data. This takes the padding added by
|
||||||
|
/// [Self::to_simd()] into account.
|
||||||
|
#[cfg(feature = "simd")]
|
||||||
|
#[allow(clippy::wrong_self_convention)]
|
||||||
|
#[inline]
|
||||||
|
pub fn from_simd<const LANES: usize>(&mut self, vector: Simd<f32, LANES>)
|
||||||
|
where
|
||||||
|
LaneCount<LANES>: SupportedLaneCount,
|
||||||
|
{
|
||||||
|
let used_lanes = self.len().max(LANES);
|
||||||
|
let values = vector.to_array();
|
||||||
|
for (channel_idx, value) in values.into_iter().enumerate().take(used_lanes) {
|
||||||
|
*unsafe {
|
||||||
|
(*self.buffers)
|
||||||
|
.get_unchecked_mut(channel_idx)
|
||||||
|
.get_unchecked_mut(self.current_sample)
|
||||||
|
} = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Write data from a SIMD vector to this sample's channel data. This assumes `LANES` matches
|
||||||
|
/// exactly with the number of channels in the buffer.
|
||||||
|
///
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// Undefined behavior if `LANES > channels.len()`.
|
||||||
|
#[cfg(feature = "simd")]
|
||||||
|
#[allow(clippy::wrong_self_convention)]
|
||||||
|
#[inline]
|
||||||
|
pub unsafe fn from_simd_unchecked<const LANES: usize>(&mut self, vector: Simd<f32, LANES>)
|
||||||
|
where
|
||||||
|
LaneCount<LANES>: SupportedLaneCount,
|
||||||
|
{
|
||||||
|
let values = vector.to_array();
|
||||||
|
for (channel_idx, value) in values.into_iter().enumerate() {
|
||||||
|
*(*self.buffers)
|
||||||
|
.get_unchecked_mut(channel_idx)
|
||||||
|
.get_unchecked_mut(self.current_sample) = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'slice, 'sample> Block<'slice, 'sample> {
|
impl<'slice, 'sample> Block<'slice, 'sample> {
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
// TODO: Once everything is more fleshed out, document the basic usage of this library and
|
// TODO: Once everything is more fleshed out, document the basic usage of this library and
|
||||||
// restructure these re-exports into a more useful prelude
|
// restructure these re-exports into a more useful prelude
|
||||||
|
|
||||||
|
#![cfg_attr(feature = "simd", feature(portable_simd))]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
pub mod debug;
|
pub mod debug;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue