
* 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
122 lines
4.5 KiB
Python
122 lines
4.5 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 os
|
|
import json
|
|
|
|
|
|
class Nekcem(Package):
|
|
"""Spectral-element solver for Maxwell's equations, drift-diffusion
|
|
equations, and more."""
|
|
|
|
# Links to homepage and git
|
|
homepage = "https://nekcem.mcs.anl.gov"
|
|
git = "https://github.com/NekCEM/NekCEM.git"
|
|
|
|
# Variants
|
|
variant('mpi', default=True, description='Build with MPI')
|
|
|
|
# We only have a development version
|
|
version('develop')
|
|
version('0b8bedd', commit='0b8beddfdcca646bfcc866dfda1c5f893338399b')
|
|
version('7332619', commit='7332619b73d03868a256614b61794dce2d95b360')
|
|
|
|
# dependencies
|
|
depends_on('mpi', when='+mpi')
|
|
depends_on('blas')
|
|
depends_on('lapack')
|
|
depends_on('python@2.7:', type='build')
|
|
|
|
@run_before('install')
|
|
def fortran_check(self):
|
|
if not self.compiler.fc:
|
|
msg = 'NekCEM can not be built without a Fortran compiler.'
|
|
raise RuntimeError(msg)
|
|
|
|
@run_after('install')
|
|
def test_install(self):
|
|
nekcem_test = join_path(self.prefix.bin, 'NekCEM', 'tests', '2dboxpec')
|
|
with working_dir(nekcem_test):
|
|
makenek = Executable(join_path(self.prefix.bin, 'makenek'))
|
|
makenek(os.path.basename(nekcem_test))
|
|
if not os.path.isfile('nekcem'):
|
|
msg = 'Cannot build example: %s' % nekcem_test
|
|
raise RuntimeError(msg)
|
|
|
|
def install(self, spec, prefix):
|
|
bin_dir = 'bin'
|
|
nek = 'nek'
|
|
configurenek = 'configurenek'
|
|
makenek = 'makenek'
|
|
|
|
fc = self.compiler.f77
|
|
cc = self.compiler.cc
|
|
|
|
fflags = spec.compiler_flags['fflags']
|
|
cflags = spec.compiler_flags['cflags']
|
|
ldflags = spec.compiler_flags['ldflags']
|
|
|
|
if '+mpi' in spec:
|
|
fc = spec['mpi'].mpif77
|
|
cc = spec['mpi'].mpicc
|
|
|
|
with working_dir(bin_dir):
|
|
fflags = ['-O3'] + fflags
|
|
cflags = ['-O3'] + cflags
|
|
fflags += ['-I.']
|
|
cflags += ['-I.', '-DGLOBAL_LONG_LONG']
|
|
|
|
if self.compiler.name == 'gcc' or self.compiler.name == 'clang':
|
|
# assuming 'clang' uses 'gfortran'
|
|
fflags += ['-fdefault-real-8', '-fdefault-double-8']
|
|
cflags += ['-DUNDERSCORE']
|
|
elif self.compiler.name == 'intel':
|
|
fflags += ['-r8']
|
|
cflags += ['-DUNDERSCORE']
|
|
elif self.compiler.name == 'xl' or self.compiler.name == 'xl_r':
|
|
fflags += ['-qrealsize=8']
|
|
cflags += ['-DPREFIX=jl_', '-DIBM']
|
|
elif self.compiler.name == 'pgi':
|
|
fflags += ['-r8']
|
|
cflags += ['-DUNDERSCORE']
|
|
|
|
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']
|
|
|
|
if '+mpi' in spec:
|
|
fflags += ['-DMPI', '-DMPIIO']
|
|
cflags += ['-DMPI', '-DMPIIO']
|
|
blas_lapack = spec['lapack'].libs + spec['blas'].libs
|
|
pthread_lib = find_system_libraries('libpthread')
|
|
ldflags += (blas_lapack + pthread_lib).ld_flags.split()
|
|
all_arch = {
|
|
'spack-arch': {
|
|
'FC': fc, 'FFLAGS': fflags,
|
|
'CC': cc, 'CFLAGS': cflags,
|
|
'LD': fc, 'LDFLAGS': ldflags
|
|
}
|
|
}
|
|
os.rename('arch.json', 'arch.json.orig')
|
|
with open('arch.json', 'w') as file:
|
|
file.write(json.dumps(all_arch))
|
|
filter_file(r'^ARCH=.*$', 'ARCH=spack-arch', 'makenek')
|
|
filter_file(r'^NEK=.*', 'NEK="%s"' % prefix.bin.NekCEM,
|
|
'makenek')
|
|
|
|
# Install NekCEM in prefix/bin
|
|
install_tree('../NekCEM', prefix.bin.NekCEM)
|
|
# Create symlinks to makenek, nek and configurenek scripts
|
|
with working_dir(prefix.bin):
|
|
os.symlink(os.path.join('NekCEM', bin_dir, makenek), makenek)
|
|
os.symlink(
|
|
os.path.join('NekCEM', bin_dir, configurenek), configurenek)
|
|
os.symlink(os.path.join('NekCEM', bin_dir, nek), nek)
|