scirs2-core 0.4.3

Core utilities and common functionality for SciRS2 (scirs2-core)
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
//! Binary universal functions
//!
//! This module provides implementation of common binary operations
//! (addition, subtraction, etc.) as universal functions for efficient
//! vectorized operations with broadcasting support.

use ::ndarray::{Array, ArrayView, Dimension, IxDyn, ShapeBuilder};
use crate::ufuncs::core::{UFunc, UFuncKind, apply_binary, register_ufunc};
use crate::ndarray_ext::broadcasting::{broadcast_arrays, broadcast_apply};
use std::sync::Once;

static INIT: Once = Once::new();

// Initialize the ufunc registry with binary operations
#[allow(dead_code)]
fn init_binary_ufuncs() {
    INIT.call_once(|| {
        // Register all the binary ufuncs
        let _ = register_ufunc(Box::new(AddUFunc));
        let _ = register_ufunc(Box::new(SubtractUFunc));
        let _ = register_ufunc(Box::new(MultiplyUFunc));
        let _ = register_ufunc(Box::new(DivideUFunc));
        let _ = register_ufunc(Box::new(PowerUFunc));
    });
}

// Define the binary ufuncs

/// Addition universal function
pub struct AddUFunc;

impl UFunc for AddUFunc {
    fn name(&self) -> &str {
        "add"
    }

    fn kind(&self) -> UFuncKind {
        UFuncKind::Binary
    }

    fn apply<D>(&self, inputs: &[&crate::ndarray::ArrayBase<crate::ndarray::Data, D>], output: &mut crate::ndarray::ArrayBase<crate::ndarray::Data, D>) -> Result<(), &'static str>
    where
        D: Dimension,
    {
        if inputs.len() != 2 {
            return Err("Add requires exactly two input arrays");
        }

        // Apply addition element-wise
        apply_binary(inputs[0], inputs[1], output, |&x: &f64, &y: &f64| x + y)
    }
}

/// Subtraction universal function
pub struct SubtractUFunc;

impl UFunc for SubtractUFunc {
    fn name(&self) -> &str {
        "subtract"
    }

    fn kind(&self) -> UFuncKind {
        UFuncKind::Binary
    }

    fn apply<D>(&self, inputs: &[&crate::ndarray::ArrayBase<crate::ndarray::Data, D>], output: &mut crate::ndarray::ArrayBase<crate::ndarray::Data, D>) -> Result<(), &'static str>
    where
        D: Dimension,
    {
        if inputs.len() != 2 {
            return Err("Subtract requires exactly two input arrays");
        }

        // Apply subtraction element-wise
        apply_binary(inputs[0], inputs[1], output, |&x: &f64, &y: &f64| x - y)
    }
}

/// Multiplication universal function
pub struct MultiplyUFunc;

impl UFunc for MultiplyUFunc {
    fn name(&self) -> &str {
        "multiply"
    }

    fn kind(&self) -> UFuncKind {
        UFuncKind::Binary
    }

    fn apply<D>(&self, inputs: &[&crate::ndarray::ArrayBase<crate::ndarray::Data, D>], output: &mut crate::ndarray::ArrayBase<crate::ndarray::Data, D>) -> Result<(), &'static str>
    where
        D: Dimension,
    {
        if inputs.len() != 2 {
            return Err("Multiply requires exactly two input arrays");
        }

        // Apply multiplication element-wise
        apply_binary(inputs[0], inputs[1], output, |&x: &f64, &y: &f64| x * y)
    }
}

/// Division universal function
pub struct DivideUFunc;

impl UFunc for DivideUFunc {
    fn name(&self) -> &str {
        "divide"
    }

    fn kind(&self) -> UFuncKind {
        UFuncKind::Binary
    }

    fn apply<D>(&self, inputs: &[&crate::ndarray::ArrayBase<crate::ndarray::Data, D>], output: &mut crate::ndarray::ArrayBase<crate::ndarray::Data, D>) -> Result<(), &'static str>
    where
        D: Dimension,
    {
        if inputs.len() != 2 {
            return Err("Divide requires exactly two input arrays");
        }

        // Apply division element-wise
        apply_binary(inputs[0], inputs[1], output, |&x: &f64, &y: &f64| {
            if y == 0.0 {
                f64::NAN // Return NaN for division by zero
            } else {
                x / y
            }
        })
    }
}

/// Power (exponentiation) universal function
pub struct PowerUFunc;

impl UFunc for PowerUFunc {
    fn name(&self) -> &str {
        "power"
    }

    fn kind(&self) -> UFuncKind {
        UFuncKind::Binary
    }

