14
0

- update to 3.1.0:

* Fixed a detection issue of the BLAS libraires packaged by conda-forge on Windows.
    https://github.com/joblib/threadpoolctl/pull/112
  * `threadpool_limits` and `ThreadpoolController.limit` now accept the string
    "sequential_blas_under_openmp" for the `limits` parameter. It should only be used for
    the specific case when one wants to have sequential BLAS calls within an OpenMP
    parallel region. It takes into account the unexpected behavior of OpenBLAS with the
    OpenMP threading layer.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-threadpoolctl?expand=0&rev=8
This commit is contained in:
2022-07-24 08:42:39 +00:00
committed by Git OBS Bridge
parent 795029435b
commit d936dcc403
4 changed files with 22 additions and 7 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sun Jul 24 08:40:55 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 3.1.0:
* Fixed a detection issue of the BLAS libraires packaged by conda-forge on Windows.
https://github.com/joblib/threadpoolctl/pull/112
* `threadpool_limits` and `ThreadpoolController.limit` now accept the string
"sequential_blas_under_openmp" for the `limits` parameter. It should only be used for
the specific case when one wants to have sequential BLAS calls within an OpenMP
parallel region. It takes into account the unexpected behavior of OpenBLAS with the
OpenMP threading layer.
-------------------------------------------------------------------
Sat Oct 16 22:16:06 UTC 2021 - Dirk Müller <dmueller@suse.com>