Skip to content

Commit

Permalink
Merge pull request #1663 from gppezzi/cray-stable
Browse files Browse the repository at this point in the history
mark use of Cray toolchains as stable (drop --experimental requirement)
  • Loading branch information
boegel committed Mar 15, 2016
2 parents 0dfc64e + c31786e commit e6a8f95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions easybuild/toolchains/craycce.py
Expand Up @@ -40,6 +40,5 @@ class CrayCCE(CrayPECray, CrayMPICH, LibSci):
SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME

def prepare(self, *args, **kwargs):
"""Prepare to use this toolchain; marked as experimental."""
self.log.experimental("Using %s toolchain", self.NAME)
"""Prepare to use this toolchain."""
super(CrayCCE, self).prepare(*args, **kwargs)
3 changes: 1 addition & 2 deletions easybuild/toolchains/craygnu.py
Expand Up @@ -40,6 +40,5 @@ class CrayGNU(CrayPEGCC, CrayMPICH, LibSci):
SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME

def prepare(self, *args, **kwargs):
"""Prepare to use this toolchain; marked as experimental."""
self.log.experimental("Using %s toolchain", self.NAME)
"""Prepare to use this toolchain."""
super(CrayGNU, self).prepare(*args, **kwargs)
3 changes: 1 addition & 2 deletions easybuild/toolchains/crayintel.py
Expand Up @@ -40,6 +40,5 @@ class CrayIntel(CrayPEIntel, CrayMPICH, LibSci):
SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME

def prepare(self, *args, **kwargs):
"""Prepare to use this toolchain; marked as experimental."""
self.log.experimental("Using %s toolchain", self.NAME)
"""Prepare to use this toolchain."""
super(CrayIntel, self).prepare(*args, **kwargs)
2 changes: 1 addition & 1 deletion test/framework/toolchain.py
Expand Up @@ -717,7 +717,7 @@ def test_independence(self):
"""Test independency of toolchain instances."""

# tweaking --optarch is required for Cray toolchains (craypre-<optarch> module must be available)
init_config(args=['--experimental'], build_options={'optarch': 'test'})
init_config(build_options={'optarch': 'test'})

tc_cflags = {
'CrayCCE': "-craype-verbose -O2",
Expand Down

0 comments on commit e6a8f95

Please sign in to comment.