burn-flex 0.22.0-pre.1

A fast, portable CPU backend for the Burn framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Transaction operations for the Flex backend.

use crate::Flex;
use burn_backend::distributed::DistributedOps;
use burn_backend::ops::TransactionOps;

// TransactionOps has default implementations.
impl TransactionOps<Flex> for Flex {}

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