burn_backend/tensor/ops/
mod.rs

1mod autodiff;
2mod base;
3mod bool;
4mod float;
5mod int;
6mod numeric;
7
8pub use autodiff::*;
9pub use base::*;
10pub use numeric::*;
11
12/// Computation to be used to update the existing values in indexed assignment operations (scatter/select).
13#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
14pub enum IndexingUpdateOp {
15    // Assign,
16    /// Performs an addition.
17    Add,
18    // Mul
19}