summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorStephen Sachs <stephenmsachs@gmail.com>2022-09-19 21:44:32 +0200
committerGitHub <noreply@github.com>2022-09-19 12:44:32 -0700
commit13d870157f8719517676cbee356abc66cc41862c (patch)
tree0cc00d4b4a048771f8899fecd22a02eb73d40fe0 /var
parent5d42185698717b66bbcd7036d6168079386eebe0 (diff)
downloadspack-13d870157f8719517676cbee356abc66cc41862c.tar.gz
spack-13d870157f8719517676cbee356abc66cc41862c.tar.bz2
spack-13d870157f8719517676cbee356abc66cc41862c.tar.xz
spack-13d870157f8719517676cbee356abc66cc41862c.zip
Adding intel-oneapi-itac package (#32658)
* Adding intel-oneapi-itac package * Make black happy * add rscohn2 as maintainer * black prefers double quotes Co-authored-by: Stephen Sachs <stesachs@amazon.com> Co-authored-by: Robert Cohn <rscohn2@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/intel-oneapi-itac/package.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/intel-oneapi-itac/package.py b/var/spack/repos/builtin/packages/intel-oneapi-itac/package.py
new file mode 100644
index 0000000000..12b9933c1d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/intel-oneapi-itac/package.py
@@ -0,0 +1,42 @@
+# Copyright 2013-2022 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.package import *
+
+
+@IntelOneApiPackage.update_description
+class IntelOneapiItac(IntelOneApiPackage):
+ """The IntelĀ® Trace Analyzer and Collector profiles and analyzes MPI applications to help
+ focus your optimization efforts.
+
+ Find temporal dependencies and bottlenecks in your code.
+ Check the correctness of your application.
+ Locate potential programming errors, buffer overlaps, and deadlocks.
+ Visualize and understand parallel application behavior.
+ Evaluate profiling statistics and load balancing.
+ Analyze performance of subroutines or code blocks.
+ Learn about communication patterns, parameters, and performance data.
+ Identify communication hot spots.
+ Decrease time to solution and increase application efficiency.
+
+ """
+
+ homepage = "https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/trace-analyzer.html"
+
+ maintainers = ["rscohn2"]
+
+ if platform.system() == "Linux":
+ version(
+ "2021.6.0",
+ url="https://registrationcenter-download.intel.com/akdlm/irc_nas/18694/l_itac_oneapi_p_2021.6.0.434_offline.sh",
+ sha256="1ecc2735da960041b051e377cadb9f6ab2f44e8aa44d0f642529a56a3cbba436",
+ expand=False,
+ )
+
+ @property
+ def component_dir(self):
+ return "itac"