pictorus-blocks 0.0.0

Implementations of Pictorus blocks.
Documentation
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
use crate::nalgebra_interop::MatrixExt;
use crate::traits::{Apply, ApplyInto, MatrixOps, Scalar};
use nalgebra::SMatrix;
use pictorus_block_data::{BlockData as OldBlockData, FromPass};
use pictorus_traits::{Matrix, Pass, PassBy, ProcessBlock};

#[derive(strum::EnumString, Copy, Clone)]
/// The method to use for the MinMaxBlock
pub enum MinMaxMethod {
    /// Calculate the minimum of the inputs
    Min,
    /// Calculate the maximum of the inputs
    Max,
}

pub struct Parameters {
    // The method to use for the MinMaxBlock. Must be either "Min" or "Max"
    pub method: MinMaxMethod,
}

impl Parameters {
    pub fn new(method: &str) -> Self {
        Parameters {
            method: method.parse().expect("Invalid method, must be Min or Max"),
        }
    }
}

/// Calculates the minimum or maximum of the inputs.
///
/// If inputs are all scalars, the output will be a scalar
/// Otherwise the output will be the component-wise minimum or maximum of the inputs
pub struct MinMaxBlock<T: Apply<Parameters>>
where
    OldBlockData: FromPass<<T as Apply<Parameters>>::Output>,
{
    pub data: OldBlockData,
    buffer: Option<T::Output>,
}

impl<T: Apply<Parameters>> Default for MinMaxBlock<T>
where
    OldBlockData: FromPass<<T as Apply<Parameters>>::Output>,
{
    fn default() -> Self {
        MinMaxBlock {
            data: <OldBlockData as FromPass<T::Output>>::from_pass(T::Output::default().as_by()),
            buffer: None,
        }
    }
}

impl<T: Apply<Parameters>> ProcessBlock for MinMaxBlock<T>
where
    OldBlockData: FromPass<T::Output>,
{
    type Parameters = Parameters;
    type Inputs = T;
    type Output = T::Output;

    fn process(
        &mut self,
        parameters: &Self::Parameters,
        _context: &dyn pictorus_traits::Context,
        inputs: PassBy<'_, Self::Inputs>,
    ) -> PassBy<Self::Output> {
        let res = T::apply(inputs, parameters, &mut self.buffer);
        self.data = OldBlockData::from_pass(res);
        res
    }
}

// Compare scalar with scalar
impl<S: Scalar> ApplyInto<S, Parameters> for S
where
    S: PartialOrd,
{
    fn apply_into<'a>(
        input: PassBy<Self>,
        params: &Parameters,
        dest: &'a mut Option<S>,
    ) -> PassBy<'a, S> {
        match dest {
            Some(dest) => match params.method {
                MinMaxMethod::Min => {
                    if input < *dest {
                        *dest = input;
                    }
                }
                MinMaxMethod::Max => {
                    if input > *dest {
                        *dest = input;
                    }
                }
            },
            None => {
                *dest = Some(input);
            }
        }

        dest.as_ref().unwrap().as_by()
    }
}

// Compare matrix and matrix
impl<const R: usize, const C: usize, S: Scalar> ApplyInto<Matrix<R, C, S>, Parameters>
    for Matrix<R, C, S>
{
    fn apply_into<'a>(
        input: PassBy<Self>,
        params: &Parameters,
        dest: &'a mut Option<Matrix<R, C, S>>,
    ) -> PassBy<'a, Matrix<R, C, S>> {
        match dest {
            Some(dest) => {
                let orig_dest = dest.as_view();
                let input = input.as_view();
                let res = match params.method {
                    MinMaxMethod::Min => input.inf(&orig_dest),
                    MinMaxMethod::Max => input.sup(&orig_dest),
                };
                dest.as_view_mut().copy_from(&res);
            }
            None => {
                *dest = Some(*input);
            }
        }

        dest.as_ref().unwrap().as_by()
    }
}

// Compare scalar with matrix
impl<const R: usize, const C: usize, S: Scalar> ApplyInto<Matrix<R, C, S>, Parameters> for S {
    fn apply_into<'a>(
        input: PassBy<Self>,
        params: &Parameters,
        dest: &'a mut Option<Matrix<R, C, S>>,
    ) -> PassBy<'a, Matrix<R, C, S>> {
        match dest {
            Some(dest) => {
                let orig_dest = dest.as_view();
                let input = SMatrix::<S, R, C>::from_element(input);
                let res = match params.method {
                    MinMaxMethod::Min => orig_dest.inf(&input.as_view()),
                    MinMaxMethod::Max => orig_dest.sup(&input.as_view()),
                };
                dest.as_view_mut().copy_from(&res);
            }
            None => {
                *dest = Some(Matrix::<R, C, S>::from_element(input));
            }
        }

        dest.as_ref().unwrap().as_by()
    }
}

#[cfg(test)]
mod tests {

    use crate::testing::StubContext;

    use super::*;

