
Added versions 1.0.0-rc1, 0.6.1, 0.6.0, 0.5.1 hwloc dependency was removed after 0.5.1, so the related configure option is not specified after 0.5.1 Require py-matplotlib dependency version 2.2.3 (version was not specified before)
85 lines
4.1 KiB
Python
85 lines
4.1 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 *
|
|
|
|
|
|
class Geopm(AutotoolsPackage):
|
|
"""GEOPM is an extensible power management framework targeting HPC.
|
|
The GEOPM package provides libgeopm, libgeopmpolicy and applications
|
|
geopmctl and geopmpolicy, as well as tools for postprocessing.
|
|
GEOPM is designed to be extended for new control algorithms and new
|
|
hardware power management features via its plugin infrastructure.
|
|
|
|
Note: GEOPM interfaces with hardware using Model Specific Registers (MSRs).
|
|
For propper usage make sure MSRs are made available directly or via the
|
|
msr-safe kernel module by your administrator."""
|
|
|
|
homepage = "https://geopm.github.io"
|
|
url = "https://github.com/geopm/geopm/releases/download/v0.4.0/geopm-0.4.0.tar.gz"
|
|
git = "https://github.com/geopm/geopm.git"
|
|
|
|
# Add additional proper versions and checksums here. "spack checksum geopm"
|
|
version('develop', branch='dev')
|
|
version('master', branch='master')
|
|
version('1.0.0-rc1', sha256='f8a2e5c384a15e9663f409de478b6372cd63e63a28d4701a33ac043fc27905e0',
|
|
url='https://github.com/geopm/geopm/releases/download/v1.0.0-rc1/geopm-1.0.0+rc1.tar.gz')
|
|
version('0.6.1', sha256='0ca42853f90885bf213df190c3462b8675c143cc843aee0d8b8a0e30802b55a9')
|
|
version('0.6.0', sha256='95ccf256c2b7cb35838978152479569d154347c3065af1639ed17be1399182d3')
|
|
version('0.5.1', sha256='db247af55f7000b6e4628af099956349b68a637500b9d4fe8d8fb13687124d53')
|
|
version('0.5.0', '61b454bc74d4606fe84818aef16c1be4')
|
|
version('0.4.0', 'd4cc8fffe521296dab379857d7e2064d')
|
|
version('0.3.0', '568fd37234396fff134f8d57b60f2b83')
|
|
|
|
# Variants reflecting most ./configure --help options
|
|
variant('debug', default=False, description='Enable debug.')
|
|
variant('coverage', default=False, description='Enable test coverage support, enables debug by default.')
|
|
variant('overhead', default=False, description='Enable GEOPM to calculate and display time spent in GEOPM API calls.')
|
|
variant('procfs', default=True, description='Enable procfs (disable for OSes not using procfs).')
|
|
variant('mpi', default=True, description='Enable MPI dependent components.')
|
|
variant('fortran', default=True, description='Build fortran interface.')
|
|
variant('doc', default=True, description='Create man pages with ruby-ronn.')
|
|
variant('openmp', default=True, description='Build with OpenMP.')
|
|
variant('ompt', default=False, description='Use OpenMP Tools Interface.')
|
|
variant('hwloc', default=False, description='Build with hwloc, deprecated and ignored after v0.5.1.')
|
|
variant('gnu-ld', default=False, description='Assume C compiler uses gnu-ld.')
|
|
|
|
# Added dependencies.
|
|
depends_on('m4', type='build')
|
|
depends_on('automake', type='build')
|
|
depends_on('autoconf', type='build')
|
|
depends_on('libtool', type='build')
|
|
depends_on('ruby-ronn', type='build', when='+doc')
|
|
depends_on('doxygen', type='build', when='+doc')
|
|
depends_on('numactl')
|
|
depends_on('mpi', when='+mpi')
|
|
depends_on('hwloc@1.11.9', when='@:0.5.1+hwloc')
|
|
depends_on('json-c')
|
|
depends_on('py-pandas', type='run')
|
|
depends_on('py-numpy', type='run')
|
|
depends_on('py-natsort', type='run')
|
|
depends_on('py-matplotlib@2.2.3', type='run')
|
|
|
|
parallel = False
|
|
|
|
def configure_args(self):
|
|
args = []
|
|
args.extend(self.enable_or_disable('debug'))
|
|
args.extend(self.enable_or_disable('coverage'))
|
|
args.extend(self.enable_or_disable('overhead'))
|
|
args.extend(self.enable_or_disable('procfs'))
|
|
args.extend(self.enable_or_disable('mpi'))
|
|
args.extend(self.enable_or_disable('fortran'))
|
|
args.extend(self.enable_or_disable('doc'))
|
|
args.extend(self.enable_or_disable('openmp'))
|
|
args.extend(self.enable_or_disable('ompt'))
|
|
if self.version <= Version('0.5.1'):
|
|
args.extend(self.with_or_without(
|
|
'hwloc',
|
|
activation_value='prefix'))
|
|
args.extend(self.with_or_without('gnu-ld'))
|
|
|
|
return args
|