Skip to content

Commit

Permalink
Merge pull request #4571 from TopRichard/gmpflf-mod
Browse files Browse the repository at this point in the history
fix definition of gmpflf toolchain
  • Loading branch information
boegel authored Jul 4, 2024
2 parents faadf81 + d096605 commit 02bd1c8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions easybuild/toolchains/gmpflf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,12 @@
"""
from easybuild.toolchains.gmpich import Gmpich
from easybuild.toolchains.gfbf import Gfbf
from easybuild.toolchains.golf import Golf
from easybuild.toolchains.fft.fftw import Fftw
from easybuild.toolchains.linalg.flexiblas import FlexiBLAS
from easybuild.toolchains.linalg.openblas import OpenBLAS
from easybuild.toolchains.linalg.scalapack import ScaLAPACK


class Gmpflf(Gmpich, OpenBLAS, FlexiBLAS, ScaLAPACK, Fftw):
"""Compiler toolchain with GCC, MPICH, OpenBLAS, ScaLAPACK and FFTW."""
class Gmpflf(Gmpich, FlexiBLAS, ScaLAPACK, Fftw):
"""Compiler toolchain with GCC, MPICH, FlexiBLAS, ScaLAPACK and FFTW."""
NAME = 'gmpflf'
SUBTOOLCHAIN = [Gmpich.NAME, Golf.NAME, Gfbf.NAME]
SUBTOOLCHAIN = [Gmpich.NAME, Gfbf.NAME]

0 comments on commit 02bd1c8

Please sign in to comment.