Skip to main content

svd_async

Function svd_async 

Source
pub fn svd_async<'py>(
    py: Python<'py>,
    matrix: &Bound<'_, PyArray2<f64>>,
    full_matrices: Option<bool>,
) -> PyResult<Bound<'py, PyAny>>
Expand description

Async SVD operation for large matrices

This function runs SVD in a background thread and returns a Python awaitable. Useful for large matrices (>500x500) to avoid blocking the event loop.