burn-tch 0.22.0-pre.1

LibTorch backend for the Burn framework using the tch bindings.
Documentation
1
2
3
4
5
6
7
8
9
use burn_backend::distributed::DistributedOps;
use burn_backend::ops::TransactionOps;

use crate::LibTorch;

impl TransactionOps<Self> for LibTorch {}

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