-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Add dependency installation script for windows arm64 builds #9080
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| #!/bin/bash | ||
|
|
||
| echo "Building vision dependencies and wheel started." | ||
|
|
||
| # Set environment variables | ||
| export SRC_PATH="$GITHUB_WORKSPACE/$SRC_DIR" | ||
| export CMAKE_BUILD_TYPE="$BUILD_TYPE" | ||
| export VCVARSALL_PATH="$DEPENDENCIES_DIR/VSBuildTools/VC/Auxiliary/Build/vcvarsall.bat" | ||
| export CONDA_PREFIX="$DEPENDENCIES_DIR" | ||
| export PATH="$PATH:$CONDA_PREFIX/Library/bin" | ||
| export DISTUTILS_USE_SDK=1 | ||
| export TRIPLET_FILE="triplets/arm64-windows.cmake" | ||
| export PYTORCH_VERSION="$PYTORCH_VERSION" | ||
| export CHANNEL="$CHANNEL" | ||
|
|
||
| # Dependencies | ||
| mkdir -p "$DOWNLOADS_DIR" | ||
| mkdir -p "$DEPENDENCIES_DIR" | ||
| echo "*" > "$DOWNLOADS_DIR/.gitignore" | ||
| echo "*" > "$DEPENDENCIES_DIR/.gitignore" | ||
|
|
||
| # Install vcpkg | ||
| cd "$DOWNLOADS_DIR" || exit | ||
| git clone https://github.com/microsoft/vcpkg.git | ||
| cd vcpkg || exit | ||
| ./bootstrap-vcpkg.sh | ||
|
|
||
| # Set vcpkg to only build release packages | ||
| echo "set(VCPKG_BUILD_TYPE release)" >> "$TRIPLET_FILE" | ||
|
|
||
| # Install dependencies using vcpkg | ||
| ./vcpkg install libjpeg-turbo:arm64-windows --x-install-root="$DEPENDENCIES_DIR" | ||
| ./vcpkg install libwebp:arm64-windows --x-install-root="$DEPENDENCIES_DIR" | ||
| ./vcpkg install libpng[tools]:arm64-windows --x-install-root="$DEPENDENCIES_DIR" | ||
|
|
||
| # Copy files using cp | ||
| cp "$DEPENDENCIES_DIR/arm64-windows/lib/libpng16.lib" "$DEPENDENCIES_DIR/arm64-windows/lib/libpng.lib" | ||
| cp "$DEPENDENCIES_DIR/arm64-windows/bin/libpng16.dll" "$DEPENDENCIES_DIR/arm64-windows/bin/libpng.dll" | ||
| cp "$DEPENDENCIES_DIR/arm64-windows/bin/libpng16.pdb" "$DEPENDENCIES_DIR/arm64-windows/bin/libpng.pdb" | ||
| mkdir -p "$DEPENDENCIES_DIR/Library/" | ||
| cp -r "$DEPENDENCIES_DIR/arm64-windows/"* "$DEPENDENCIES_DIR/Library/" | ||
| cp -r "$DEPENDENCIES_DIR/Library/tools/libpng/"* "$DEPENDENCIES_DIR/Library/bin/" | ||
| cp -r "$DEPENDENCIES_DIR/Library/bin/"* "$SRC_PATH/torchvision" | ||
|
|
||
| # Source directory | ||
| cd "$SRC_PATH" || exit | ||
|
|
||
| # Create virtual environment | ||
| python -m pip install --upgrade pip | ||
| python -m venv .venv | ||
| echo "*" > .venv/.gitignore | ||
| source .venv/Scripts/activate | ||
|
|
||
| # Install dependencies | ||
| pip install numpy==2.2.3 | ||
|
|
||
| if [ "$CHANNEL" = "release" ]; then | ||
| echo "Installing latest stable version of PyTorch." | ||
| # TODO: update when arm64 torch available on pypi | ||
| pip3 install --pre torch --index-url https://download.pytorch.org/whl/torch/ | ||
| elif [ "$CHANNEL" = "test" ]; then | ||
| echo "Installing PyTorch version $PYTORCH_VERSION." | ||
| pip3 install torch=="$PYTORCH_VERSION" | ||
| else | ||
| echo "CHANNEL is not set, installing PyTorch from nightly." | ||
| pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu | ||
| fi | ||
|
|
||
| echo "Dependencies install finished successfully." | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.