Jérémie du Boisberranger
Jérémie du Boisberranger
Similar to ``StrOptions`` but for any type, not restricted to str. We need this kind of constraint in a few estimators. I updated them in this PR but I may...
PR #22722 introduced a common method for the validation of the parameters of an estimator. We now need to use it in all estimators. Please open one PR per estimator...
Hi, I'm trying to profile some cython code, which in addition uses external C code. My issue is that part of this external C code is displayed next to its...
Hi, I have a code which mixes BLAS calls (gemm) and OpenMP based parallel loops (they are not nested). When OpenBLAS is built using OpenMP everything is fine but when...
Running the following code on a machine with many cores will give worse performances than limiting the number of threads. ```python import numpy as np X = np.random.random_sample((2048, 2048)) %time...
When there are multiple OpenMP loaded. Replacing 0 by any other thread_num (below) can cause the issue. ```python with nogil, parallel(): if openmp.omp_get_thread_num() == 0: with gil: threadpool_info() ``` I'm...
Hi, In the doc it's said that one can give custom `benchmark_name` and `pretty_name` for a benchmark ([here](https://asv.readthedocs.io/en/stable/benchmarks.html)). It's written that all attributes work for all benchmark types, but I...
Some recently added tests in ``test_pairwise_distances_reduction.py`` are too slow due to over parametrization or too big datasets. The tests for the whole file take (locally) **1min45s** on main, with ``test_strategies_consistency``...
removed deprecated kwarg params in ``RadiusNeighborsClassifiers`` and in ``OneClassSVM.fit``
follow up of #24445 cc/ @glemaitre @ogrisel