Skip to main content

burn_backend/tensor/ops/
mod.rs

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