Skip to main content

solve_backend

Function solve_backend 

Source
pub fn solve_backend<T>(
    a: &TypedTensor<T>,
    b: &TypedTensor<T>,
) -> Result<TypedTensor<T>, BackendLinalgError>
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).