-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Parallel build for CI #30452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Parallel build for CI #30452
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8a227c5
parallel build for CI
WillAyd 4c4d2c1
Merge remote-tracking branch 'upstream/master' into parallel-build
WillAyd f313e4a
Merge remote-tracking branch 'upstream/master' into parallel-build
WillAyd fc7cd09
Merge remote-tracking branch 'upstream/master' into parallel-build
WillAyd 9b012d1
nproc
WillAyd 86344a5
alternate syntax
WillAyd 47a8bc2
back to 2
WillAyd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason for using 2 processes? I'd set
-j0
and use as many processes are cores available.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this documented somewhere? I tried locally and -j0 doesn't seem to parallelize anything
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, not sure why I was sure this could be automatically parallelized to the number of cores. I think it was intended to have this implemented, see https://github.com/python/cpython/blob/master/Lib/distutils/command/build_ext.py#L453 but in practice there is no way to make
parallel
equal toTrue
.Given that, I'd use:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does the parallel extensions flag not work? is -j the new thing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parallel and j are the same thing for distutils:
https://github.com/python/cpython/blob/03c8e5d46673e4704c8dc955d52735966ffdc2a4/Lib/distutils/command/build_ext.py#L87
And have the same requirements for specifying an integer (the assignment to
self.parallel
as shown in Marc's link I think can be misleading).Here is the GNU make documentation on that:
https://www.gnu.org/software/make/manual/html_node/Parallel.html#Parallel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@datapythonista not sure that works for macOS unless you know of an alternate syntax?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know much about mac, but
-j $(nproc)
is equivalent, and works when the shell is not bash I thinkThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm so I don't think nproc is available by default in macOS, so reverting to 2 for now (though definitely a nice idea)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it looks like the OSX equivalent is
sysctl -n hw.ncpu
, but that's one of the namespaces that apple is liable to change every release