2017-07-15 01:40:18 +08:00
|
|
|
##############################################################################
|
2017-09-07 11:44:16 +08:00
|
|
|
# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
|
2017-07-15 01:40:18 +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-07-15 01:40:18 +08:00
|
|
|
# Please also see the LICENSE file for our notice and the LGPL.
|
|
|
|
#
|
|
|
|
# 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 Nekbone(Package):
|
|
|
|
"""NEK5000 emulation software called NEKbone. Nekbone captures the basic
|
|
|
|
structure and user interface of the extensive Nek5000 software.
|
|
|
|
Nek5000 is a high order, incompressible Navier-Stokes solver based on
|
|
|
|
the spectral element method."""
|
|
|
|
|
2017-11-11 10:59:33 +08:00
|
|
|
homepage = "https://github.com/Nek5000/Nekbone"
|
2017-07-15 01:40:18 +08:00
|
|
|
|
2017-11-01 00:47:24 +08:00
|
|
|
tags = ['proxy-app', 'ecp-proxy-app']
|
2017-07-20 08:03:53 +08:00
|
|
|
|
2017-12-09 01:29:58 +08:00
|
|
|
version('17.0', 'cc339684547614a0725959e41839fec1', git='https://github.com/Nek5000/Nekbone.git')
|
2017-11-01 00:47:24 +08:00
|
|
|
version('develop', git='https://github.com/Nek5000/Nekbone.git')
|
2017-07-15 01:40:18 +08:00
|
|
|
|
2017-12-09 01:29:58 +08:00
|
|
|
# Variants
|
|
|
|
variant('mpi', default=True, description='Build with MPI')
|
2017-07-27 03:27:29 +08:00
|
|
|
|
2017-12-09 01:29:58 +08:00
|
|
|
# dependencies
|
|
|
|
depends_on('mpi', when='+mpi')
|
|
|
|
|
|
|
|
@run_before('install')
|
|
|
|
def fortran_check(self):
|
|
|
|
if not self.compiler.fc:
|
|
|
|
msg = 'Nekbone can not be built without a Fortran compiler.'
|
|
|
|
raise RuntimeError(msg)
|
2017-07-15 01:40:18 +08:00
|
|
|
|
2017-12-09 01:29:58 +08:00
|
|
|
def install(self, spec, prefix):
|
2017-07-15 01:40:18 +08:00
|
|
|
mkdir(prefix.bin)
|
|
|
|
|
2017-12-09 01:29:58 +08:00
|
|
|
FC = self.compiler.fc
|
|
|
|
CC = self.compiler.cc
|
|
|
|
if '+mpi' in spec:
|
|
|
|
FC = spec['mpi'].mpif77
|
|
|
|
CC = spec['mpi'].mpicc
|
|
|
|
|
|
|
|
# Install Nekbone in prefix.bin
|
|
|
|
install_tree("../Nekbone", prefix.bin.Nekbone)
|
|
|
|
|
|
|
|
# Install scripts in prefix.bin
|
|
|
|
nekpmpi = 'test/example1/nekpmpi'
|
|
|
|
makenek = 'test/example1/makenek'
|
|
|
|
|
|
|
|
install(makenek, prefix.bin)
|
|
|
|
install(nekpmpi, prefix.bin)
|
|
|
|
|
|
|
|
with working_dir(prefix.bin):
|
|
|
|
filter_file(r'^SOURCE_ROOT\s*=.*', 'SOURCE_ROOT=\"' +
|
|
|
|
prefix.bin.Nekbone + '/src\"', 'makenek')
|
|
|
|
filter_file(r'^CC\s*=.*', 'CC=\"' + CC + '\"', 'makenek')
|
|
|
|
filter_file(r'^F77\s*=.*', 'F77=\"' + FC + '\"', 'makenek')
|
|
|
|
|
|
|
|
if '+mpi' not in spec:
|
|
|
|
filter_file(r'^#IFMPI=\"false\"', 'IFMPI=\"false\"', 'makenek')
|