-
Notifications
You must be signed in to change notification settings - Fork 283
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
Make threading an explicit option rather than relying on the MPI impl… #914
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ | |
|
||
import easybuild.tools.toolchain as toolchain | ||
from easybuild.framework.easyblock import EasyBlock | ||
from easybuild.framework.easyconfig import CUSTOM | ||
from easybuild.tools.build_log import EasyBuildError | ||
from easybuild.tools.filetools import copytree | ||
from easybuild.tools.run import run_cmd | ||
|
@@ -48,6 +49,14 @@ | |
class EB_SCOTCH(EasyBlock): | ||
"""Support for building/installing SCOTCH.""" | ||
|
||
@staticmethod | ||
def extra_options(extra_vars=None): | ||
"""Define custom easyconfig parameters specific to Scotch.""" | ||
extra_vars = { | ||
'threadedmpi': [None, "Use threaded MPI calls.", CUSTOM], | ||
} | ||
return EasyBlock.extra_options(extra_vars) | ||
|
||
def configure_step(self): | ||
"""Configure SCOTCH build: locate the template makefile, copy it to a general Makefile.inc and patch it.""" | ||
|
||
|
@@ -108,9 +117,12 @@ def build_step(self): | |
if self.toolchain.options['i8']: | ||
cflags += " -DINTSIZE64" | ||
|
||
if not self.toolchain.mpi_family() in [toolchain.INTELMPI, toolchain.QLOGICMPI]: #@UndefinedVariable | ||
if self.cfg['threadedmpi']: | ||
cflags += " -DSCOTCH_PTHREAD" | ||
|
||
# TODO For backwards compatability of v2.8.0 the following is necessary but could be removed on a major version upgrade | ||
if self.cfg['threadedmpi'] is None and not self.toolchain.mpi_family() in [toolchain.INTELMPI, toolchain.QLOGICMPI]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please change to and self.toolchain.mpi_family() not in [toolchain.INTELMPI, toolchain.QLOGICMPI]: |
||
cflags += " -DSCOTCH_PTHREAD" | ||
|
||
# actually build | ||
apps = ['scotch', 'ptscotch'] | ||
if LooseVersion(self.version) >= LooseVersion('6.0'): | ||
|
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.
@ocaisa this implies that for builds on top of OpenMPI (for example),
threadedmpi = True
must be now specified to obtain the same installation, so this should be something like:to ensure backward compatibility?
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.
Ok, but I'm pretty sure this wasn't working for people, to my eyes it's mostly there for OpenFOAM and threaded scotch does not work with OpenFOAM.
I'll set the default to true for OpenMPI (that's backwards compatibility for everything in the easyconfig repo) but personally I think this is probably not doing what people actually expect.
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.
How do I check a variable has been set in the easyconfig? I need to know if they have explicitly set the value to false in the easyconfig so I can ensure I only change the value to true when it's not defined there.
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.
@ocaisa you could use
None
as default value, and assume people will set it toFalse
in the easyconfig?and then check
self.cfg['threadedmpi'] is None
there's no easy way to distinguish between a default value and the same value but specified by the easyconfig