pub trait TensorOp: Send + Sync { // Required methods fn name(&self) -> &str; fn execute(&self, input: &Tensor) -> Result<Tensor, TribeError>; }
Trait for all tensor operations (aligned with .AI3 TensorOp).