burn-ndarray 0.22.0-pre.1

Ndarray backend for the Burn framework
Documentation
1
2
3
4
5
6
7
8
use crate::NdArray;
use burn_backend::distributed::DistributedOps;
use burn_backend::ops::TransactionOps;

impl TransactionOps<Self> for NdArray {}

// DistributedOps has default implementations; NdArray does not support collective operations.
impl DistributedOps<Self> for NdArray {}