Skip to content

Commit fa421d2

Browse files
Merge pull request #461 from puneetmatharu/bump-sources-for-26.06
Bump sources + update CHANGELOGs for 26.06 release
2 parents a8a3b7c + 1000cfe commit fa421d2

6 files changed

Lines changed: 39 additions & 25 deletions

File tree

ML-Frameworks/pytorch-aarch64/CHANGELOG.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,17 @@ where `YY` is the year, and `MM` the month of the increment.
1414
## [unreleased]
1515

1616
### Added
17-
- TorchAO installation via nightly AArch64 wheel (0.18.0.dev20260505) in Dockerfile
17+
18+
### Changed
19+
20+
### Removed
21+
22+
### Fixed
23+
24+
## [r26.06] 2026-06-19
25+
26+
### Added
27+
- TorchAO installation via nightly AArch64 wheel (0.18.0.dev20260528) in Dockerfile
1828
- Adds a `--source-variant {upstream,pinned,patched}` option to `build.sh` and
1929
`get-source.sh` to select PyTorch's upstream submodule hashes, repo-pinned
2030
component hashes without patches, or the default repo-pinned patched source tree.
@@ -28,12 +38,13 @@ where `YY` is the year, and `MM` the month of the increment.
2838
- Updates `urllib3` from 2.2.3 to 2.6.3.
2939
- Updates the build to use Docker layer caching for PyTorch builder image.
3040
- Updates hashes for:
31-
- `PYTORCH_HASH=004acb4e35805062a643ee1588cdae584b2b2957`, 2.13.0.dev20260504 from viable/strict, May 4th, 2026.
32-
- `IDEEP_HASH=6469a610baaa94ba15de1902fd1afb25316171d2`, from ideep_pytorch, Apr 23rd, 2026.
33-
- `ONEDNN_HASH=8fa20dc93a75c094f618f3f8c206775731d63301`, from main, May 5th, 2026.
34-
- `KLEIDIAI_HASH=7a7da265d21f42053d453ef664814c5b5cad8cd3`, v1.24.0 from main, May 4th, 2026.
41+
- `PYTORCH_HASH=c230e6986c6aaee101e24ca14813c21add0b148f`, 2.13.0.dev20260528 from viable/strict, May 28th, 2026.
42+
- `IDEEP_HASH=e087b6e4b32a7ba684db82231d1558123968ac1d`, from ideep_pytorch, May 11th, 2026.
43+
- `ONEDNN_HASH=3004f0a1d9cf92c06eaaca57840aaa2149ebba85`, from main, May 27th, 2026.
44+
- `KLEIDIAI_HASH=5866364d3bc079d2d6cae5f0acf6d076594bc7a7`, v1.25.0 from main, May 28th, 2026.
45+
- Replaces `ACL_VERSION=v52.8.0` with `ACL_VERSION=v53.1.0`, from main, May 18th.
3546
- Updates `OPENBLAS_VERSION` from `d26960a21ec5da7f77377f28bd6e230060841ae0` to v0.3.33, from main, Apr 23rd.
36-
- Updates `torchvision` from 0.26.0.dev20260329 to 0.27.0.dev20260505.
47+
- Updates `torchvision` from 0.26.0.dev20260329 to 0.28.0.dev20260527.
3748

3849
### Removed
3950
- Removes the `scripts/` directory containing retired helper scripts.

ML-Frameworks/pytorch-aarch64/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ ENV DOCKER_USER=debian
7979

