1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
use std::sync::Arc;
use hpt_common::{shape::shape::Shape, strides::strides::Strides};
use hpt_traits::tensor::{CommonBounds, TensorInfo};
use rayon::iter::{
plumbing::{bridge_unindexed, Folder, UnindexedConsumer, UnindexedProducer},
ParallelIterator,
};
use crate::{
iterator_traits::IterGetSet, par_strided_mut::ParStridedMut, par_strided_zip::ParStridedZip,
};
/// A module for parallel strided mutable map iterator.
pub mod par_strided_map_mut_simd {
use std::sync::Arc;
use crate::{CommonBounds, TensorInfo};
use hpt_common::{shape::shape::Shape, strides::strides::Strides, utils::simd_ref::MutVec};
use hpt_types::dtype::TypeCommon;
use rayon::iter::{
plumbing::{bridge_unindexed, Folder, UnindexedConsumer, UnindexedProducer},
ParallelIterator,
};
use crate::{
iterator_traits::IterGetSetSimd,
par_strided_mut::par_strided_map_mut_simd::ParStridedMutSimd,
par_strided_zip::par_strided_zip_simd::ParStridedZipSimd,
};
/// A parallel mutable SIMD-optimized map iterator.
///
/// This struct provides mutable access to tensor elements with strided access patterns optimized
pub struct ParStridedMapMutSimd<'a, T>
where
T: TypeCommon + Send + Copy + Sync,
{
/// The underlying parallel SIMD-optimized strided iterator.
pub(crate) base: ParStridedMutSimd<'a, T>,
/// Phantom data to associate the lifetime `'a` with the struct.
pub(crate) phantom: std::marker::PhantomData<&'a ()>,
}
impl<'a, T> ParStridedMapMutSimd<'a, T>
where
T: CommonBounds,
T::Vec: Send,
{
/// Creates a new `ParStridedMapMutSimd` instance from a given result tensor.
///
/// This constructor initializes the `ParStridedMapMutSimd` iterator by wrapping the provided result
/// tensor in a `ParStridedMutSimd` instance. It sets up the necessary data structures for parallel and SIMD
/// optimized iteration.
///
/// # Type Parameters
///
/// * `U` - The type of the tensor to accumulate results into. Must implement `TensorInfo<T>`.
///
/// # Arguments
///
/// * `res_tensor` - The tensor implementing the `TensorInfo<T>` trait to accumulate results into.
///
/// # Returns
///
/// A new instance of `ParStridedMapMutSimd` initialized with the provided result tensor.
pub fn new<U: TensorInfo<T>>(res_tensor: U) -> Self {
ParStridedMapMutSimd {
base: ParStridedMutSimd::new(res_tensor),
phantom: std::marker::PhantomData,
}
}
/// Combines this `ParStridedMapMutSimd` iterator with another SIMD-optimized iterator, enabling simultaneous parallel iteration.
///
/// This method performs shape broadcasting between `self` and `other` to ensure that both iterators
/// iterate over tensors with compatible shapes. It calculates the appropriate iteration intervals based
/// on the new broadcasted shape and configures both iterators accordingly. Finally, it returns a new
/// `ParStridedZipSimd` instance that allows for synchronized parallel iteration over the combined iterators.
///
/// **Note:** This implementation leverages Rayon for parallel execution and assumes that the iterators
/// support SIMD optimizations.
///
/// # Type Parameters
///
/// * `C` - The type of the other iterator to zip with. Must implement `UnindexedProducer`, `IterGetSetSimd`, and `ParallelIterator`.
///
/// # Arguments
///
/// * `self` - The `ParStridedMapMutSimd` iterator instance.
/// * `other` - The other iterator to zip with.
///
/// # Returns
///
/// A new `ParStridedZipSimd` instance that combines `self` and `other` for synchronized parallel iteration over both iterators.
pub fn zip<C>(self, other: C) -> ParStridedZipSimd<'a, Self, C>
where
C: UnindexedProducer + 'a + IterGetSetSimd + ParallelIterator,
<C as IterGetSetSimd>::Item: Send,
T::Vec: Send,
{
ParStridedZipSimd::new(self, other)
}
}
impl<'a, T> ParallelIterator for ParStridedMapMutSimd<'a, T>
where
T: 'a + CommonBounds,
T::Vec: Send,
{
type Item = &'a mut T;
fn drive_unindexed<C>(self, consumer: C) -> C::Result
where
C: UnindexedConsumer<Self::Item>,
{
bridge_unindexed(self, consumer)
}
}
impl<'a, T> UnindexedProducer for ParStridedMapMutSimd<'a, T>
where
T: 'a + CommonBounds,
T::Vec: Send,
{
type Item = &'a mut T;
fn split(self) -> (Self, Option<Self>) {
let (a, b) = self.base.split();
(
ParStridedMapMutSimd {
base: a,
phantom: std::marker::PhantomData,
},
b.map(|x| ParStridedMapMutSimd {
base: x,
phantom: std::marker::PhantomData,
}),
)
}
fn fold_with<F>(self, folder: F) -> F
where
F: Folder<Self::Item>,
{
folder
}
}
impl<'a, T: 'a + CommonBounds> IterGetSetSimd for ParStridedMapMutSimd<'a, T>
where
T::Vec: Send,
{
type Item = &'a mut T;
type SimdItem = MutVec<'a, T::Vec>;
fn set_end_index(&mut self, end_index: usize) {
self.base.set_end_index(end_index);
}
fn set_intervals(&mut self, intervals: Arc<Vec<(usize, usize)>>) {
self.base.set_intervals(intervals);
}
fn set_strides(&mut self, strides: Strides) {
self.base.set_strides(strides);
}
fn set_shape(&mut self, shape: Shape) {
self.base.set_shape(shape);
}
fn set_prg(&mut self, prg: Vec<i64>) {
self.base.set_prg(prg);
}
fn intervals(&self) -> &Arc<Vec<(usize, usize)>> {
self.base.intervals()
}
fn strides(&self) -> &Strides {
self.base.strides()
}
fn shape(&self) -> &Shape {
self.base.shape()
}
fn layout(&self) -> &hpt_common::layout::layout::Layout {
self.base.layout()
}
fn broadcast_set_strides(&mut self, shape: &Shape) {
self.base.broadcast_set_strides(shape);
}
fn outer_loop_size(&self) -> usize {
self.base.outer_loop_size()
}
fn inner_loop_size(&self) -> usize {
self.base.inner_loop_size()
}
fn next(&mut self) {
self.base.next();
}
fn next_simd(&mut self) {
self.base.next_simd();
}
fn inner_loop_next(&mut self, index: usize) -> Self::Item {
self.base.inner_loop_next(index)
}
fn inner_loop_next_simd(&mut self, index: usize) -> Self::SimdItem {
self.base.inner_loop_next_simd(index)
}
fn all_last_stride_one(&self) -> bool {
self.base.all_last_stride_one()
}
fn lanes(&self) -> Option<usize> {
self.base.lanes()
}
}
}
/// A parallel mutable map iterator.
///
/// This struct provides mutable access to tensor elements with strided access
pub struct ParStridedMapMut<'a, T>
where
T: Copy,
{
/// The base parallel strided mutable iterator.
pub(crate) base: ParStridedMut<'a, T>,
/// Phantom data to associate the lifetime `'a` with the struct.
pub(crate) phantom: std::marker::PhantomData<&'a ()>,
}
impl<'a, T> ParStridedMapMut<'a, T>
where
T: CommonBounds,
{
/// Creates a new `ParStridedMapMut` instance from a given result tensor.
///
/// This constructor initializes the `ParStridedMapMut` iterator by wrapping the provided result
/// tensor in a `ParStridedMut` instance. It sets up the necessary data structures for parallel iteration.
///
/// # Type Parameters
///
/// * `U` - The type of the tensor to accumulate results into. Must implement `TensorInfo<T>`.
///
/// # Arguments
///
/// * `res_tensor` - The tensor implementing the `TensorInfo<T>` trait to accumulate results into.
///
/// # Returns
///
/// A new instance of `ParStridedMapMut` initialized with the provided result tensor.
pub fn new<U: TensorInfo<T>>(res_tensor: U) -> Self {
ParStridedMapMut {
base: ParStridedMut::new(res_tensor),
phantom: std::marker::PhantomData,
}
}
/// Combines this `ParStridedMapMut` iterator with another iterator, enabling simultaneous parallel iteration.
///
/// This method performs shape broadcasting between `self` and `other` to ensure that both iterators
/// iterate over tensors with compatible shapes. It calculates the appropriate iteration intervals based
/// on the new broadcasted shape and configures both iterators accordingly. Finally, it returns a new
/// `ParStridedZip` instance that allows for synchronized parallel iteration over the combined iterators.
///
/// **Note:** This implementation leverages Rayon for parallel execution.
///
/// # Type Parameters
///
/// * `C` - The type of the other iterator to zip with. Must implement `UnindexedProducer`, `IterGetSet`, and `ParallelIterator`.
///
/// # Arguments
///
/// * `self` - The `ParStridedMapMut` iterator instance.
/// * `other` - The other iterator to zip with.
///
/// # Returns
///
/// A new `ParStridedZip` instance that combines `self` and `other` for synchronized parallel iteration over both iterators.
pub fn zip<C>(self, other: C) -> ParStridedZip<'a, Self, C>
where
C: UnindexedProducer + 'a + IterGetSet + ParallelIterator,
<C as IterGetSet>::Item: Send,
{
ParStridedZip::new(self, other)
}
}
impl<'a, T> ParallelIterator for ParStridedMapMut<'a, T>
where
T: 'a + CommonBounds,
{
type Item = &'a mut T;
fn drive_unindexed<C>(self, consumer: C) -> C::Result
where
C: UnindexedConsumer<Self::Item>,
{
bridge_unindexed(self, consumer)
}
}
impl<'a, T> UnindexedProducer for ParStridedMapMut<'a, T>
where
T: 'a + CommonBounds,
{
type Item = &'a mut T;
fn split(self) -> (Self, Option<Self>) {
let (a, b) = self.base.split();
(
ParStridedMapMut {
base: a,
phantom: std::marker::PhantomData,
},
b.map(|x| ParStridedMapMut {
base: x,
phantom: std::marker::PhantomData,
}),
)
}
fn fold_with<F>(self, folder: F) -> F
where
F: Folder<Self::Item>,
{
folder
}
}
impl<'a, T: 'a + CommonBounds> IterGetSet for ParStridedMapMut<'a, T> {
type Item = &'a mut T;
fn set_end_index(&mut self, end_index: usize) {
self.base.set_end_index(end_index);
}
fn set_intervals(&mut self, intervals: Arc<Vec<(usize, usize)>>) {
self.base.set_intervals(intervals);
}
fn set_strides(&mut self, strides: Strides) {
self.base.set_strides(strides);
}
fn set_shape(&mut self, shape: Shape) {
self.base.set_shape(shape);
}
fn set_prg(&mut self, prg: Vec<i64>) {
self.base.set_prg(prg);
}
fn intervals(&self) -> &Arc<Vec<(usize, usize)>> {
self.base.intervals()
}
fn strides(&self) -> &Strides {
self.base.strides()
}
fn shape(&self) -> &Shape {
self.base.shape()
}
fn layout(&self) -> &hpt_common::layout::layout::Layout {
self.base.layout()
}
fn broadcast_set_strides(&mut self, shape: &Shape) {
self.base.broadcast_set_strides(shape);
}
fn outer_loop_size(&self) -> usize {
self.base.outer_loop_size()
}
fn inner_loop_size(&self) -> usize {
self.base.inner_loop_size()
}
fn next(&mut self) {
self.base.next();
}
fn inner_loop_next(&mut self, index: usize) -> Self::Item {
self.base.inner_loop_next(index)
}
}