53 lines
2.2 KiB
Python
53 lines
2.2 KiB
Python
# Copyright 2013-2018 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 *
|
|
|
|
|
|
class Pumi(CMakePackage):
|
|
"""SCOREC RPI's Parallel Unstructured Mesh Infrastructure (PUMI).
|
|
An efficient distributed mesh data structure and methods to support
|
|
parallel adaptive analysis including general mesh-based operations,
|
|
such as mesh entity creation/deletion, adjacency and geometric
|
|
classification, iterators, arbitrary (field) data attachable to mesh
|
|
entities, efficient communication involving entities duplicated
|
|
across multiple tasks, migration of mesh entities between tasks,
|
|
and dynamic load balancing."""
|
|
|
|
homepage = "https://www.scorec.rpi.edu/pumi"
|
|
git = "https://github.com/SCOREC/core.git"
|
|
|
|
# We will use the scorec/core master branch as the 'nightly' version
|
|
# of pumi in spack. The master branch is more stable than the
|
|
# scorec/core develop branch and we perfer not to expose spack users
|
|
# to the added instability. The spack version string is 'develop' since
|
|
# it compares greater than a numbered version (e.g., 2.1.0). The spack
|
|
# version string 'master' compares less than a numbered version.
|
|
version('develop', branch='master')
|
|
version('2.2.0', commit='8c7e6f13943893b2bc1ece15003e4869a0e9634f') # tag 2.2.0
|
|
version('2.1.0', commit='840fbf6ec49a63aeaa3945f11ddb224f6055ac9f')
|
|
|
|
variant('zoltan', default=False, description='Enable Zoltan Features')
|
|
variant('fortran', default=False, description='Enable FORTRAN interface')
|
|
|
|
depends_on('mpi')
|
|
depends_on('cmake@3:', type='build')
|
|
depends_on('zoltan', when='+zoltan')
|
|
|
|
def cmake_args(self):
|
|
spec = self.spec
|
|
|
|
args = [
|
|
'-DSCOREC_CXX_WARNINGS=OFF',
|
|
'-DENABLE_ZOLTAN=%s' % ('ON' if '+zoltan' in spec else 'OFF'),
|
|
'-DCMAKE_C_COMPILER=%s' % spec['mpi'].mpicc,
|
|
'-DCMAKE_CXX_COMPILER=%s' % spec['mpi'].mpicxx,
|
|
'-DCMAKE_Fortran_COMPILER=%s' % spec['mpi'].mpifc,
|
|
'-DPUMI_FORTRAN_INTERFACE=%s' %
|
|
('ON' if '+fortran' in spec else 'OFF')
|
|
]
|
|
|
|
return args
|