    fn apply<D>(&self, inputs: &[&crate::ndarray::ArrayBase<crate::ndarray::Data, D>], output: &mut crate::ndarray::ArrayBase<crate::ndarray::Data, D>) -> Result<(), &'static str>
    where
        D: Dimension,
    {
        if inputs.len() != 2 {
            return Err("Power requires exactly two input arrays");
        }

        // Apply power function element-wise
        apply_binary(inputs[0], inputs[1], output, |&x: &f64, &y: &f64| x.powf(y))
    }
}

// Convenience functions for applying binary ufuncs

/// Add arrays element-wise with broadcasting
///
/// # Arguments
///
/// * `a` - First input array
/// * `b` - Second input array
///
/// # Returns
///
/// An array with the sum of the two input arrays
///
/// # Examples
///
/// ```
/// use ::ndarray::array;
/// use scirs2_core::ufuncs::add;
///
/// let a = array![1.0, 2.0, 3.0];
/// let b = array![4.0, 5.0, 6.0];
/// let result = add(&a, &b);
/// assert_eq!(result, array![5.0, 7.0, 9.0]);
///
/// // With broadcasting
/// let a = array![[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]];
/// let b = array![10.0, 20.0, 30.0];
/// let result = add(&a, &b);
/// assert_eq!(result, array![[11.0, 22.0, 33.0], [14.0, 25.0, 36.0]]);
/// ```
#[allow(dead_code)]
pub fn add<D1, D2, S1, S2>(a: &crate::ndarray::ArrayBase<S1, D1>, b: &crate::ndarray::ArrayBase<S2, D2>) -> Array<f64, IxDyn>
where
    D1: Dimension,
    D2: Dimension,
    S1: crate::ndarray::Data<Elem = f64>,
    S2: crate::ndarray::Data<Elem = f64>,
{
    // Initialize the ufuncs registry if needed
    init_binary_ufuncs();

    // Use broadcasting to handle arrays of different shapes
    // We need to convert to dynamic dimension for broadcasting
    let a_view = a.view().into_dyn();
    let b_view = b.view().into_dyn();

    // Try to broadcast the arrays
    broadcast_apply(a_view, b_view, |x, y| x + y).unwrap_or_else(|_| {
        // If broadcasting fails, assume arrays are the same shape
        // and apply operation directly
        let mut result = Array::<f64>::zeros(a.raw_dim().into_dyn());

        let add_ufunc = AddUFunc;
        if let Err(_) = add_ufunc.apply(&[&a.view(), &b.view()], &mut result) {
            panic!("Arrays are not compatible for addition");
        }

        result
    })
}

/// Subtract arrays element-wise with broadcasting
///
/// # Arguments
///
/// * `a` - First input array
/// * `b` - Second input array
///
/// # Returns
///
/// An array with the difference of the two input arrays (a - b)
///
/// # Examples
///
/// ```
/// use ::ndarray::array;
/// use scirs2_core::ufuncs::subtract;
///
/// let a = array![5.0, 7.0, 9.0];
/// let b = array![1.0, 2.0, 3.0];
/// let result = subtract(&a, &b);
/// assert_eq!(result, array![4.0, 5.0, 6.0]);
///
/// // With broadcasting
/// let a = array![[10.0, 20.0, 30.0], [40.0, 50.0, 60.0]];
/// let b = array![1.0, 2.0, 3.0];
/// let result = subtract(&a, &b);
/// assert_eq!(result, array![[9.0, 18.0, 27.0], [39.0, 48.0, 57.0]]);
/// ```
#[allow(dead_code)]
pub fn subtract<D1, D2, S1, S2>(a: &crate::ndarray::ArrayBase<S1, D1>, b: &crate::ndarray::ArrayBase<S2, D2>) -> Array<f64, IxDyn>
where
    D1: Dimension,
    D2: Dimension,
    S1: crate::ndarray::Data<Elem = f64>,
    S2: crate::ndarray::Data<Elem = f64>,
{
    // Initialize the ufuncs registry if needed
    init_binary_ufuncs();

    // Use broadcasting to handle arrays of different shapes
    let a_view = a.view().into_dyn();
    let b_view = b.view().into_dyn();

    // Try to broadcast the arrays
    broadcast_apply(a_view, b_view, |x, y| x - y).unwrap_or_else(|_| {
        // If broadcasting fails, assume arrays are the same shape
        // and apply operation directly
        let mut result = Array::<f64>::zeros(a.raw_dim().into_dyn());

        let subtract_ufunc = SubtractUFunc;
        if let Err(_) = subtract_ufunc.apply(&[&a.view(), &b.view()], &mut result) {
            panic!("Arrays are not compatible for subtraction");
        }

        result
    })
}

