summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/caliper/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/caliper/package.py')
-rw-r--r--var/spack/repos/builtin/packages/caliper/package.py70
1 files changed, 38 insertions, 32 deletions
diff --git a/var/spack/repos/builtin/packages/caliper/package.py b/var/spack/repos/builtin/packages/caliper/package.py
index e3fff54e6f..5896cfb420 100644
--- a/var/spack/repos/builtin/packages/caliper/package.py
+++ b/var/spack/repos/builtin/packages/caliper/package.py
@@ -1,27 +1,8 @@
-##############################################################################
-# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
-# Produced at the Lawrence Livermore National Laboratory.
+# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
-# This file is part of Spack.
-# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
-# LLNL-CODE-647188
-#
-# For details, see https://github.com/spack/spack
-# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License (as
-# published by the Free Software Foundation) version 2.1, February 1999.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
-# conditions of the GNU Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-##############################################################################
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
from spack import *
import sys
@@ -36,13 +17,18 @@ class Caliper(CMakePackage):
"""
homepage = "https://github.com/LLNL/Caliper"
- url = ""
+ git = "https://github.com/LLNL/Caliper.git"
+
+ version('master')
+ version('1.7.0', tag='v1.7.0')
+ # version 1.6.0 is broken b/c it downloads the wrong gotcha version
+ version('1.6.0', tag='v1.6.0')
- version('master', git='https://github.com/LLNL/Caliper.git')
+ is_linux = sys.platform.startswith('linux')
- variant('mpi', default=True,
+ variant('mpi', default=True,
description='Enable MPI wrappers')
- variant('dyninst', default=False,
+ variant('dyninst', default=False,
description='Enable symbol translation support with dyninst')
# libunwind has some issues on Mac
variant('callpath', default=sys.platform != 'darwin',
@@ -50,14 +36,23 @@ class Caliper(CMakePackage):
# pthread_self() signature is incompatible with PAPI_thread_init() on Mac
variant('papi', default=sys.platform != 'darwin',
description='Enable PAPI service')
+ variant('libpfm', default=is_linux,
+ description='Enable libpfm (perf_events) service')
# gotcha doesn't work on Mac
variant('gotcha', default=sys.platform != 'darwin',
description='Enable GOTCHA support')
+ variant('sampler', default=is_linux,
+ description='Enable sampling support on Linux')
+ variant('sosflow', default=False,
+ description='Enable SOSflow support')
+ depends_on('gotcha@1.0:', when='+gotcha')
depends_on('dyninst', when='+dyninst')
depends_on('papi', when='+papi')
+ depends_on('libpfm4', when='+libpfm')
depends_on('mpi', when='+mpi')
- depends_on('libunwind', when='+callpath')
+ depends_on('unwind', when='+callpath')
+ depends_on('sosflow', when='+sosflow')
depends_on('cmake', type='build')
depends_on('python', type='build')
@@ -67,17 +62,28 @@ class Caliper(CMakePackage):
args = [
'-DBUILD_TESTING=Off',
- '-DWITH_DOCS=Off',
- '-DWITH_TEST_APPS=Off',
+ '-DBUILD_DOCS=Off',
'-DWITH_DYNINST=%s' % ('On' if '+dyninst' in spec else 'Off'),
'-DWITH_CALLPATH=%s' % ('On' if '+callpath' in spec else 'Off'),
'-DWITH_GOTCHA=%s' % ('On' if '+gotcha' in spec else 'Off'),
'-DWITH_PAPI=%s' % ('On' if '+papi' in spec else 'Off'),
- '-DWITH_MPI=%s' % ('On' if '+mpi' in spec else 'Off')
+ '-DWITH_LIBPFM=%s' % ('On' if '+libpfm' in spec else 'Off'),
+ '-DWITH_SOSFLOW=%s' % ('On' if '+sosflow' in spec else 'Off'),
+ '-DWITH_SAMPLER=%s' % ('On' if '+sampler' in spec else 'Off'),
+ '-DWITH_MPI=%s' % ('On' if '+mpi' in spec else 'Off'),
+ '-DWITH_MPIT=%s' % ('On' if spec.satisfies('^mpi@3:') else 'Off')
]
+ if '+gotcha' in spec:
+ args.append('-DUSE_EXTERNAL_GOTCHA=True')
if '+papi' in spec:
- args.append('-DPAPI_PREFIX=%s' % spec['papi'].prefix)
+ args.append('-DPAPI_PREFIX=%s' % spec['papi'].prefix)
+ if '+libpfm' in spec:
+ args.append('-DLIBPFM_INSTALL=%s' % spec['libpfm4'].prefix)
+ if '+sosflow' in spec:
+ args.append('-DSOS_PREFIX=%s' % spec['sosflow'].prefix)
+ if '+callpath' in spec:
+ args.append('-DLIBUNWIND_PREFIX=%s' % spec['libunwind'].prefix)
if '+mpi' in spec:
args.append('-DMPI_C_COMPILER=%s' % spec['mpi'].mpicc)