diff options
author | Mark W. Krentel <krentel@rice.edu> | 2020-08-04 06:39:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 13:39:47 +0200 |
commit | 3a02d1a847e65f329c073be54eab3fc96f273bb9 (patch) | |
tree | dd42bdf3b3f01554007d01987caf2426b8a0efd3 | |
parent | bd0fb35ff0a9c797c7bc103d5d984f4353b6b4b3 (diff) | |
download | spack-3a02d1a847e65f329c073be54eab3fc96f273bb9.tar.gz spack-3a02d1a847e65f329c073be54eab3fc96f273bb9.tar.bz2 spack-3a02d1a847e65f329c073be54eab3fc96f273bb9.tar.xz spack-3a02d1a847e65f329c073be54eab3fc96f273bb9.zip |
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.
-rw-r--r-- | var/spack/repos/builtin/packages/hpctoolkit/package.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/hpctoolkit/package.py b/var/spack/repos/builtin/packages/hpctoolkit/package.py index 8c091a59f7..11d14b1afe 100644 --- a/var/spack/repos/builtin/packages/hpctoolkit/package.py +++ b/var/spack/repos/builtin/packages/hpctoolkit/package.py @@ -20,6 +20,7 @@ class Hpctoolkit(AutotoolsPackage): version('develop', branch='develop') version('master', branch='master') + version('2020.08.03', commit='f5853882147d18bed81127dfeeef2f68b5c58db0') version('2020.07.21', commit='4e56c780cffc53875aca67d6472a2fb3678970eb') version('2020.06.12', commit='ac6ae1156e77d35596fea743ed8ae768f7222f19') version('2020.03.01', commit='94ede4e6fa1e05e6f080be8dc388240ea027f769') @@ -121,11 +122,7 @@ class Hpctoolkit(AutotoolsPackage): ] if '+cuda' in spec: - cupti_path = join_path(spec['cuda'].prefix, 'extras', 'CUPTI') - args.extend([ - '--with-cuda=%s' % spec['cuda'].prefix, - '--with-cupti=%s' % cupti_path, - ]) + args.append('--with-cuda=%s' % spec['cuda'].prefix) if spec.target.family == 'x86_64': args.append('--with-xed=%s' % spec['intel-xed'].prefix) |