/// Multiply arrays element-wise with broadcasting
///
/// # Arguments
///
/// * `a` - First input array
/// * `b` - Second input array
///
/// # Returns
///
/// An array with the product of the two input arrays
///
/// # Examples
///
/// ```
/// use ::ndarray::array;
/// use scirs2_core::ufuncs::multiply;
///
/// let a = array![1.0, 2.0, 3.0];
/// let b = array![4.0, 5.0, 6.0];
/// let result = multiply(&a, &b);
/// assert_eq!(result, array![4.0, 10.0, 18.0]);
///
/// // With broadcasting
/// let a = array![[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]];
/// let b = array![10.0, 20.0, 30.0];
/// let result = multiply(&a, &b);
/// assert_eq!(result, array![[10.0, 40.0, 90.0], [40.0, 100.0, 180.0]]);
/// ```
#[allow(dead_code)]
pub fn multiply<D1, D2, S1, S2>(a: &crate::ndarray::ArrayBase<S1, D1>, b: &crate::ndarray::ArrayBase<S2, D2>) -> Array<f64, IxDyn>
where
    D1: Dimension,
    D2: Dimension,
    S1: crate::ndarray::Data<Elem = f64>,
    S2: crate::ndarray::Data<Elem = f64>,
{
    // Initialize the ufuncs registry if needed
    init_binary_ufuncs();

    // Use broadcasting to handle arrays of different shapes
    let a_view = a.view().into_dyn();
    let b_view = b.view().into_dyn();

    // Try to broadcast the arrays
    broadcast_apply(a_view, b_view, |x, y| x * y).unwrap_or_else(|_| {
        // If broadcasting fails, assume arrays are the same shape
        // and apply operation directly
        let mut result = Array::<f64>::zeros(a.raw_dim().into_dyn());

        let multiply_ufunc = MultiplyUFunc;
        if let Err(_) = multiply_ufunc.apply(&[&a.view(), &b.view()], &mut result) {
            panic!("Arrays are not compatible for multiplication");
        }

        result
    })
}

/// Divide arrays element-wise with broadcasting
///
/// # Arguments
///
/// * `a` - First input array (numerator)
/// * `b` - Second input array (denominator)
///
/// # Returns
///
/// An array with the quotient of the two input arrays (a / b)
///
/// # Examples
///
/// ```
/// use ::ndarray::array;
/// use scirs2_core::ufuncs::divide;
///
/// let a = array![4.0, 10.0, 18.0];
/// let b = array![1.0, 2.0, 3.0];
/// let result = divide(&a, &b);
/// assert_eq!(result, array![4.0, 5.0, 6.0]);
///
/// // With broadcasting
/// let a = array![[10.0, 40.0, 90.0], [40.0, 100.0, 180.0]];
/// let b = array![10.0, 20.0, 30.0];
/// let result = divide(&a, &b);
/// assert_eq!(result, array![[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]]);
/// ```
#[allow(dead_code)]
pub fn divide<D1, D2, S1, S2>(a: &crate::ndarray::ArrayBase<S1, D1>, b: &crate::ndarray::ArrayBase<S2, D2>) -> Array<f64, IxDyn>
where
    D1: Dimension,
    D2: Dimension,
    S1: crate::ndarray::Data<Elem = f64>,
    S2: crate::ndarray::Data<Elem = f64>,
{
    // Initialize the ufuncs registry if needed
    init_binary_ufuncs();

    // Use broadcasting to handle arrays of different shapes
    let a_view = a.view().into_dyn();
    let b_view = b.view().into_dyn();

    // Try to broadcast the arrays
    broadcast_apply(a_view, b_view, |x, y| {
        if *y == 0.0 {
            f64::NAN // Return NaN for division by zero
        } else {
            x / y
        }
    }).unwrap_or_else(|_| {
        // If broadcasting fails, assume arrays are the same shape
        // and apply operation directly
        let mut result = Array::<f64>::zeros(a.raw_dim().into_dyn());

        let divide_ufunc = DivideUFunc;
        if let Err(_) = divide_ufunc.apply(&[&a.view(), &b.view()], &mut result) {
            panic!("Arrays are not compatible for division");
        }

        result
    })
}

