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>
This commit is contained in:
parent
5d42185698
commit
13d870157f
1 changed files with 42 additions and 0 deletions
|
@ -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"
|
Loading…
Reference in a new issue