diff options
author | g-mathias <40861554+g-mathias@users.noreply.github.com> | 2021-10-06 19:28:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 10:28:55 -0700 |
commit | 99783530573b8044377572bd5c7754f91610dcac (patch) | |
tree | 37c5b6c18d51d63e40390672972c4845287a7626 /var | |
parent | 319ae9254ea38dc33a8cdbb285aa9dd76a1133da (diff) | |
download | spack-99783530573b8044377572bd5c7754f91610dcac.tar.gz spack-99783530573b8044377572bd5c7754f91610dcac.tar.bz2 spack-99783530573b8044377572bd5c7754f91610dcac.tar.xz spack-99783530573b8044377572bd5c7754f91610dcac.zip |
New package: intel oneapi advisor (#26535)
Co-authored-by: lu64bag3 <gerald.mathias@lrz.de>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/intel-oneapi-advisor/package.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/intel-oneapi-advisor/package.py b/var/spack/repos/builtin/packages/intel-oneapi-advisor/package.py new file mode 100644 index 0000000000..d85c5f3358 --- /dev/null +++ b/var/spack/repos/builtin/packages/intel-oneapi-advisor/package.py @@ -0,0 +1,29 @@ +# Copyright 2013-2021 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) + +import platform + +from spack import * + + +class IntelOneapiAdvisor(IntelOneApiPackage): + """Intel Advisor is a design and analysis tool for achieving + high application performance. This is done through + efficient threading, vectorization, and memory use, and + GPU offload on current and future Intel hardware.""" + + maintainers = ['rscohn2'] + + homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/advisor.html' + + if platform.system() == 'Linux': + version('2021.4.0', + url='https://registrationcenter-download.intel.com/akdlm/irc_nas/18220/l_oneapi_advisor_p_2021.4.0.389_offline.sh', + sha256='dd948f7312629d9975e12a57664f736b8e011de948771b4c05ad444438532be8', + expand=False) + + @property + def component_dir(self): + return 'advisor' |