burn-tch 0.21.0

LibTorch backend for the Burn framework using the tch bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(clippy::single_range_in_vec_init)]

//! Burn Tch Backend

mod backend;
mod element;
mod ops;
mod tensor;

pub use backend::*;
pub use element::*;
pub use tensor::*;