Skip to content
Snippets Groups Projects
Unverified Commit 3a02d1a8 authored by Mark W. Krentel's avatar Mark W. Krentel Committed by GitHub
Browse files

hpctoolkit: add v2020.08.03 (#17860)

Add version 2020.08.03.  Adjust the cuda args.  The --with-cupti arg
was redundant, even for old versions of hpctoolkit.
parent bd0fb35f
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ class Hpctoolkit(AutotoolsPackage): ...@@ -20,6 +20,7 @@ class Hpctoolkit(AutotoolsPackage):
version('develop', branch='develop') version('develop', branch='develop')
version('master', branch='master') version('master', branch='master')
version('2020.08.03', commit='f5853882147d18bed81127dfeeef2f68b5c58db0')
version('2020.07.21', commit='4e56c780cffc53875aca67d6472a2fb3678970eb') version('2020.07.21', commit='4e56c780cffc53875aca67d6472a2fb3678970eb')
version('2020.06.12', commit='ac6ae1156e77d35596fea743ed8ae768f7222f19') version('2020.06.12', commit='ac6ae1156e77d35596fea743ed8ae768f7222f19')
version('2020.03.01', commit='94ede4e6fa1e05e6f080be8dc388240ea027f769') version('2020.03.01', commit='94ede4e6fa1e05e6f080be8dc388240ea027f769')
...@@ -121,11 +122,7 @@ def configure_args(self): ...@@ -121,11 +122,7 @@ def configure_args(self):
] ]
if '+cuda' in spec: if '+cuda' in spec:
cupti_path = join_path(spec['cuda'].prefix, 'extras', 'CUPTI') args.append('--with-cuda=%s' % spec['cuda'].prefix)
args.extend([
'--with-cuda=%s' % spec['cuda'].prefix,
'--with-cupti=%s' % cupti_path,
])
if spec.target.family == 'x86_64': if spec.target.family == 'x86_64':
args.append('--with-xed=%s' % spec['intel-xed'].prefix) args.append('--with-xed=%s' % spec['intel-xed'].prefix)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment