burn-backend 0.20.1

Core backend interfaces and data structures for executing tensor operations in Burn.
Documentation
mod autodiff;
mod base;
mod bool;
mod float;
mod int;
mod numeric;

pub use autodiff::*;
pub use base::*;
pub use numeric::*;

/// Computation to be used to update the existing values in indexed assignment operations (scatter/select).
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub enum IndexingUpdateOp {
    // Assign,
    /// Performs an addition.
    Add,
    // Mul
}