burn-ndarray 0.18.0

Ndarray backend for the Burn framework
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::{
    FloatNdArrayElement, NdArray,
    element::{IntNdArrayElement, QuantElement},
};
use burn_tensor::ops::TransactionOps;

impl<E: FloatNdArrayElement, I: IntNdArrayElement, Q: QuantElement> TransactionOps<Self>
    for NdArray<E, I, Q>
{
}