pub fn solve_backend<T>(
a: &TypedTensor<T>,
b: &TypedTensor<T>,
) -> Result<TypedTensor<T>, BackendLinalgError>where
T: BackendLinalgScalar,Expand description
Solve A X = B with the configured tenferro backend.
ยงErrors
Returns an error when the input shapes or scalar dtype are invalid (a shape or dtype mismatch) or the coefficient matrix is singular (a singular failure).