8080
# Runtime OS bits + UI
8181
RUN set -eux && \
82+
apt-get update && \
83+
apt-get install -y --no-install-recommends g++ && \
84+
rm -rf /var/lib/apt/lists/* && \
8285
if ! id "$DOCKER_USER" >/dev/null 2>&1; then useradd --create-home -s /bin/bash "$DOCKER_USER"; fi && \
8386
echo '[ -n "$TERM" -a -r "$HOME/welcome.txt" ] && cat "$HOME/welcome.txt"' >> /etc/bash.bashrc && \
8487
echo 'export PATH="$HOME/.local/bin:$HOME/.venv/bin:$PATH"' >> /etc/bash.bashrc && \

ML-Frameworks/pytorch-aarch64/get-source.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,6 @@ git-shallow-clone https://github.com/pytorch/pytorch.git $PYTORCH_HASH
6666
apply-github-patch pytorch/pytorch 7c053dd1582b778c81101dd452708c4ec6e58233
6767
apply-github-patch pytorch/pytorch b1782bbe0eda5957870e2f6e95b8f167e04843cb
6868
apply-github-patch pytorch/pytorch 337925aed2babb3ef7808f78536bbbc9df346a4f
69-
70-
# https://github.com/pytorch/pytorch/pull/177867 - Add ASIMD_BF16 Vectorized class specialisation
71-
apply-github-patch pytorch/pytorch 6cbed7b8e0d5985569b4cc36931afc717930fe00
72-
apply-github-patch pytorch/pytorch 6e6878ec8869fd8f7d9314571a3e84933f149ef5
73-
apply-github-patch pytorch/pytorch e14a2184c44c96e433f468ba12e104dc6be85886
7469
fi
7570

7671
# Remove deps that we don't need for manylinux AArch64 CPU builds before fetching.
@@ -130,10 +125,4 @@ git-shallow-clone https://github.com/pytorch/pytorch.git $PYTORCH_HASH
130125
git fetch origin $KLEIDIAI_HASH && git clean -f && git checkout -f FETCH_HEAD
131126
)
132127
fi
133-
134-
# rebuild third_party/LICENSES_BUNDLED.txt after modifying PyTorch submodules if we can
135-
# this will also get done in PyTorch build too
136-
if command -v python3 >/dev/null 2>&1; then
137-
python3 third_party/build_bundled.py
138-
fi
139128
)

ML-Frameworks/pytorch-aarch64/versions.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
# For information on how to update the versions below, read the README.md.
1010

1111
# get-source.sh deps
12-
PYTORCH_HASH=004acb4e35805062a643ee1588cdae584b2b2957 # 2.13.0.dev20260504 from viable/strict, May 4th, 2026
13-
IDEEP_HASH=6469a610baaa94ba15de1902fd1afb25316171d2 # From ideep_pytorch, Apr 23rd, 2026
14-
ONEDNN_HASH=8fa20dc93a75c094f618f3f8c206775731d63301 # From main, May 5th, 2026
15-
KLEIDIAI_HASH=7a7da265d21f42053d453ef664814c5b5cad8cd3 # v1.24.0 from main, May 4th, 2026
12+
PYTORCH_HASH=c230e6986c6aaee101e24ca14813c21add0b148f # 2.13.0.dev20260528 from viable/strict, May 28th, 2026
13+
IDEEP_HASH=e087b6e4b32a7ba684db82231d1558123968ac1d # From ideep_pytorch, May 11th, 2026
14+
ONEDNN_HASH=3004f0a1d9cf92c06eaaca57840aaa2149ebba85 # From main, May 27th, 2026
15+
KLEIDIAI_HASH=5866364d3bc079d2d6cae5f0acf6d076594bc7a7 # v1.25.0 from main, May 28th, 2026
1616

1717
# build-wheel.sh deps
18-
ACL_VERSION="v53.0.0" # Apr 10th
18+
ACL_VERSION="v53.1.0" # May 18th
1919
OPENBLAS_VERSION="v0.3.33" # Apr 23rd
2020

2121
# Dockerfile deps
22-
TORCHVISION_NIGHTLY="0.27.0.dev20260505"
23-
TORCHAO_NIGHTLY="0.18.0.dev20260505"
22+
TORCHVISION_NIGHTLY="0.28.0.dev20260527"
23+
TORCHAO_NIGHTLY="0.18.0.dev20260528"

ML-Frameworks/tensorflow-aarch64/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ where `YY` is the year, and `MM` the month of the increment.
1616
### Added
1717

1818
### Changed
19+
20+
### Removed
21+
22+
### Fixed
23+
24+
## [r26.06] 2026-06-19
25+
26+
### Added
27+
28+
### Changed
29+
- Updates TensorFlow hash to fff60aa253b3d2a3cb9e0e988e72cdab761530d1 from nightly, May 28th
1930
- Updates `filelock` from 3.17.0 to 3.20.3.
2031
- Updates `pillow` from 12.1.1 to 12.2.0.
2132

ML-Frameworks/tensorflow-aarch64/get-source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ source ../utils/git-utils.sh
88

99
set -eux -o pipefail
1010

11-
TENSORFLOW_HASH=25cf6546b44bdb3d3f17277a4b49b027dcdc0ae7 # from nightly, Mar 23rd
11+
TENSORFLOW_HASH=fff60aa253b3d2a3cb9e0e988e72cdab761530d1 # from nightly, May 28th
1212

1313
git-shallow-clone https://github.com/tensorflow/tensorflow.git $TENSORFLOW_HASH
1414

0 commit comments

Comments
 (0)