Fix remaining resource_tracker-related test warning failures#1263
Merged
ogrisel merged 7 commits intojoblib:masterfrom Feb 7, 2022
Merged
Fix remaining resource_tracker-related test warning failures#1263ogrisel merged 7 commits intojoblib:masterfrom
ogrisel merged 7 commits intojoblib:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1263 +/- ##
==========================================
- Coverage 88.40% 88.38% -0.02%
==========================================
Files 47 47
Lines 7045 7052 +7
==========================================
+ Hits 6228 6233 +5
- Misses 817 819 +2
Continue to review full report at Codecov.
|
Contributor
Author
|
I pushed another commit to see if CI is more stable now. |
Contributor
Author
|
It seems to be stable. I added a entry in the changelog. If it's still green, I will merge to get a green CI on the master branch. |
tomMoral
approved these changes
Feb 7, 2022
This was referenced Sep 30, 2022
netbsd-srcmastr
pushed a commit
to NetBSD/pkgsrc
that referenced
this pull request
Nov 22, 2022
Release 1.2.0 Fix a security issue where eval(pre_dispatch) could potentially run arbitrary code. Now only basic numerics are supported. joblib/joblib#1327 Make sure that joblib works even when multiprocessing is not available, for instance with Pyodide joblib/joblib#1256 Avoid unnecessary warnings when workers and main process delete the temporary memmap folder contents concurrently. joblib/joblib#1263 Fix memory alignment bug for pickles containing numpy arrays. This is especially important when loading the pickle with mmap_mode != None as the resulting numpy.memmap object would not be able to correct the misalignment without performing a memory copy. This bug would cause invalid computation and segmentation faults with native code that would directly access the underlying data buffer of a numpy array, for instance C/C++/Cython code compiled with older GCC versions or some old OpenBLAS written in platform specific assembly. joblib/joblib#1254 Vendor cloudpickle 2.2.0 which adds support for PyPy 3.8+. Vendor loky 3.3.0 which fixes several bugs including: robustly forcibly terminating worker processes in case of a crash (joblib/joblib#1269); avoiding leaking worker processes in case of nested loky parallel calls; reliability spawn the correct number of reusable workers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Blindly trying something on the CI.
I cannot reproduce the race condition on my laptop unfortunately.
Furthermore it seems that we also observe this test failing on one of the macos builds with the multiprocessing backend although I am not 100% sure why.