conspire::math

Trait TensorArray

Source
pub trait TensorArray {
    type Array;
    type Item;

    // Required methods
    fn as_array(&self) -> Self::Array;
    fn identity() -> Self;
    fn new(array: Self::Array) -> Self;
    fn zero() -> Self;
}
Expand description

Common methods for tensors derived from arrays.

Required Associated Types§

Source

type Array

The type of array corresponding to the tensor.

Source

type Item

The type of item encountered when iterating over the tensor.

Required Methods§

Source

fn as_array(&self) -> Self::Array

Returns the tensor as an array.

Source

fn identity() -> Self

Returns the identity tensor.

Source

fn new(array: Self::Array) -> Self

Returns a tensor given an array.

Source

fn zero() -> Self

Returns the zero tensor.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl TensorArray for TensorRank0

Source§

impl<const D: usize, const I: usize> TensorArray for TensorRank1<D, I>

Source§

impl<const D: usize, const I: usize, const J: usize> TensorArray for TensorRank2<D, I, J>

Source§

type Array = [[f64; D]; D]

Source§

type Item = TensorRank1<D, J>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize> TensorArray for TensorRank3<D, I, J, K>

Source§

type Array = [[[f64; D]; D]; D]

Source§

type Item = TensorRank2<D, J, K>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> TensorArray for TensorRank4<D, I, J, K, L>

Source§

type Array = [[[[f64; D]; D]; D]; D]

Source§

type Item = TensorRank3<D, J, K, L>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const W: usize> TensorArray for TensorRank4List<D, I, J, K, L, W>

Source§

type Array = [[[[[f64; D]; D]; D]; D]; W]

Source§

type Item = TensorRank4<D, I, J, K, L>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize> TensorArray for TensorRank3List<D, I, J, K, W>

Source§

type Array = [[[[f64; D]; D]; D]; W]

Source§

type Item = TensorRank3<D, I, J, K>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize> TensorArray for TensorRank3List2D<D, I, J, K, W, X>

Source§

type Array = [[[[[f64; D]; D]; D]; W]; X]

Source§

type Item = TensorRank3List<D, I, J, K, W>

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const W: usize, const X: usize, const Y: usize> TensorArray for TensorRank3List3D<D, I, J, K, W, X, Y>

Source§

type Array = [[[[[[f64; D]; D]; D]; W]; X]; Y]

Source§

type Item = TensorRank3List2D<D, I, J, K, W, X>

Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize> TensorArray for TensorRank2List<D, I, J, W>

Source§

type Array = [[[f64; D]; D]; W]

Source§

type Item = TensorRank2<D, I, J>

Source§

impl<const D: usize, const I: usize, const J: usize, const W: usize, const X: usize> TensorArray for TensorRank2List2D<D, I, J, W, X>

Source§

type Array = [[[[f64; D]; D]; W]; X]

Source§

type Item = TensorRank2List<D, I, J, W>

Source§

impl<const D: usize, const I: usize, const W: usize> TensorArray for TensorRank1List<D, I, W>

Source§

type Array = [[f64; D]; W]

Source§

type Item = TensorRank1<D, I>

Source§

impl<const D: usize, const I: usize, const W: usize, const X: usize> TensorArray for TensorRank1List2D<D, I, W, X>

Source§

type Array = [[[f64; D]; W]; X]

Source§

type Item = TensorRank1List<D, I, W>

Source§

impl<const W: usize> TensorArray for TensorRank0List<W>