diff --git a/ML-Frameworks/pytorch-aarch64/CHANGELOG.md b/ML-Frameworks/pytorch-aarch64/CHANGELOG.md index 7e21787b..e0c40ae8 100644 --- a/ML-Frameworks/pytorch-aarch64/CHANGELOG.md +++ b/ML-Frameworks/pytorch-aarch64/CHANGELOG.md @@ -21,7 +21,7 @@ where `YY` is the year, and `MM` the month of the increment. ### Fixed -## [r26.02] 2026-02-09 +## [r26.02] 2026-02-11 https://github.com/ARM-software/Tool-Solutions/tree/r26.02 ### Added @@ -30,7 +30,7 @@ https://github.com/ARM-software/Tool-Solutions/tree/r26.02 ### Changed - Updates hashes for: - - `PYTORCH_HASH` to `77da53a7356e033e3fc1e03fdd960fc4ad117882`, 2.11.0.dev20260130 from viable/strict, Jan 30th. + - `PYTORCH_HASH` to `77da53a7356e033e3fc1e03fdd960fc4ad117882`, 2.11.0.dev20260129 from viable/strict, Jan 29th. - `IDEEP_HASH` to `bbb9ffb9e0c401ca058b7f35a6ebe7d0e08ffd34`, from ideep_pytorch, Jan 30th. - `ONEDNN_HASH` to `804f364c04ad8a763d534abaabc99bf99c2754e0`, from main, Jan 30th. - `TORCH_AO_HASH` to `30fcb156945ecacd515775414d37c09bfe60727e`, from main, Jan 30th. diff --git a/ML-Frameworks/pytorch-aarch64/build-wheel.sh b/ML-Frameworks/pytorch-aarch64/build-wheel.sh index 0a0a3501..ade11354 100755 --- a/ML-Frameworks/pytorch-aarch64/build-wheel.sh +++ b/ML-Frameworks/pytorch-aarch64/build-wheel.sh @@ -155,7 +155,11 @@ docker_exec rm -rf "${PYTORCH_CONTAINER_DIR}/dist" # commit, this allows us to also install the matching torch* packages, set in # the Dockerfile. This is what PyTorch does in its nightly pipeline, see # pytorch/.ci/aarch64_linux/aarch64_wheel_ci_build.py for this logic. -build_date=$(cd "$PYTORCH_LOCAL_DIR" && git log --pretty=format:%cs -1 | tr -d '-') +# NOTE: This relies on the fact that we only ever perform a shallow clone of the +# PyTorch repo so the first commit is the latest commit on the branch we clone, +# which is what we want to base the version on. If this ever changes, we may need +# to update this logic. +build_date=$(cd "$PYTORCH_LOCAL_DIR" && git log --reverse --pretty=format:%cs -1 | tr -d '-') version=$(cat "$PYTORCH_LOCAL_DIR/version.txt" | tr -d "[:space:]") OVERRIDE_PACKAGE_VERSION="${version%??}.dev${build_date}${TORCH_RELEASE_ID:+"+$TORCH_RELEASE_ID"}" diff --git a/ML-Frameworks/pytorch-aarch64/get-source.sh b/ML-Frameworks/pytorch-aarch64/get-source.sh index c0ad8359..3f737835 100755 --- a/ML-Frameworks/pytorch-aarch64/get-source.sh +++ b/ML-Frameworks/pytorch-aarch64/get-source.sh @@ -8,7 +8,7 @@ source ../utils/git-utils.sh set -eux -o pipefail -PYTORCH_HASH=77da53a7356e033e3fc1e03fdd960fc4ad117882 # 2.11.0.dev20260130 from viable/strict, Jan 30th +PYTORCH_HASH=77da53a7356e033e3fc1e03fdd960fc4ad117882 # 2.11.0.dev20260129 from viable/strict, Jan 29th IDEEP_HASH=bbb9ffb9e0c401ca058b7f35a6ebe7d0e08ffd34 # From ideep_pytorch, Jan 30th ONEDNN_HASH=804f364c04ad8a763d534abaabc99bf99c2754e0 # From main, Jan 30th TORCH_AO_HASH=30fcb156945ecacd515775414d37c09bfe60727e # From main, Jan 30th diff --git a/ML-Frameworks/tensorflow-aarch64/CHANGELOG.md b/ML-Frameworks/tensorflow-aarch64/CHANGELOG.md index 6b32c29f..ae64a8f9 100644 --- a/ML-Frameworks/tensorflow-aarch64/CHANGELOG.md +++ b/ML-Frameworks/tensorflow-aarch64/CHANGELOG.md @@ -21,7 +21,7 @@ where `YY` is the year, and `MM` the month of the increment. ### Fixed -## [r26.02] 2026-02-09 +## [r26.02] 2026-02-11 https://github.com/ARM-software/Tool-Solutions/tree/r26.02 ### Added