pub mod tensor {
use crate::backend::BackendTypes;
pub use burn_std::ops::IndexingUpdateOp;
pub type Device<B> = <B as BackendTypes>::Device;
pub type FloatTensor<B> = <B as BackendTypes>::FloatTensorPrimitive;
pub type IntTensor<B> = <B as BackendTypes>::IntTensorPrimitive;
pub type BoolTensor<B> = <B as BackendTypes>::BoolTensorPrimitive;
pub type QuantizedTensor<B> = <B as BackendTypes>::QuantizedTensorPrimitive;
}