use crate::{ArrayBase, DataMut, Dimension, NdProducer, Zip};
use crate::parallel::prelude::*;
impl<A, S, D> ArrayBase<S, D>
where
S: DataMut<Elem = A>,
D: Dimension,
A: Send + Sync,
{
pub fn par_map_inplace<F>(&mut self, f: F)
where
F: Fn(&mut A) + Sync + Send,
{
self.view_mut().into_par_iter().for_each(f)
}
pub fn par_mapv_inplace<F>(&mut self, f: F)
where
F: Fn(A) -> A + Sync + Send,
A: Clone,
{
self.view_mut()
.into_par_iter()
.for_each(move |x| *x = f(x.clone()))
}
}
macro_rules! zip_impl {
($([$($p:ident)*],)+) => {
$(
#[allow(non_snake_case)]
impl<D, $($p),*> Zip<($($p,)*), D>
where $($p::Item : Send , )*
$($p : Send , )*
D: Dimension,
$($p: NdProducer<Dim=D> ,)*
{
pub fn par_apply<F>(self, function: F)
where F: Fn($($p::Item),*) + Sync + Send
{
self.into_par_iter().for_each(move |($($p,)*)| function($($p),*))
}
}
)+
}
}
zip_impl! {
[P1],
[P1 P2],
[P1 P2 P3],
[P1 P2 P3 P4],
[P1 P2 P3 P4 P5],
[P1 P2 P3 P4 P5 P6],
}