    #[test]
    fn test_single_scalar() {
        let ctxt = StubContext::default();
        let mut block = MinMaxBlock::<f64>::default();
        let mut parameters = Parameters::new("Min");
        let input = 99.0;
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = block.process(&parameters, &ctxt, input.as_by());
        assert_eq!(res, 99.0);
        assert_eq!(block.data.scalar(), 99.0);
    }

    #[test]
    fn test_single_matrix() {
        let ctxt = StubContext::default();
        let mut block = MinMaxBlock::<Matrix<2, 2, f64>>::default();
        let mut parameters = Parameters::new("Min");
        let input = Matrix::<2, 2, f64>::from_element(99.0);
        let res = block.process(&parameters, &ctxt, &input);
        assert_eq!(res.data.as_flattened(), [99.0, 99.0, 99.0, 99.0]);
        assert_eq!(block.data.get_data().as_slice(), [99.0, 99.0, 99.0, 99.0]);

        parameters.method = MinMaxMethod::Max;
        let res = block.process(&parameters, &ctxt, &input);
        assert_eq!(res.data.as_flattened(), [99.0, 99.0, 99.0, 99.0]);
        assert_eq!(block.data.get_data().as_slice(), [99.0, 99.0, 99.0, 99.0]);
    }

    #[test]
    fn test_multiple_scalars() {
        let ctxt = StubContext::default();

        // Two inputs
        let mut two_block = MinMaxBlock::<(f64, f64)>::default();
        let mut parameters = Parameters::new("Min");
        let input = (99.0, 100.0);
        let res = two_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(two_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = two_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 100.0);
        assert_eq!(two_block.data.scalar(), 100.0);

        // Three inputs
        parameters.method = MinMaxMethod::Min;
        let mut three_block = MinMaxBlock::<(f64, f64, f64)>::default();
        let input = (99.0, 100.0, 101.0);
        let res = three_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(three_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = three_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 101.0);
        assert_eq!(three_block.data.scalar(), 101.0);

        // Four inputs
        parameters.method = MinMaxMethod::Min;
        let mut four_block = MinMaxBlock::<(f64, f64, f64, f64)>::default();
        let input = (99.0, 100.0, 101.0, 102.0);
        let res = four_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(four_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = four_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 102.0);
        assert_eq!(four_block.data.scalar(), 102.0);

        // Five inputs
        parameters.method = MinMaxMethod::Min;
        let mut five_block = MinMaxBlock::<(f64, f64, f64, f64, f64)>::default();
        let input = (99.0, 100.0, 101.0, 102.0, 103.0);
        let res = five_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(five_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = five_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 103.0);
        assert_eq!(five_block.data.scalar(), 103.0);

        // Six inputs
        parameters.method = MinMaxMethod::Min;
        let mut six_block = MinMaxBlock::<(f64, f64, f64, f64, f64, f64)>::default();
        let input = (99.0, 100.0, 101.0, 102.0, 103.0, 104.0);
        let res = six_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(six_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = six_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 104.0);
        assert_eq!(six_block.data.scalar(), 104.0);

        // Seven inputs
        parameters.method = MinMaxMethod::Min;
        let mut seven_block = MinMaxBlock::<(f64, f64, f64, f64, f64, f64, f64)>::default();
        let input = (99.0, 100.0, 101.0, 102.0, 103.0, 104.0, 105.0);
        let res = seven_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(seven_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = seven_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 105.0);
        assert_eq!(seven_block.data.scalar(), 105.0);

        // Eight inputs
        parameters.method = MinMaxMethod::Min;
        let mut eight_block = MinMaxBlock::<(f64, f64, f64, f64, f64, f64, f64, f64)>::default();
        let input = (99.0, 100.0, 101.0, 102.0, 103.0, 104.0, 105.0, 106.0);
        let res = eight_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 99.0);
        assert_eq!(eight_block.data.scalar(), 99.0);

