burn-std 0.22.0-pre.1

Core types and utilities shared across the Burn ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Autodiff config module.
pub mod autodiff;
/// Fusion config module.
pub mod fusion;
/// Remote backend config module.
pub mod remote;

mod base;
mod logger;

pub use base::*;
pub use cubecl_common::config::RuntimeConfig;
pub use cubecl_common::config::logger::{LogCrateLevel, LogLevel, LoggerConfig, LoggerSinks};
pub use logger::*;