tensr 0.1.3

A high-performance, cross-platform, multi-backend tensor/array library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{
    array::{
        base::ArrayBase, function_2::TensrFn2, traits::GetWriteableBuffer,
    },
    backend::{op_traits, traits},
    dimension::dim::Dimension,
};

tensr_proc_macros::generate_all_binary_ops!(Add);
tensr_proc_macros::generate_all_binary_ops!(Sub);
tensr_proc_macros::generate_all_binary_ops!(Mul);
tensr_proc_macros::generate_all_binary_ops!(Div);