        parameters.method = MinMaxMethod::Max;
        let res = eight_block.process(&parameters, &ctxt, input);
        assert_eq!(res, 106.0);
        assert_eq!(eight_block.data.scalar(), 106.0);
    }

    #[test]
    fn test_multiple_matrices() {
        let ctxt = StubContext::default();

        // Two inputs
        let mut two_block = MinMaxBlock::<(Matrix<2, 2, f64>, Matrix<2, 2, f64>)>::default();
        let mut parameters = Parameters::new("Min");
        let input = (
            &Matrix {
                data: [[1.0, 6.0], [3.0, 8.0]],
            },
            &Matrix {
                data: [[5.0, 2.0], [7.0, 4.0]],
            },
        );
        let res = two_block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 2.0, 3.0, 4.0]);
        assert_eq!(two_block.data.get_data().as_slice(), [1.0, 2.0, 3.0, 4.0]);

        parameters.method = MinMaxMethod::Max;
        let res = two_block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [5.0, 6.0, 7.0, 8.0]);
        assert_eq!(two_block.data.get_data().as_slice(), [5.0, 6.0, 7.0, 8.0]);

        // Three inputs
        parameters.method = MinMaxMethod::Min;
        let mut three_block =
            MinMaxBlock::<(Matrix<2, 2, f64>, Matrix<2, 2, f64>, Matrix<2, 2, f64>)>::default();
        let input = (
            &Matrix {
                data: [[1.0, 6.0], [3.0, 8.0]],
            },
            &Matrix {
                data: [[5.0, 2.0], [7.0, 4.0]],
            },
            &Matrix {
                data: [[9.0, 10.0], [11.0, 12.0]],
            },
        );
        let res = three_block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 2.0, 3.0, 4.0]);
        assert_eq!(three_block.data.get_data().as_slice(), [1.0, 2.0, 3.0, 4.0]);

        parameters.method = MinMaxMethod::Max;
        let res = three_block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [9.0, 10.0, 11.0, 12.0]);
        assert_eq!(
            three_block.data.get_data().as_slice(),
            [9.0, 10.0, 11.0, 12.0]
        );

        // Four inputs
        parameters.method = MinMaxMethod::Min;
        let mut four_block = MinMaxBlock::<(
            Matrix<2, 2, f64>,
            Matrix<2, 2, f64>,
            Matrix<2, 2, f64>,
            Matrix<2, 2, f64>,
        )>::default();
        let input = (
            &Matrix {
                data: [[1.0, 6.0], [3.0, 8.0]],
            },
            &Matrix {
                data: [[5.0, 2.0], [7.0, 4.0]],
            },
            &Matrix {
                data: [[9.0, 10.0], [11.0, 12.0]],
            },
            &Matrix {
                data: [[13.0, 14.0], [15.0, 16.0]],
            },
        );
        let res = four_block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 2.0, 3.0, 4.0]);
        assert_eq!(four_block.data.get_data().as_slice(), [1.0, 2.0, 3.0, 4.0]);

        parameters.method = MinMaxMethod::Max;
        let res = four_block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [13.0, 14.0, 15.0, 16.0]);
        assert_eq!(
            four_block.data.get_data().as_slice(),
            [13.0, 14.0, 15.0, 16.0]
        );
    }

    #[test]
    fn test_mixed_scalars_and_matrices() {
        let ctxt = StubContext::default();

        // Scalar and matrix
        let mut block = MinMaxBlock::<(f64, Matrix<2, 2, f64>)>::default();
        let mut parameters = Parameters::new("Min");
        let input = (99.0, &Matrix::from_element(1.0));
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 1.0, 1.0, 1.0]);
        assert_eq!(block.data.get_data().as_slice(), [1.0, 1.0, 1.0, 1.0]);

        parameters.method = MinMaxMethod::Max;
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [99.0, 99.0, 99.0, 99.0]);
        assert_eq!(block.data.get_data().as_slice(), [99.0, 99.0, 99.0, 99.0]);

        // Matrix and scalar
        let mut block = MinMaxBlock::<(Matrix<2, 2, f64>, f64)>::default();
        let mut parameters = Parameters::new("Min");
        let input = (&Matrix::from_element(1.0), 99.0);
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 1.0, 1.0, 1.0]);
        assert_eq!(block.data.get_data().as_slice(), [1.0, 1.0, 1.0, 1.0]);

        parameters.method = MinMaxMethod::Max;
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [99.0, 99.0, 99.0, 99.0]);
        assert_eq!(block.data.get_data().as_slice(), [99.0, 99.0, 99.0, 99.0]);

        // (Scalar, matrix, scalar)
        let mut block = MinMaxBlock::<(f64, Matrix<2, 2, f64>, f64)>::default();
        let mut parameters = Parameters::new("Min");
        let input = (99.0, &Matrix::from_element(1.0), 100.0);
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 1.0, 1.0, 1.0]);
        assert_eq!(block.data.get_data().as_slice(), [1.0, 1.0, 1.0, 1.0]);

        parameters.method = MinMaxMethod::Max;
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [100.0, 100.0, 100.0, 100.0]);
        assert_eq!(
            block.data.get_data().as_slice(),
            [100.0, 100.0, 100.0, 100.0]
        );

        // (Matrix, scalar, matrix)
        let mut block = MinMaxBlock::<(Matrix<2, 2, f64>, f64, Matrix<2, 2, f64>)>::default();
        let mut parameters = Parameters::new("Min");
        let input = (&Matrix::from_element(1.0), 99.0, &Matrix::from_element(2.0));
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [1.0, 1.0, 1.0, 1.0]);
        assert_eq!(block.data.get_data().as_slice(), [1.0, 1.0, 1.0, 1.0]);

        parameters.method = MinMaxMethod::Max;
        let res = block.process(&parameters, &ctxt, input);
        assert_eq!(res.data.as_flattened(), [99.0, 99.0, 99.0, 99.0]);
        assert_eq!(block.data.get_data().as_slice(), [99.0, 99.0, 99.0, 99.0]);
    }
}