/// Raise arrays element-wise to a power with broadcasting
///
/// # Arguments
///
/// * `a` - First input array (base)
/// * `b` - Second input array (exponent)
///
/// # Returns
///
/// An array with each element of `a` raised to the power of the corresponding element of `b`
///
/// # Examples
///
/// ```
/// use ::ndarray::array;
/// use scirs2_core::ufuncs::power;
///
/// let a = array![2.0, 3.0, 4.0];
/// let b = array![2.0, 2.0, 2.0];
/// let result = power(&a, &b);
/// assert_eq!(result, array![4.0, 9.0, 16.0]);
///
/// // With broadcasting
/// let a = array![[2.0, 3.0, 4.0], [5.0, 6.0, 7.0]];
/// let b = array![2.0, 3.0, 2.0];
/// let result = power(&a, &b);
/// assert_eq!(result, array![[4.0, 27.0, 16.0], [25.0, 216.0, 49.0]]);
/// ```
#[allow(dead_code)]
pub fn power<D1, D2, S1, S2>(a: &crate::ndarray::ArrayBase<S1, D1>, b: &crate::ndarray::ArrayBase<S2, D2>) -> Array<f64, IxDyn>
where
    D1: Dimension,
    D2: Dimension,
    S1: crate::ndarray::Data<Elem = f64>,
    S2: crate::ndarray::Data<Elem = f64>,
{
    // Initialize the ufuncs registry if needed
    init_binary_ufuncs();

    // Use broadcasting to handle arrays of different shapes
    let a_view = a.view().into_dyn();
    let b_view = b.view().into_dyn();

    // Try to broadcast the arrays
    broadcast_apply(a_view, b_view, |x, y| x.powf(*y)).unwrap_or_else(|_| {
        // If broadcasting fails, assume arrays are the same shape
        // and apply operation directly
        let mut result = Array::<f64>::zeros(a.raw_dim().into_dyn());

        let power_ufunc = PowerUFunc;
        if let Err(_) = power_ufunc.apply(&[&a.view(), &b.view()], &mut result) {
            panic!("Arrays are not compatible for power operation");
        }

        result
    })
}

#[cfg(test)]
mod tests {
    use super::*;
    use ::ndarray::array;

    #[test]
    fn test_add() {
        let a = array![1.0, 2.0, 3.0];
        let b = array![4.0, 5.0, 6.0];
        let result = add(&a, &b);
        assert_eq!(result, array![5.0, 7.0, 9.0]);

        // Test broadcasting
        let a = array![[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]];
        let b = array![10.0, 20.0, 30.0];
        let result = add(&a, &b);
        assert_eq!(result, array![[11.0, 22.0, 33.0], [14.0, 25.0, 36.0]]);
    }

    #[test]
    fn test_subtract() {
        let a = array![5.0, 7.0, 9.0];
        let b = array![1.0, 2.0, 3.0];
        let result = subtract(&a, &b);
        assert_eq!(result, array![4.0, 5.0, 6.0]);

        // Test broadcasting
        let a = array![[10.0, 20.0, 30.0], [40.0, 50.0, 60.0]];
        let b = array![1.0, 2.0, 3.0];
        let result = subtract(&a, &b);
        assert_eq!(result, array![[9.0, 18.0, 27.0], [39.0, 48.0, 57.0]]);
    }

    #[test]
    fn test_multiply() {
        let a = array![1.0, 2.0, 3.0];
        let b = array![4.0, 5.0, 6.0];
        let result = multiply(&a, &b);
        assert_eq!(result, array![4.0, 10.0, 18.0]);

        // Test broadcasting
        let a = array![[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]];
        let b = array![10.0, 20.0, 30.0];
        let result = multiply(&a, &b);
        assert_eq!(result, array![[10.0, 40.0, 90.0], [40.0, 100.0, 180.0]]);
    }

    #[test]
    fn test_divide() {
        let a = array![4.0, 10.0, 18.0];
        let b = array![1.0, 2.0, 3.0];
        let result = divide(&a, &b);
        assert_eq!(result, array![4.0, 5.0, 6.0]);

        // Test broadcasting
        let a = array![[10.0, 40.0, 90.0], [40.0, 100.0, 180.0]];
        let b = array![10.0, 20.0, 30.0];
        let result = divide(&a, &b);
        assert_eq!(result, array![[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]]);

        // Test division by zero
        let a = array![1.0, 2.0, 3.0];
        let b = array![1.0, 0.0, 3.0];
        let result = divide(&a, &b);
        assert_eq!(result[0], 1.0);
        assert!(result[1].is_nan());
        assert_eq!(result[2], 1.0);
    }

    #[test]
    fn test_power() {
        let a = array![2.0, 3.0, 4.0];
        let b = array![2.0, 2.0, 2.0];
        let result = power(&a, &b);
        assert_eq!(result, array![4.0, 9.0, 16.0]);

        // Test broadcasting
        let a = array![[2.0, 3.0, 4.0], [5.0, 6.0, 7.0]];
        let b = array![2.0, 3.0, 2.0];
        let result = power(&a, &b);
        assert_eq!(result, array![[4.0, 27.0, 16.0], [25.0, 216.0, 49.0]]);
    }
}