summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
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"