summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/intel-oneapi-vtune/package.py
diff options
context:
space:
mode:
authorVasily Danilin <vasily.danilin@intel.com>2021-08-09 16:04:06 +0300
committerGitHub <noreply@github.com>2021-08-09 15:04:06 +0200
commitce199e1c67c74e6ea94183ba57e22e039d42810b (patch)
tree55ac9fcf47f91c6fcda7fdd65d782f00fb0fd6fb /var/spack/repos/builtin/packages/intel-oneapi-vtune/package.py
parenta3f76740e7e4fac0bde7245502df8c5b77177f51 (diff)
downloadspack-ce199e1c67c74e6ea94183ba57e22e039d42810b.tar.gz
spack-ce199e1c67c74e6ea94183ba57e22e039d42810b.tar.bz2
spack-ce199e1c67c74e6ea94183ba57e22e039d42810b.tar.xz
spack-ce199e1c67c74e6ea94183ba57e22e039d42810b.zip
intel-oneapi-vtune: new package + remove danvev from maintainers (#25311)
Diffstat (limited to 'var/spack/repos/builtin/packages/intel-oneapi-vtune/package.py')
-rw-r--r--var/spack/repos/builtin/packages/intel-oneapi-vtune/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/intel-oneapi-vtune/package.py b/var/spack/repos/builtin/packages/intel-oneapi-vtune/package.py
new file mode 100644
index 0000000000..cf6ba649df
--- /dev/null
+++ b/var/spack/repos/builtin/packages/intel-oneapi-vtune/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 IntelOneapiVtune(IntelOneApiPackage):
+ """Intel oneAPI VTune Profiler.
+ Installed in Perf driverless mode, detailed here: https://software.intel.com/content/www/us/en/develop/documentation/vtune-cookbook/top/configuration-recipes/profiling-hardware-without-sampling-drivers.html
+ Users can manually install drivers, please read the instructions here: https://software.intel.com/content/www/us/en/develop/documentation/vtune-help/top/set-up-analysis-target/linux-targets/building-and-installing-the-sampling-drivers-for-linux-targets.html
+ """
+
+ maintainers = ['rscohn2']
+
+ homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/vtune-profiler.html'
+
+ if platform.system() == 'Linux':
+ version('2021.6.0',
+ url='https://registrationcenter-download.intel.com/akdlm/irc_nas/18012/l_oneapi_vtune_p_2021.6.0.411_offline.sh',
+ sha256='6b1df7da713337aa665bcc6ff23e4a006695b5bfaf71dffd305cbadca2e5560c',
+ expand=False)
+
+ @property
+ def component_dir(self):
+ return 'vtune'