pub trait ExecutionBackend: Send + Sync {
// Required methods
fn execute_step<'life0, 'async_trait>(
&'life0 self,
input: Tensor,
experts: Vec<Tensor>,
state: ExecutionState,
) -> Pin<Box<dyn Future<Output = AuriaResult<ExecutionOutput>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn backend_name(&self) -> &str;
}