Skip to content

Commit

Permalink
Add nvofbf toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
Micket committed Jan 4, 2023
1 parent c6623dc commit 81a17c4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions easybuild/toolchains/nvofbf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
##
# Copyright 2013-2023 Ghent University
#
# This file is part of EasyBuild,
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en),
# with support of Ghent University (http://ugent.be/hpc),
# the Flemish Supercomputer Centre (VSC) (https://www.vscentrum.be),
# Flemish Research Foundation (FWO) (http://www.fwo.be/en)
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en).
#
# https://github.com/easybuilders/easybuild
#
# EasyBuild is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation v2.
#
# EasyBuild is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with EasyBuild. If not, see <http://www.gnu.org/licenses/>.
##
"""
EasyBuild support for nvofbf compiler toolchain (NVHPC + OpenMPI + FlexiBLAS + ScaLAPACK + FFTW).
:author: Mikael Öhman <micketeer@gmail.com> (Chalmers University of Technology)
"""

from easybuild.toolchains.nvompi import Nvompi
from easybuild.toolchains.fft.fftw import Fftw
from easybuild.toolchains.linalg.flexiblas import FlexiBLAS
from easybuild.toolchains.linalg.scalapack import ScaLAPACK


class Nvofbf(Nvompi, FlexiBLAS, ScaLAPACK, Fftw):
"""Compiler toolchain with NVHPC, OpenMPI, FlexiBLAS, ScaLAPACK and FFTW."""
NAME = 'nvofbf'
SUBTOOLCHAIN = Nvompi.NAME

0 comments on commit 81a17c4

Please sign in to comment.