Skip to content

Commit

Permalink
Merge pull request #1585 from pforai/cray_no_fftw_in_tc
Browse files Browse the repository at this point in the history
Remove FFTW from the Cray Toolchain Definition
  • Loading branch information
boegel committed Feb 3, 2016
2 parents 6aff22f + f0df01c commit 02f5b01
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 77 deletions.
3 changes: 1 addition & 2 deletions easybuild/toolchains/craycce.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@
@author: Kenneth Hoste (Ghent University)
"""
from easybuild.toolchains.compiler.craype import CrayPECray
from easybuild.toolchains.fft.crayfftw import CrayFFTW
from easybuild.toolchains.linalg.libsci import LibSci
from easybuild.toolchains.mpi.craympich import CrayMPICH
from easybuild.tools.toolchain import DUMMY_TOOLCHAIN_NAME


class CrayCCE(CrayPECray, CrayMPICH, LibSci, CrayFFTW):
class CrayCCE(CrayPECray, CrayMPICH, LibSci):
"""Compiler toolchain for Cray Programming Environment for Cray Compiling Environment (CCE) (PrgEnv-cray)."""
NAME = 'CrayCCE'
SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME
Expand Down
3 changes: 1 addition & 2 deletions easybuild/toolchains/craygnu.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@
@author: Kenneth Hoste (Ghent University)
"""
from easybuild.toolchains.compiler.craype import CrayPEGCC
from easybuild.toolchains.fft.crayfftw import CrayFFTW
from easybuild.toolchains.linalg.libsci import LibSci
from easybuild.toolchains.mpi.craympich import CrayMPICH
from easybuild.tools.toolchain import DUMMY_TOOLCHAIN_NAME


class CrayGNU(CrayPEGCC, CrayMPICH, LibSci, CrayFFTW):
class CrayGNU(CrayPEGCC, CrayMPICH, LibSci):
"""Compiler toolchain for Cray Programming Environment for GCC compilers (PrgEnv-gnu)."""
NAME = 'CrayGNU'
SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME
Expand Down
3 changes: 1 addition & 2 deletions easybuild/toolchains/crayintel.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@
@author: Kenneth Hoste (Ghent University)
"""
from easybuild.toolchains.compiler.craype import CrayPEIntel
from easybuild.toolchains.fft.crayfftw import CrayFFTW
from easybuild.toolchains.linalg.libsci import LibSci
from easybuild.toolchains.mpi.craympich import CrayMPICH
from easybuild.tools.toolchain import DUMMY_TOOLCHAIN_NAME


class CrayIntel(CrayPEIntel, CrayMPICH, LibSci, CrayFFTW):
class CrayIntel(CrayPEIntel, CrayMPICH, LibSci):
"""Compiler toolchain for Cray Programming Environment for Intel compilers (PrgEnv-intel)."""
NAME = 'CrayIntel'
SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME
Expand Down
71 changes: 0 additions & 71 deletions easybuild/toolchains/fft/crayfftw.py

This file was deleted.

0 comments on commit 02f5b01

Please sign in to comment.