[executorch hash update] update the pinned executorch hash (#144813)

This PR is auto-generated nightly by [this action](https://github.com/pytorch/pytorch/blob/main/.github/workflows/nightly.yml).
Update the pinned executorch hash.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/144813
Approved by: https://github.com/pytorchbot, https://github.com/huydhn

Co-authored-by: Huy Do <huydhn@gmail.com>
This commit is contained in:
PyTorch UpdateBot 2025-01-16 22:39:00 +00:00 committed by PyTorch MergeBot
parent 7c7bcb1e33
commit a33e02cb26
2 changed files with 6 additions and 1 deletions

View File

@ -1 +1 @@
cf8d0cf8ebd93bc3012b31bfd6ab768a493f4479 a727b55b3584c9f6330eae3c4762a2ca500247dc

View File

@ -38,6 +38,11 @@ install_conda_dependencies() {
install_pip_dependencies() { install_pip_dependencies() {
pushd executorch pushd executorch
as_jenkins bash install_requirements.sh --pybind xnnpack as_jenkins bash install_requirements.sh --pybind xnnpack
# A workaround, ExecuTorch has moved to numpy 2.0 which is not compatible with the current
# numba and scipy version used in PyTorch CI
conda_run pip uninstall -y numba scipy
popd popd
} }