use mdarray_linalg::{Naive, testing::matvec::*};
#[test]
fn add_outer_basic() {
test_add_outer_basic(Naive)
}
#[test]
fn add_outer_cplx() {
test_add_outer_cplx(Naive)
}
#[test]
fn add_outer_subview() {
test_add_outer_subview(Naive)
}
#[test]
fn dot_real() {
test_dot_real(Naive)
}
#[test]
fn dot_complex() {
test_dot_complex(Naive)
}
#[test]
fn argmax_real() {
test_argmax_real(Naive);
}
#[test]
fn argmax_abs() {
test_argmax_abs(Naive)
}
#[test]
fn argmax_write_real() {
test_argmax_write_real(Naive)
}