// Copyright 2018-2024 argmin developers // // Licensed under the Apache License, Version 2.0 or the MIT license , at your option. This file may not be // copied, modified, or distributed except according to those terms. #[cfg(test)] mod tests { #[allow(unused_imports)] use super::*; use approx::assert_relative_eq; use argmin_math::ArgminMul; use ndarray::array; use ndarray::{Array1, Array2}; use num_complex::Complex; use paste::item; macro_rules! make_test { ($t:ty) => { item! { #[test] fn []() { let a = array![1 as $t, 4 as $t, 8 as $t]; let b = 2 as $t; let target = array![2 as $t, 8 as $t, 16 as $t]; let res = as ArgminMul<$t, Array1<$t>>>::mul(&a, &b); for i in 0..3 { assert_relative_eq!(target[i] as f64, res[i] as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![ Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t) ]; let b = Complex::new(2 as $t, 3 as $t); let target = array![a[0] * b, a[1] * b]; let res = > as ArgminMul, Array1>>>::mul(&a, &b); for i in 0..2 { assert_relative_eq!(target[i].re as f64, res[i].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[i].im as f64, res[i].im as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![ Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t) ]; let b = 2 as $t; let target = array![a[0] * b, a[1] * b]; let res = > as ArgminMul<$t, Array1>>>::mul(&a, &b); for i in 0..2 { assert_relative_eq!(target[i].re as f64, res[i].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[i].im as f64, res[i].im as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![1 as $t, 4 as $t, 8 as $t]; let b = 2 as $t; let target = array![2 as $t, 8 as $t, 16 as $t]; let res = <$t as ArgminMul, Array1<$t>>>::mul(&b, &a); for i in 0..3 { assert_relative_eq!(target[i] as f64, res[i] as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![ Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t) ]; let b = Complex::new(2 as $t, 3 as $t); let target = array![a[0] * b, a[1] * b]; let res = as ArgminMul>, Array1>>>::mul(&b, &a); for i in 0..2 { assert_relative_eq!(target[i].re as f64, res[i].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[i].im as f64, res[i].im as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![ Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t) ]; let b = 2 as $t; let target = array![a[0] * b, a[1] * b]; let res = <$t as ArgminMul>, Array1>>>::mul(&b, &a); for i in 0..2 { assert_relative_eq!(target[i].re as f64, res[i].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[i].im as f64, res[i].im as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![1 as $t, 4 as $t, 8 as $t]; let b = array![2 as $t, 3 as $t, 4 as $t]; let target = array![2 as $t, 12 as $t, 32 as $t]; let res = as ArgminMul, Array1<$t>>>::mul(&a, &b); for i in 0..3 { assert_relative_eq!(target[i] as f64, res[i] as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] fn []() { let a = array![ Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t) ]; let b = array![ Complex::new(2 as $t, 3 as $t), Complex::new(1 as $t, 2 as $t) ]; let target = array![a[0]*b[0], a[1]*b[1]]; let res = > as ArgminMul>, Array1>>>::mul(&a, &b); for i in 0..2 { assert_relative_eq!(target[i].re as f64, res[i].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[i].im as f64, res[i].im as f64, epsilon = std::f64::EPSILON); } } } item! { #[test] #[should_panic] fn []() { let a = array![1 as $t, 4 as $t]; let b = array![41 as $t, 38 as $t, 34 as $t]; as ArgminMul, Array1<$t>>>::mul(&a, &b); } } item! { #[test] #[should_panic] fn []() { let a = array![]; let b = array![41 as $t, 38 as $t, 34 as $t]; as ArgminMul, Array1<$t>>>::mul(&a, &b); } } item! { #[test] #[should_panic] fn []() { let a = array![41 as $t, 38 as $t, 34 as $t]; let b = array![]; as ArgminMul, Array1<$t>>>::mul(&a, &b); } } item! { #[test] fn []() { let a = array![ [1 as $t, 4 as $t, 8 as $t], [2 as $t, 5 as $t, 9 as $t] ]; let b = array![ [2 as $t, 3 as $t, 4 as $t], [3 as $t, 4 as $t, 5 as $t] ]; let target = array![ [2 as $t, 12 as $t, 32 as $t], [6 as $t, 20 as $t, 45 as $t] ]; let res = as ArgminMul, Array2<$t>>>::mul(&a, &b); for i in 0..3 { for j in 0..2 { assert_relative_eq!(target[(j, i)] as f64, res[(j, i)] as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] fn []() { let a = array![ [Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t)], [Complex::new(4 as $t, 2 as $t), Complex::new(7 as $t, 1 as $t)], [Complex::new(3 as $t, 1 as $t), Complex::new(6 as $t, 2 as $t)], ]; let b = array![ [Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t)], [Complex::new(4 as $t, 2 as $t), Complex::new(7 as $t, 1 as $t)], [Complex::new(3 as $t, 1 as $t), Complex::new(6 as $t, 2 as $t)], ]; let target = array![ [a[(0, 0)] * b[(0, 0)], a[(0, 1)] * b[(0, 1)]], [a[(1, 0)] * b[(1, 0)], a[(1, 1)] * b[(1, 1)]], [a[(2, 0)] * b[(2, 0)], a[(2, 1)] * b[(2, 1)]], ]; let res = > as ArgminMul>, Array2>>>::mul(&a, &b); for i in 0..2 { for j in 0..3 { assert_relative_eq!(target[(j, i)].re as f64, res[(j, i)].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[(j, i)].im as f64, res[(j, i)].im as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] #[should_panic] fn []() { let a = array![ [1 as $t, 4 as $t, 8 as $t], [2 as $t, 5 as $t, 9 as $t] ]; let b = array![ [41 as $t, 38 as $t], ]; as ArgminMul, Array2<$t>>>::mul(&a, &b); } } item! { #[test] #[should_panic] fn []() { let a = array![ [1 as $t, 4 as $t, 8 as $t], [2 as $t, 5 as $t, 9 as $t] ]; let b = array![[]]; as ArgminMul, Array2<$t>>>::mul(&a, &b); } } item! { #[test] fn []() { let a = array![ [1 as $t, 4 as $t, 8 as $t], [2 as $t, 5 as $t, 9 as $t] ]; let b = 2 as $t; let target = array![ [2 as $t, 8 as $t, 16 as $t], [4 as $t, 10 as $t, 18 as $t] ]; let res = as ArgminMul<$t, Array2<$t>>>::mul(&a, &b); for i in 0..3 { for j in 0..2 { assert_relative_eq!(target[(j, i)] as f64, res[(j, i)] as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] fn []() { let a = array![ [Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t)], [Complex::new(4 as $t, 2 as $t), Complex::new(7 as $t, 1 as $t)], [Complex::new(3 as $t, 1 as $t), Complex::new(6 as $t, 2 as $t)], ]; let b = Complex::new(3 as $t, 2 as $t); let target = array![ [a[(0, 0)] * b, a[(0, 1)] * b], [a[(1, 0)] * b, a[(1, 1)] * b], [a[(2, 0)] * b, a[(2, 1)] * b], ]; let res = > as ArgminMul, Array2>>>::mul(&a, &b); for i in 0..2 { for j in 0..3 { assert_relative_eq!(target[(j, i)].re as f64, res[(j, i)].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[(j, i)].im as f64, res[(j, i)].im as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] fn []() { let a = array![ [Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t)], [Complex::new(4 as $t, 2 as $t), Complex::new(7 as $t, 1 as $t)], [Complex::new(3 as $t, 1 as $t), Complex::new(6 as $t, 2 as $t)], ]; let b = 3 as $t; let target = array![ [a[(0, 0)] * b, a[(0, 1)] * b], [a[(1, 0)] * b, a[(1, 1)] * b], [a[(2, 0)] * b, a[(2, 1)] * b], ]; let res = > as ArgminMul<$t, Array2>>>::mul(&a, &b); for i in 0..2 { for j in 0..3 { assert_relative_eq!(target[(j, i)].re as f64, res[(j, i)].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[(j, i)].im as f64, res[(j, i)].im as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] fn []() { let b = array![ [1 as $t, 4 as $t, 8 as $t], [2 as $t, 5 as $t, 9 as $t] ]; let a = 2 as $t; let target = array![ [2 as $t, 8 as $t, 16 as $t], [4 as $t, 10 as $t, 18 as $t] ]; let res = <$t as ArgminMul, Array2<$t>>>::mul(&a, &b); for i in 0..3 { for j in 0..2 { assert_relative_eq!(target[(j, i)] as f64, res[(j, i)] as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] fn []() { let a = array![ [Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t)], [Complex::new(4 as $t, 2 as $t), Complex::new(7 as $t, 1 as $t)], [Complex::new(3 as $t, 1 as $t), Complex::new(6 as $t, 2 as $t)], ]; let b = Complex::new(3 as $t, 2 as $t); let target = array![ [a[(0, 0)] * b, a[(0, 1)] * b], [a[(1, 0)] * b, a[(1, 1)] * b], [a[(2, 0)] * b, a[(2, 1)] * b], ]; let res = as ArgminMul>, Array2>>>::mul(&b, &a); for i in 0..2 { for j in 0..3 { assert_relative_eq!(target[(j, i)].re as f64, res[(j, i)].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[(j, i)].im as f64, res[(j, i)].im as f64, epsilon = std::f64::EPSILON); } } } } item! { #[test] fn []() { let a = array![ [Complex::new(5 as $t, 3 as $t), Complex::new(8 as $t, 2 as $t)], [Complex::new(4 as $t, 2 as $t), Complex::new(7 as $t, 1 as $t)], [Complex::new(3 as $t, 1 as $t), Complex::new(6 as $t, 2 as $t)], ]; let b = 3 as $t; let target = array![ [a[(0, 0)] * b, a[(0, 1)] * b], [a[(1, 0)] * b, a[(1, 1)] * b], [a[(2, 0)] * b, a[(2, 1)] * b], ]; let res = <$t as ArgminMul>, Array2>>>::mul(&b, &a); for i in 0..2 { for j in 0..3 { assert_relative_eq!(target[(j, i)].re as f64, res[(j, i)].re as f64, epsilon = std::f64::EPSILON); assert_relative_eq!(target[(j, i)].im as f64, res[(j, i)].im as f64, epsilon = std::f64::EPSILON); } } } } }; } make_test!(i8); make_test!(u8); make_test!(i16); make_test!(u16); make_test!(i32); make_test!(u32); make_test!(i64); make_test!(u64); make_test!(f32); make_test!(f64); }