burn_tensor/tensor/ops/
alias.rsuse crate::backend::{Backend, BackendBridge};
pub type Device<B> = <B as Backend>::Device;
pub type FloatElem<B> = <B as Backend>::FloatElem;
pub type IntElem<B> = <B as Backend>::IntElem;
pub type FullPrecisionBackend<B> =
<<B as Backend>::FullPrecisionBridge as BackendBridge<B>>::Target;
pub type FloatTensor<B> = <B as Backend>::FloatTensorPrimitive;
pub type IntTensor<B> = <B as Backend>::IntTensorPrimitive;
pub type BoolTensor<B> = <B as Backend>::BoolTensorPrimitive;
pub type QuantizedTensor<B> = <B as Backend>::QuantizedTensorPrimitive;