2016-05-12 12:22:25 +08:00
|
|
|
##############################################################################
|
2017-09-07 11:44:16 +08:00
|
|
|
# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
|
2016-05-12 12:22:25 +08:00
|
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
|
|
#
|
|
|
|
# This file is part of Spack.
|
|
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
|
|
# LLNL-CODE-647188
|
|
|
|
#
|
2017-11-05 08:08:04 +08:00
|
|
|
# For details, see https://github.com/spack/spack
|
2017-06-25 13:22:55 +08:00
|
|
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
##############################################################################
|
2016-01-29 05:22:56 +08:00
|
|
|
from spack import *
|
|
|
|
|
2017-06-23 21:59:59 +08:00
|
|
|
import sys
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-06-23 21:59:59 +08:00
|
|
|
|
|
|
|
class Caliper(CMakePackage):
|
|
|
|
"""Caliper is a program instrumentation and performance measurement
|
|
|
|
framework. It provides data collection mechanisms and a source-code
|
|
|
|
annotation API for a variety of performance engineering use cases,
|
|
|
|
e.g., performance profiling, tracing, monitoring, and
|
|
|
|
auto-tuning.
|
2016-08-31 05:28:55 +08:00
|
|
|
"""
|
2016-01-29 05:22:56 +08:00
|
|
|
|
|
|
|
homepage = "https://github.com/LLNL/Caliper"
|
|
|
|
url = ""
|
|
|
|
|
2016-06-14 02:47:28 +08:00
|
|
|
version('master', git='https://github.com/LLNL/Caliper.git')
|
2016-01-29 05:22:56 +08:00
|
|
|
|
2017-06-23 21:59:59 +08:00
|
|
|
variant('mpi', default=True,
|
|
|
|
description='Enable MPI wrappers')
|
|
|
|
variant('dyninst', default=False,
|
|
|
|
description='Enable symbol translation support with dyninst')
|
|
|
|
# libunwind has some issues on Mac
|
|
|
|
variant('callpath', default=sys.platform != 'darwin',
|
|
|
|
description='Enable callpath service (requires libunwind)')
|
|
|
|
# pthread_self() signature is incompatible with PAPI_thread_init() on Mac
|
|
|
|
variant('papi', default=sys.platform != 'darwin',
|
|
|
|
description='Enable PAPI service')
|
|
|
|
# gotcha doesn't work on Mac
|
|
|
|
variant('gotcha', default=sys.platform != 'darwin',
|
|
|
|
description='Enable GOTCHA support')
|
2016-01-29 05:22:56 +08:00
|
|
|
|
2017-06-23 21:59:59 +08:00
|
|
|
depends_on('dyninst', when='+dyninst')
|
|
|
|
depends_on('papi', when='+papi')
|
2016-01-29 05:22:56 +08:00
|
|
|
depends_on('mpi', when='+mpi')
|
2017-06-23 21:59:59 +08:00
|
|
|
depends_on('libunwind', when='+callpath')
|
|
|
|
|
2016-03-09 23:46:56 +08:00
|
|
|
depends_on('cmake', type='build')
|
2017-06-23 21:59:59 +08:00
|
|
|
depends_on('python', type='build')
|
|
|
|
|
|
|
|
def cmake_args(self):
|
|
|
|
spec = self.spec
|
|
|
|
|
|
|
|
args = [
|
|
|
|
'-DBUILD_TESTING=Off',
|
|
|
|
'-DWITH_DOCS=Off',
|
|
|
|
'-DWITH_TEST_APPS=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')
|
|
|
|
]
|
|
|
|
|
|
|
|
if '+papi' in spec:
|
|
|
|
args.append('-DPAPI_PREFIX=%s' % spec['papi'].prefix)
|
|
|
|
|
|
|
|
if '+mpi' in spec:
|
|
|
|
args.append('-DMPI_C_COMPILER=%s' % spec['mpi'].mpicc)
|
|
|
|
args.append('-DMPI_CXX_COMPILER=%s' % spec['mpi'].mpicxx)
|
2016-01-29 05:22:56 +08:00
|
|
|
|
2017-06-23 21:59:59 +08:00
|
|
|
return args
|