Skip to main content

burn_candle/
lib.rs

1#![warn(missing_docs)]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![allow(unused)] // TODO remove when backend filled
4
5//! Burn Candle Backend
6
7#[macro_use]
8extern crate derive_new;
9
10mod backend;
11mod element;
12mod ops;
13mod tensor;
14
15pub use backend::*;
16pub use element::*;
17pub use tensor::*;