
* [mfem] A few updates: add 'strumpack' variant; add 'zlib' variant (same as 'gzstream'); fix optmization flag for v4.0. * [mfem] flake8 fix * [mfem] Add version 4.1 * [mfem] Add/tweak some 'conflicts' directives. * [gslib] Add new release versions + 'develop' version. * [petsc] Restrict hdf5 version to <= 1.10.99 since 1.12.0 fails * [metis] Use the original metis url for v4.0.3. * [conduit] Remove restrictions to the used hdf5 variant to allow building with other packages that use hdf5, e.g. petsc. * [mfem] Few updates: * Replace the 'gzstream' variant with 'zlib' variant. * Do not add system library paths with -L flags. * Allow '+pumi+shared' variant. * Update the 'test_builds.sh' script. * [occa] Add version 1.0.9. * [mfem] Some OCCA and RAJA updates. * [gslib] Fix the build for new versions of the library. * [mfem] Add 'gslib' variant for GSLIB. * [mfem] Add 'cuda' variant. * [mfem] Add 'libceed' variant + a few more tweaks. * [mfem] Add 'umpire' variant. * [ceed] Add a draft for v3.0. Not tested. Just made sure that concretization works for 'ceed' and 'ceed+cuda'. * [nek] Fix Nek5000/NekCEM * [nek] Add Nek5000-v19 & polishing Nek packages * [flake8] Fix flake8 failure * petsc: use of HDF5 does not care about +hl+fortran * [petsc] Temporarily allow any hypre version with petsc@develop. [ceed] Remove the requirement for hypre@develop. * [libceed] Do not explicitly set NVCCFLAGS for v0.5 and later. * [laghos] Add version 3.0, pointing to dev branch for now. Do not set CXX at the make command line. Simplify the dependecy directives a little. [ceed] Use laghos v3.0 for ceed v3.0.0. * [laghos] Keep the injection of CXX in the makefile for laghos versions <= 2.0. * [nekcem] Recovert hash-versions used by older versions of the 'ceed' package. * [occa] Disable hip autodetection because it fails on some machines. * [laghos] Update v3.0 with the actual release source. * [suite-sparse] Explicitly add the c11 flag to CFLAGS. * Update package.py (#15749) * [magma] Add forgotten specification of the 'cuda_arch' variant. * [ceed] Use magma v2.5.3 for ceed v3.0. * libceed-0.6 * mfem: depend on libceed 0.6:, not 0.6.0: * [libceed] Add 'magma' variant -- enable MAGMA backend. * [ceed] In v3.0, use '+magma' variant of libceed when cuda is enabled. * Initial package for Remhos (needs to be updated with actual sha256 * Adding Remhos to CEED-3.0, for now @develop * petsc: add 3.13.0 (using petsc-lite) and 3.12.5 * ceed: update to petsc@3.13.0:3.13.99 * Temporary fix * [nekcem] Add hash-version for ceed v3.0. * [nek5000] Simplify source urls. * [nektools] Use the same sources and versions as in nek5000. * [ceed] Update Nek-related package versions. * libceed: add v0.6 portabilty fix * libceed: better v0.6 portabilty fix * Adding Remhos 1.0 release in CEED-3.0 * Updating hash for Remhos-1.0 * [petsc] Add cuda variant. * [libceed] Flake8 fix. * [petsc] Add cuda variant. * [ceed] Fix the OCCA version to 1.0.9. Enable petsc+cuda when compiling ceed@3.0.0+cuda. * nek5000: fix python 2.7+ syntax * [laghos] Fix testing. * [remhos] Fix testing. * [remhos] For testing use the 'tests' target instead of 'test'. * Add/update the maintainers for ceed, libceed, mfem, laghos, and remhos. * [ceed] Remove unnecessary dependencies. * libceed: activate AVX when supported Co-authored-by: Thilina Rathnayake <thilinarmtb@gmail.com> Co-authored-by: Jed Brown <jed@jedbrown.org> Co-authored-by: Stan Tomov <tomov@eecs.utk.edu> Co-authored-by: Tzanio <tzanio@llnl.gov>
137 lines
5.4 KiB
Python
137 lines
5.4 KiB
Python
# Copyright 2013-2020 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 *
|
|
from shutil import copyfile
|
|
import os
|
|
|
|
|
|
class Nek5000(Package):
|
|
"""A fast and scalable high-order solver for computational fluid
|
|
dynamics"""
|
|
|
|
homepage = "https://nek5000.mcs.anl.gov/"
|
|
url = 'https://github.com/Nek5000/Nek5000/archive/v17.0.tar.gz'
|
|
git = "https://github.com/Nek5000/Nek5000.git"
|
|
|
|
tags = ['cfd', 'flow', 'hpc', 'solver', 'navier-stokes',
|
|
'spectral-elements', 'fluid', 'ecp', 'ecp-apps']
|
|
|
|
version('develop', branch='master')
|
|
version('17.0',
|
|
'4d8d4793ce3c926c54e09a5a5968fa959fe0ba46bd2e6b8043e099528ee35a60')
|
|
version('19.0',
|
|
'db129877a10ff568d49edc77cf65f9e732eecb1fce10edbd91ffc5ac10c41ad6')
|
|
|
|
# MPI, Profiling and Visit variants
|
|
variant('mpi', default=True, description='Build with MPI.')
|
|
variant('profiling', default=True, description='Build with profiling data.')
|
|
variant('visit', default=False, description='Build with Visit.')
|
|
|
|
# TODO: add a variant 'blas' or 'external-blas' to enable the usage of
|
|
# Spack installed/configured blas.
|
|
|
|
# Dependencies
|
|
depends_on('mpi', when="+mpi")
|
|
|
|
@run_before('install')
|
|
def fortran_check(self):
|
|
if not self.compiler.f77:
|
|
msg = 'Cannot build Nek5000 without a Fortran 77 compiler.'
|
|
raise RuntimeError(msg)
|
|
|
|
@run_after('install')
|
|
def test_install(self):
|
|
with working_dir('short_tests/eddy'):
|
|
f_size = join_path(os.getcwd(), 'SIZE')
|
|
f_size_legacy = join_path(os.getcwd(), 'SIZE.legacy')
|
|
if not os.access(f_size, os.F_OK):
|
|
if os.access(f_size_legacy, os.F_OK):
|
|
copyfile(f_size_legacy, f_size)
|
|
else:
|
|
raise RuntimeError('Can not find {0}'.format(f_size))
|
|
|
|
os.system(join_path(self.prefix.bin, 'makenek') + ' eddy_uv')
|
|
if not os.path.isfile(join_path(os.getcwd(), 'nek5000')):
|
|
msg = 'Cannot build example: short_tests/eddy.'
|
|
raise RuntimeError(msg)
|
|
|
|
def install(self, spec, prefix):
|
|
bin_dir = 'bin'
|
|
|
|
# Do not use the Spack compiler wrappers.
|
|
# Use directly the compilers:
|
|
fc = self.compiler.f77
|
|
cc = self.compiler.cc
|
|
|
|
fflags = spec.compiler_flags['fflags']
|
|
cflags = spec.compiler_flags['cflags']
|
|
|
|
if self.compiler.name in ['xl', 'xl_r']:
|
|
# Use '-qextname' to add underscores.
|
|
# Use '-WF,-qnotrigraph' to fix an error about a string: '... ??'
|
|
fflags += ['-qextname', '-WF,-qnotrigraph']
|
|
|
|
error = Executable(fc)('empty.f', output=str, error=str,
|
|
fail_on_error=False)
|
|
|
|
if 'gfortran' in error or 'GNU' in error or 'gfortran' in fc:
|
|
# Use '-std=legacy' to suppress an error that used to be a
|
|
# warning in previous versions of gfortran.
|
|
fflags += ['-std=legacy']
|
|
|
|
fflags = ' '.join(fflags)
|
|
cflags = ' '.join(cflags)
|
|
|
|
with working_dir(bin_dir):
|
|
if '+mpi' in spec:
|
|
fc = spec['mpi'].mpif77
|
|
cc = spec['mpi'].mpicc
|
|
else:
|
|
filter_file(r'^#MPI=0', 'MPI=0', 'makenek')
|
|
|
|
if '+profiling' not in spec:
|
|
filter_file(r'^#PROFILING=0', 'PROFILING=0', 'makenek')
|
|
|
|
if '+visit' in spec:
|
|
filter_file(r'^#VISIT=1', 'VISIT=1', 'makenek')
|
|
filter_file(r'^#VISIT_INSTALL=.*', 'VISIT_INSTALL=\"' +
|
|
spec['visit'].prefix.bin + '\"', 'makenek')
|
|
|
|
# Update the makenek to use correct compilers and
|
|
# Nek5000 source.
|
|
filter_file(r'^#FC\s*=.*', 'FC="{0}"'.format(fc), 'makenek')
|
|
filter_file(r'^#CC\s*=.*', 'CC="{0}"'.format(cc), 'makenek')
|
|
if self.spec.version == Version('17.0'):
|
|
filter_file(r'^#SOURCE_ROOT\s*=\"\$H.*', 'SOURCE_ROOT=\"' +
|
|
prefix.bin.Nek5000 + '\"', 'makenek')
|
|
else:
|
|
filter_file(r'^#NEK_SOURCE_ROOT\s*=\"\$H.*',
|
|
'NEK_SOURCE_ROOT=\"' + prefix.bin.Nek5000 + '\"',
|
|
'makenek')
|
|
|
|
if fflags:
|
|
filter_file(r'^#FFLAGS=.*', 'FFLAGS+=" {0}"'.format(fflags),
|
|
'makenek')
|
|
if cflags:
|
|
filter_file(r'^#CFLAGS=.*', 'CFLAGS+=" {0}"'.format(cflags),
|
|
'makenek')
|
|
|
|
with working_dir('core'):
|
|
if self.compiler.name in ['xl', 'xl_r']:
|
|
# Patch 'core/makenek.inc' and 'makefile.template' to use
|
|
# '-qextname' when checking for underscore becasue 'xl'/'xl_r'
|
|
# use this option to enable the addition of the underscore.
|
|
filter_file(r'^\$FCcomp -c ', '$FCcomp -qextname -c ',
|
|
'makenek.inc')
|
|
filter_file(r'\$\(FC\) -c \$\(L0\)',
|
|
'$(FC) -c -qextname $(L0)', 'makefile.template')
|
|
|
|
# Install Nek5000/bin in prefix/bin
|
|
install_tree(bin_dir, prefix.bin)
|
|
|
|
# Copy Nek5000 source to prefix/bin
|
|
install_tree(self.stage.source_path, prefix.bin.Nek5000)
|