
* Initial commit for v2.0 of the CEED software suite.
* Update Nek packages and gslib
* Help spack concretize the hypre version for ceed-2.0.
* Fix nekcem install error
* Add support for gfortran v8 in nek5000 and nekcem.
* Split Nek5000 into Nek5000 and Nektools
* Get Nektools to build fine in Theta
* Fix travis failure: remove unused 'import numbers' from nek5000.
* Check for gfortran if it is wrapped
* Tweak the detection of gfortran in nek5000.
* Fix Nek packages to add -std=legacy when FC=gcc
* spack install ceed~petsc works fine on Theta
* Fix flake8 errors
* Fix more flake8 tests
* Fix an import issue
* Tweak the suite-sparse package to avoid interaction with existing system
installations of suite-sparse.
* petsc: update superlu-dist dependency
* Updates in the packages: occa, libceed, and ceed.
* In the libceed package, explicitly tell nvcc which host compiler to use.
* Fix python formatting.
* Simplify the test for gfortran in nek* packages.
* ceed: 2.0 uses petsc@3.11.0
* hpgmg-0.4; use from ceed@2.0.0
* Update the hypre dependency for ceed 2.0.
* Disable the superlu-dist dependency (through hypre) when using a
+quickbuild of ceed 2.0.
* petsc-3.11.0: add xlf fix
* nekcem: has a build dependency on Python 2.7+
* hpgmg: better setting of compiler options and use python for configure
* libceed: use v0.4 tag
* libceed: fix 0.4 release oops (pkgconfig version)
* Add a patch for magma-2.5.0 that brings it up the current 'master'.
* In the mfem package, install the examples, miniapps, and data under
$prefix/share/mfem.
* In the magma package, apply a patch to v2.5.0 that disables
magma_sparse - for testing purposes.
* In the magma package, link the 'magma' library with the
'nvToolsExt' library.
* In the magma package, update the 'magma-2.5.0.patch' with the latest
commits from the magma source repository. Also, remove the library
'nvToolsExt' from the 'magma-2.5.0-cmake.patch' - now it is not
needed.
* In the magma package, disable OpenMP when using v2.5.0 with the
IBM XL compiler.
Please enter the commit message for your changes. Lines starting
* In the mfem package, add version for the 'laghos-v2.0' tag; also,
prefix the versions `laghos-v*` with their respective development
version numbers -- this way they are properly ordered within spack
relative to the official numbered versions.
* petsc: add version 3.11.1 (#11179)
(cherry picked from commit 1eab6e3c86
)
* ceed-2.0: use petsc-3.11.1
* this-is-so-dumb.f -> empty.f
178 lines
7.2 KiB
Python
178 lines
7.2 KiB
Python
# Copyright 2013-2019 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 *
|
|
|
|
import numbers
|
|
import os
|
|
|
|
|
|
def is_integral(x):
|
|
"""Any integer value"""
|
|
try:
|
|
return isinstance(int(x), numbers.Integral) and \
|
|
not isinstance(x, bool) and int(x) > 0
|
|
except ValueError:
|
|
return False
|
|
|
|
|
|
class Nektools(Package):
|
|
"""Tools reuqired by Nek5000"""
|
|
|
|
homepage = "https://nek5000.mcs.anl.gov/"
|
|
url = "https://github.com/Nek5000/Nek5000/releases/download/v17.0/Nek5000-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', '6a13bfad2ce023897010dd88f54a0a87')
|
|
|
|
# Variant for MAXNEL, we need to read this from user
|
|
variant(
|
|
'MAXNEL',
|
|
default=150000,
|
|
description='Maximum number of elements for Nek5000 tools.',
|
|
values=is_integral
|
|
)
|
|
|
|
# Variants for Nek tools
|
|
variant('genbox', default=True, description='Build genbox tool.')
|
|
variant('n2to3', default=True, description='Build n2to3 tool.')
|
|
variant('postnek', default=True, description='Build postnek tool.')
|
|
variant('reatore2', default=True, description='Build reatore2 tool.')
|
|
variant('genmap', default=True, description='Build genmap tool.')
|
|
variant('nekmerge', default=True, description='Build nekmerge tool.')
|
|
variant('prenek', default=True, description='Build prenek tool.')
|
|
|
|
depends_on('libx11', when="+prenek")
|
|
depends_on('libx11', when="+postnek")
|
|
# libxt is needed for X11/Intrinsic.h but not for linking
|
|
depends_on('libxt', when="+prenek")
|
|
depends_on('xproto', when="+prenek")
|
|
depends_on('libxt', when="+postnek")
|
|
depends_on('visit', when="+visit")
|
|
|
|
@run_before('install')
|
|
def fortran_check(self):
|
|
if not self.compiler.f77:
|
|
msg = 'Cannot build Nek5000 without a Fortran 77 compiler.'
|
|
raise RuntimeError(msg)
|
|
|
|
def install(self, spec, prefix):
|
|
tools_dir = 'tools'
|
|
bin_dir = 'bin'
|
|
|
|
fc = env['FC']
|
|
cc = env['CC']
|
|
|
|
fflags = spec.compiler_flags['fflags']
|
|
cflags = spec.compiler_flags['cflags']
|
|
if ('+prenek' in spec) or ('+postnek' in spec):
|
|
libx11_h = find_headers('Xlib', spec['libx11'].prefix.include,
|
|
recursive=True)
|
|
if not libx11_h:
|
|
raise RuntimeError('Xlib.h not found in %s' %
|
|
spec['libx11'].prefix.include)
|
|
cflags += ['-I%s' % os.path.dirname(libx11_h.directories[0])]
|
|
|
|
xproto_h = find_headers('X', spec['xproto'].prefix.include,
|
|
recursive=True)
|
|
if not xproto_h:
|
|
raise RuntimeError('X.h not found in %s' %
|
|
spec['xproto'].prefix.include)
|
|
cflags += ['-I%s' % os.path.dirname(xproto_h.directories[0])]
|
|
|
|
libxt_h = find_headers('Intrinsic', spec['libxt'].prefix.include,
|
|
recursive=True)
|
|
if not libxt_h:
|
|
raise RuntimeError('X11/Intrinsic.h not found in %s' %
|
|
spec['libxt'].prefix.include)
|
|
cflags += ['-I%s' % os.path.dirname(libxt_h.directories[0])]
|
|
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)
|
|
|
|
# Build the tools, maketools copy them to Nek5000/bin by default.
|
|
# We will then install Nek5000/bin under prefix after that.
|
|
with working_dir(tools_dir):
|
|
# Update the maketools script to use correct compilers
|
|
filter_file(r'^#FC\s*=.*', 'FC="{0}"'.format(fc), 'maketools')
|
|
filter_file(r'^#CC\s*=.*', 'CC="{0}"'.format(cc), 'maketools')
|
|
if fflags:
|
|
filter_file(r'^#FFLAGS=.*', 'FFLAGS="{0}"'.format(fflags),
|
|
'maketools')
|
|
if cflags:
|
|
filter_file(r'^#CFLAGS=.*', 'CFLAGS="{0}"'.format(cflags),
|
|
'maketools')
|
|
|
|
if self.compiler.name in ['xl', 'xl_r']:
|
|
# Patch 'maketools' to use '-qextname' when checking for
|
|
# underscore becasue 'xl'/'xl_r' use this option to enable the
|
|
# addition of the underscore.
|
|
filter_file(r'^\$FC -c ', '$FC -qextname -c ', 'maketools')
|
|
|
|
libx11_lib = find_libraries('libX11', spec['libx11'].prefix.lib,
|
|
shared=True, recursive=True)
|
|
if not libx11_lib:
|
|
libx11_lib = \
|
|
find_libraries('libX11', spec['libx11'].prefix.lib64,
|
|
shared=True, recursive=True)
|
|
if not libx11_lib:
|
|
raise RuntimeError('libX11 not found in %s/{lib,lib64}' %
|
|
spec['libx11'].prefix)
|
|
# There is no other way to set the X11 library path except brute
|
|
# force:
|
|
filter_file(r'-L\$\(X\)', libx11_lib.search_flags,
|
|
join_path('prenek', 'makefile'))
|
|
filter_file(r'-L\$\(X\)', libx11_lib.search_flags,
|
|
join_path('postnek', 'makefile'))
|
|
|
|
if self.compiler.name in ['xl', 'xl_r']:
|
|
# Use '-qextname' when compiling mxm.f
|
|
filter_file(r'\$\(OLAGS\)', '-qextname $(OLAGS)',
|
|
join_path('postnek', 'makefile'))
|
|
# Define 'rename_' function that calls 'rename'
|
|
with open(join_path('postnek', 'xdriver.c'), 'a') as xdriver:
|
|
xdriver.write('\nvoid rename_(char *from, char *to)\n{\n'
|
|
' rename(from, to);\n}\n')
|
|
|
|
maxnel = self.spec.variants['MAXNEL'].value
|
|
filter_file(r'^#MAXNEL\s*=.*', 'MAXNEL=' + maxnel, 'maketools')
|
|
|
|
maketools = Executable('./maketools')
|
|
|
|
# Build the tools
|
|
if '+genbox' in spec:
|
|
maketools('genbox')
|
|
if '+n2to3' in spec:
|
|
maketools('n2to3')
|
|
if '+postnek' in spec:
|
|
maketools('postnek')
|
|
if '+reatore2' in spec:
|
|
maketools('reatore2')
|
|
if '+genmap' in spec:
|
|
maketools('genmap')
|
|
if '+nekmerge' in spec:
|
|
maketools('nekmerge')
|
|
if '+prenek' in spec:
|
|
maketools('prenek')
|
|
|
|
# Install Nek5000/bin in prefix/bin
|
|
install_tree(bin_dir, prefix.bin)
|