Skip to content

Commit b1a0c01

Browse files
committed
Patch torch wheel naming.
1 parent 3e30f33 commit b1a0c01

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

ML-Frameworks/pytorch-aarch64/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ where `YY` is the year, and `MM` the month of the increment.
2121

2222
### Fixed
2323

24-
## [r26.02] 2026-02-09
24+
## [r26.02] 2026-02-11
2525
https://github.com/ARM-software/Tool-Solutions/tree/r26.02
2626

2727
### Added
@@ -30,7 +30,7 @@ https://github.com/ARM-software/Tool-Solutions/tree/r26.02
3030

3131
### Changed
3232
- Updates hashes for:
33-
- `PYTORCH_HASH` to `77da53a7356e033e3fc1e03fdd960fc4ad117882`, 2.11.0.dev20260130 from viable/strict, Jan 30th.
33+
- `PYTORCH_HASH` to `77da53a7356e033e3fc1e03fdd960fc4ad117882`, 2.11.0.dev20260129 from viable/strict, Jan 29th.
3434
- `IDEEP_HASH` to `bbb9ffb9e0c401ca058b7f35a6ebe7d0e08ffd34`, from ideep_pytorch, Jan 30th.
3535
- `ONEDNN_HASH` to `804f364c04ad8a763d534abaabc99bf99c2754e0`, from main, Jan 30th.
3636
- `TORCH_AO_HASH` to `30fcb156945ecacd515775414d37c09bfe60727e`, from main, Jan 30th.

ML-Frameworks/pytorch-aarch64/build-wheel.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,11 @@ docker_exec rm -rf "${PYTORCH_CONTAINER_DIR}/dist"
155155
# commit, this allows us to also install the matching torch* packages, set in
156156
# the Dockerfile. This is what PyTorch does in its nightly pipeline, see
157157
# pytorch/.ci/aarch64_linux/aarch64_wheel_ci_build.py for this logic.
158-
build_date=$(cd "$PYTORCH_LOCAL_DIR" && git log --pretty=format:%cs -1 | tr -d '-')
158+
# NOTE: This relies on the fact that we only ever perform a shallow clone of the
159+
# PyTorch repo so the first commit is the latest commit on the branch we clone,
160+
# which is what we want to base the version on. If this ever changes, we may need
161+
# to update this logic.
162+
build_date=$(cd "$PYTORCH_LOCAL_DIR" && git log --reverse --pretty=format:%cs -1 | tr -d '-')
159163
version=$(cat "$PYTORCH_LOCAL_DIR/version.txt" | tr -d "[:space:]")
160164
OVERRIDE_PACKAGE_VERSION="${version%??}.dev${build_date}${TORCH_RELEASE_ID:+"+$TORCH_RELEASE_ID"}"
161165

ML-Frameworks/pytorch-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-
PYTORCH_HASH=77da53a7356e033e3fc1e03fdd960fc4ad117882 # 2.11.0.dev20260130 from viable/strict, Jan 30th
11+
PYTORCH_HASH=77da53a7356e033e3fc1e03fdd960fc4ad117882 # 2.11.0.dev20260129 from viable/strict, Jan 29th
1212
IDEEP_HASH=bbb9ffb9e0c401ca058b7f35a6ebe7d0e08ffd34 # From ideep_pytorch, Jan 30th
1313
ONEDNN_HASH=804f364c04ad8a763d534abaabc99bf99c2754e0 # From main, Jan 30th
1414
TORCH_AO_HASH=30fcb156945ecacd515775414d37c09bfe60727e # From main, Jan 30th

ML-Frameworks/tensorflow-aarch64/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ where `YY` is the year, and `MM` the month of the increment.
2121

2222
### Fixed
2323

24-
## [r26.02] 2026-02-09
24+
## [r26.02] 2026-02-11
2525
https://github.com/ARM-software/Tool-Solutions/tree/r26.02
2626

2727
### Added

0 commit comments

Comments
 (0)