wi4mpi: add new package (#27530)
This commit is contained in:
parent
5a9bc4bfb2
commit
81bdf1a386
55
var/spack/repos/builtin/packages/wi4mpi/package.py
Normal file
55
var/spack/repos/builtin/packages/wi4mpi/package.py
Normal file
@ -0,0 +1,55 @@
|
||||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Wi4mpi(CMakePackage):
|
||||
"""WI4MPI: Wrapper Interface For MPI performing a light translation between MPI
|
||||
constants and MPI objects from an MPI implementation to another one"""
|
||||
|
||||
homepage = "https://github.com/cea-hpc/wi4mpi"
|
||||
url = "https://github.com/cea-hpc/wi4mpi/archive/v3.4.1.tar.gz"
|
||||
maintainers = ['adrien-cotte', 'marcjoos-cea']
|
||||
|
||||
version('3.4.1', sha256='92bf6738216426069bc07bff19cd7c933e33e397a941ff9f89a639380fab3737')
|
||||
version('3.3.0', sha256='fb7fb3b591144e90b3d688cf844c2246eb185f54e1da6baef857e035ef730d96')
|
||||
version('3.2.2', sha256='23ac69740577d66a68ddd5360670f0a344e3c47a5d146033c63a67e54e56c66f')
|
||||
version('3.2.1', sha256='0d928cb930b6cb1ae648eca241db59812ee0e5c041faf2f57728bbb6ee4e36df')
|
||||
version('3.2.0', sha256='3322f6823dbec1d58a1fcf163b2bcdd7b9cd75dc6c7f78865fc6cb0a91bf6f94')
|
||||
variant('build_type', default='Release',
|
||||
description='The build type to build',
|
||||
values=('Debug', 'Release', 'RelWithDebInfo'))
|
||||
|
||||
depends_on('mpi')
|
||||
|
||||
def cmake_args(self):
|
||||
if '%gcc' in self.spec:
|
||||
compiler = "GNU"
|
||||
elif '%intel' in self.spec:
|
||||
compiler = "INTEL"
|
||||
elif '%clang' in self.spec:
|
||||
compiler = "LLVM"
|
||||
elif '%pgi' in self.spec:
|
||||
compiler = "PGI"
|
||||
else:
|
||||
tty.error("Could not determine compiler used")
|
||||
wi4mpi_build_type = 'RELEASE'
|
||||
if self.spec.variants["build_type"].value == "RelWithDebInfo":
|
||||
wi4mpi_build_type = 'NORMAL'
|
||||
elif self.spec.variants["build_type"].value == "Debug":
|
||||
wi4mpi_build_type = 'DEBUG'
|
||||
args = [
|
||||
self.define('WI4MPI_REALEASE', wi4mpi_build_type),
|
||||
self.define('WI4MPI_COMPILER', compiler)
|
||||
]
|
||||
return args
|
||||
|
||||
def setup_run_environment(self, env):
|
||||
env.set('WI4MPI_ROOT', self.prefix)
|
||||
env.set('WI4MPI_VERSION', self.version)
|
||||
env.set('WI4MPI_CC', self.compiler.cc)
|
||||
env.set('WI4MPI_CXX', self.compiler.cxx)
|
||||
env.set('WI4MPI_FC', self.compiler.fc)
|
Loading…
Reference in New Issue
Block a user