-
Notifications
You must be signed in to change notification settings - Fork 785
{math}[GCCcore/13.2.0] ArmComputeLibrary v23.08 #21309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ocaisa
merged 4 commits into
easybuilders:develop
from
migueldiascosta:20240904163603_new_pr_ArmComputeLibrary2308
Apr 8, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fa4a4b5
adding easyconfigs: ArmComputeLibrary-23.08-GCCcore-13.2.0.eb
migueldiascosta 6090f8b
update buildopts
migueldiascosta 3f7917b
Merge branch 'develop' of https://github.com/easybuilders/easybuild-e…
migueldiascosta ce6d03f
fix shared library extension
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/a/ArmComputeLibrary/ArmComputeLibrary-23.08-GCCcore-13.2.0.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| easyblock = 'SCons' | ||
|
|
||
| name = 'ArmComputeLibrary' | ||
| version = '23.08' | ||
|
|
||
| homepage = 'https://github.com/ARM-software/ComputeLibrary' | ||
| description = """The Arm Compute Library is a collection of low-level machine learning functions optimized for | ||
| Arm® Cortex®-A, Arm® Neoverse® and Arm® Mali™ GPUs architectures.""" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
|
||
| source_urls = ['https://github.com/ARM-software/ComputeLibrary/archive/refs/tags/'] | ||
| sources = ['v%(version)s.tar.gz'] | ||
| checksums = ['62f514a555409d4401e5250b290cdf8cf1676e4eb775e5bd61ea6a740a8ce24f'] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.40'), | ||
| ('SCons', '4.6.0'), | ||
| ] | ||
|
|
||
| prefix_arg = 'install_dir=' | ||
|
|
||
| buildopts = "os=linux arch=armv8a build=native multi_isa=1 " | ||
| buildopts += "Werror=0 debug=0 neon=1 opencl=0 embed_kernels=0 " | ||
| buildopts += "fixed_format_kernels=1 openmp=1 cppthreads=0 " | ||
|
|
||
| skipsteps = ['install'] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/graph_alexnet', 'bin/neon_gemm_qasymm8', f'lib/libarm_compute.{SHLIB_EXT}'], | ||
| 'dirs': ['include/arm_compute'], | ||
| } | ||
|
|
||
| sanity_check_commands = ['graph_alexnet', 'neon_gemm_qasymm8'] | ||
|
|
||
| modextravars = {'ACL_ROOT_DIR': '%(installdir)s'} | ||
|
|
||
| moduleclass = 'math' | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from https://github.com/pytorch/pytorch/blob/main/.ci/docker/common/install_acl.sh#L13-L16
in particular,
arch=armv8a multi_isa=1should be more generic without loosing functionality/performance:https://github.com/ARM-software/ComputeLibrary/blob/de7288cb71e6b9190f52e50a44ed68c309e4a041/docs/user_guide/library.dox#L567-L578
benchmarks on a64fx compared to
arch=armv8.2-a-svedidn't show any difference