pub trait TensorDot: TensorElementwise {
// Required method
fn dot_general(
&mut self,
lhs: &Tensor,
rhs: &Tensor,
config: &DotGeneralConfig,
) -> Result<Tensor>;
}Expand description
Dot-general operations.
§Examples
use tenferro_tensor::TensorDot;
fn accepts_dot<B: TensorDot>(_backend: &mut B) {}