2017-05-19 00:24:40 +08:00
|
|
|
##############################################################################
|
2018-03-25 03:13:52 +08:00
|
|
|
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
|
2017-05-19 00:24:40 +08:00
|
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
|
|
#
|
|
|
|
# This file is part of Spack.
|
|
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
|
|
# LLNL-CODE-647188
|
|
|
|
#
|
2017-11-05 08:08:04 +08:00
|
|
|
# For details, see https://github.com/spack/spack
|
2017-06-25 13:22:55 +08:00
|
|
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
2017-05-19 00:24:40 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
|
|
|
#
|
|
|
|
# This program 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 terms and
|
|
|
|
# conditions of the GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
##############################################################################
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RRmpi(RPackage):
|
|
|
|
"""An interface (wrapper) to MPI APIs. It also provides interactive R
|
|
|
|
manager and worker environment."""
|
|
|
|
|
|
|
|
homepage = "http://www.stats.uwo.ca/faculty/yu/Rmpi"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/Rmpi_0.6-6.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/Rmpi"
|
2017-05-19 00:24:40 +08:00
|
|
|
|
2017-10-14 08:35:06 +08:00
|
|
|
version('0.6-6', 'a6fa2ff5e1cd513334b4e9e9e7a2286f')
|
2017-05-19 00:24:40 +08:00
|
|
|
depends_on('mpi')
|
|
|
|
depends_on('r@2.15.1:')
|
|
|
|
|
2017-05-27 05:37:06 +08:00
|
|
|
# The following MPI types are not supported
|
|
|
|
conflicts('^intel-mpi')
|
|
|
|
conflicts('^intel-parallel-studio')
|
|
|
|
conflicts('^mvapich2')
|
|
|
|
conflicts('^spectrum-mpi')
|
|
|
|
|
2017-09-20 03:34:20 +08:00
|
|
|
def configure_args(self):
|
|
|
|
spec = self.spec
|
|
|
|
|
2017-05-27 05:37:06 +08:00
|
|
|
mpi_name = spec['mpi'].name
|
|
|
|
|
|
|
|
# The type of MPI. Supported values are:
|
|
|
|
# OPENMPI, LAM, MPICH, MPICH2, or CRAY
|
|
|
|
if mpi_name == 'openmpi':
|
2018-06-28 01:27:03 +08:00
|
|
|
rmpi_type = 'OPENMPI'
|
2017-05-27 05:37:06 +08:00
|
|
|
elif mpi_name == 'mpich':
|
2018-06-28 01:27:03 +08:00
|
|
|
rmpi_type = 'MPICH2'
|
2017-05-27 05:37:06 +08:00
|
|
|
else:
|
|
|
|
raise InstallError('Unsupported MPI type')
|
2017-05-19 00:24:40 +08:00
|
|
|
|
2017-05-27 05:37:06 +08:00
|
|
|
return [
|
2018-06-28 01:27:03 +08:00
|
|
|
'--with-Rmpi-type={0}'.format(rmpi_type),
|
2017-05-27 05:37:06 +08:00
|
|
|
'--with-mpi={0}'.format(spec['mpi'].prefix),
|
|
|
|
]
|