8000 Update Arm Compute Library (ACL) to v25.02 (#147454) · pytorch/pytorch@5a3a50c · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5a3a50c

Browse files
fadara01pytorchmergebot
authored andcommitted
Update Arm Compute Library (ACL) to v25.02 (#147454)
Among many things, this version of ACL fixes the redundant declaration warning that we're blocked on in (#145942, #146620, #147337) and introduces better scheduling heuristics for GEMMs Fixes #ISSUE_NUMBER Pull Request resolved: #147454 Approved by: https://github.com/malfet
1 parent 9fee408 commit 5a3a50c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.ci/aarch64_linux/aarch64_wheel_ci_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def build_ArmComputeLibrary() -> None:
3939
"clone",
4040
"https://github.com/ARM-software/ComputeLibrary.git",
4141
"-b",
42-
"v24.09",
42+
"v25.02",
4343
"--depth",
4444
"1",
4545
"--shallow-submodules",

.ci/aarch64_linux/build_aarch64_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def build_ArmComputeLibrary(host: RemoteHost, git_clone_flags: str = "") -> None
329329
]
330330
)
331331
host.run_cmd(
332-
f"git clone https://github.com/ARM-software/ComputeLibrary.git -b v24.09 {git_clone_flags}"
332+
f"git clone https://github.com/ARM-software/ComputeLibrary.git -b v25.02 {git_clone_flags}"
333333
)
334334

335335
host.run_cmd(f"cd ComputeLibrary && scons Werror=1 -j8 {acl_build_flags}")

.ci/docker/common/install_acl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set -euo pipefail
22

3-
readonly version=v24.04
3+
readonly version=v25.02
44
readonly src_host=https://github.com/ARM-software
55
readonly src_repo=ComputeLibrary
66

0 commit comments

Comments
 (0)
2A49
0