-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2024-03-27 nightly release (853fb5b)
- Loading branch information
pytorchbot
committed
Mar 27, 2024
1 parent
90080f6
commit ba976e5
Showing
507 changed files
with
20,450 additions
and
4,629 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
6ca9ae4f8693639c395544327f7e362441a58c79 | ||
a52b4e22571507abc35c2d47de138497190d2e0a |
This file contains 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,70 @@ | ||
#!/bin/bash | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# All rights reserved. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
set -ex | ||
|
||
# Double check if the NDK version is set | ||
[ -n "${ANDROID_NDK_VERSION}" ] | ||
|
||
install_prerequiresites() { | ||
apt-get update | ||
|
||
# NB: Need OpenJDK 17 at the minimum | ||
apt-get install -y --no-install-recommends \ | ||
openjdk-17-jdk \ | ||
ca-certificates-java \ | ||
ant | ||
|
||
# Cleanup package manager | ||
apt-get autoclean && apt-get clean | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
} | ||
|
||
install_ndk() { | ||
NDK_INSTALLATION_DIR=/opt/ndk | ||
mkdir -p "${NDK_INSTALLATION_DIR}" | ||
|
||
pushd /tmp | ||
# The NDK installation is cached on ossci-android S3 bucket | ||
curl -Os --retry 3 "https://ossci-android.s3.amazonaws.com/android-ndk-${ANDROID_NDK_VERSION}-linux.zip" | ||
unzip -qo "android-ndk-${ANDROID_NDK_VERSION}-linux.zip" | ||
|
||
# Print the content for manual verification | ||
ls -lah "android-ndk-${ANDROID_NDK_VERSION}" | ||
mv "android-ndk-${ANDROID_NDK_VERSION}"/* "${NDK_INSTALLATION_DIR}" | ||
|
||
popd | ||
} | ||
|
||
install_cmdtools() { | ||
CMDTOOLS_FILENAME=commandlinetools-linux-11076708_latest.zip | ||
|
||
pushd /tmp | ||
# The file is cached on ossci-android S3 bucket | ||
curl -Os --retry 3 "https://ossci-android.s3.us-west-1.amazonaws.com/${CMDTOOLS_FILENAME}" | ||
unzip -qo "${CMDTOOLS_FILENAME}" -d /opt | ||
|
||
ls -lah /opt/cmdline-tools/bin | ||
popd | ||
} | ||
|
||
install_sdk() { | ||
SDK_INSTALLATION_DIR=/opt/android/sdk | ||
mkdir -p "${SDK_INSTALLATION_DIR}" | ||
|
||
# These are the tools needed to build Android apps | ||
yes | /opt/cmdline-tools/bin/sdkmanager --sdk_root="${SDK_INSTALLATION_DIR}" --install "platforms;android-34" | ||
yes | /opt/cmdline-tools/bin/sdkmanager --sdk_root="${SDK_INSTALLATION_DIR}" --install "build-tools;33.0.1" | ||
# And some more tools for future emulator tests | ||
yes | /opt/cmdline-tools/bin/sdkmanager --sdk_root="${SDK_INSTALLATION_DIR}" --install "platform-tools" | ||
yes | /opt/cmdline-tools/bin/sdkmanager --sdk_root="${SDK_INSTALLATION_DIR}" --install "tools" | ||
} | ||
|
||
install_prerequiresites | ||
install_ndk | ||
install_cmdtools | ||
install_sdk |
This file contains 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
This file contains 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
This file contains 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
This file contains 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,33 @@ | ||
#!/bin/bash | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# All rights reserved. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
set -exu | ||
|
||
# shellcheck source=/dev/null | ||
source "$(dirname "${BASH_SOURCE[0]}")/utils.sh" | ||
|
||
which "${PYTHON_EXECUTABLE}" | ||
# Just set this variable here, it's cheap even if we use buck2 | ||
CMAKE_OUTPUT_DIR=cmake-out | ||
|
||
build_cmake_quantized_aot_lib() { | ||
echo "Building quantized aot lib" | ||
SITE_PACKAGES="$(${PYTHON_EXECUTABLE} -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" | ||
CMAKE_PREFIX_PATH="${SITE_PACKAGES}/torch" | ||
(rm -rf ${CMAKE_OUTPUT_DIR} \ | ||
&& mkdir ${CMAKE_OUTPUT_DIR} \ | ||
&& cd ${CMAKE_OUTPUT_DIR} \ | ||
&& retry cmake -DBUCK2=buck2 \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH" \ | ||
-DEXECUTORCH_BUILD_QUANTIZED=ON \ | ||
-DPYTHON_EXECUTABLE="$PYTHON_EXECUTABLE" ..) | ||
|
||
cmake --build ${CMAKE_OUTPUT_DIR} -j4 | ||
} | ||
|
||
build_cmake_quantized_aot_lib |
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
filter=+whitespace/extra,-whitespace/indent | ||
filter=-convention/filename,-linelength,-package/consistency,-readability/logic,+readability/mixedcase,-readability/wonkycase,-syntax,-whitespace/eol,+whitespace/extra,-whitespace/indent,-whitespace/mismatch,-whitespace/newline,-whitespace/tabs |
This file contains 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,47 @@ | ||
name: Build ExecuTorch Android demo apps | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release/* | ||
pull_request: | ||
paths: | ||
- .ci/docker/** | ||
- .github/workflows/android.yml | ||
- install_requirements.sh | ||
- examples/demo-apps/** | ||
- extension/module/** | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test-demo-android: | ||
name: test-demo-android | ||
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | ||
strategy: | ||
matrix: | ||
include: | ||
- build-tool: buck2 | ||
with: | ||
# NB: The example model dl3 requires lots of memory (T161064121) | ||
runner: linux.12xlarge | ||
docker-image: executorch-ubuntu-22.04-clang12-android | ||
submodules: 'true' | ||
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | ||
timeout: 90 | ||
script: | | ||
set -eux | ||
# The generic Linux job chooses to use base env, not the one setup by the image | ||
CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") | ||
conda activate "${CONDA_ENV}" | ||
BUILD_TOOL=${{ matrix.build-tool }} | ||
# Setup MacOS dependencies as there is no Docker support on MacOS atm | ||
PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}" | ||
# Build Android demo app | ||
bash build/test_android_ci.sh |
This file contains 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
This file contains 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,58 @@ | ||
name: Create a cherry pick from a PR | ||
|
||
on: | ||
repository_dispatch: | ||
types: [try-cherry-pick] | ||
|
||
jobs: | ||
cherry-pick: | ||
name: cherry-pick-pr-${{ github.event.client_payload.pr_num }} | ||
runs-on: ubuntu-latest | ||
environment: cherry-pick-bot | ||
env: | ||
GH_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
steps: | ||
- name: Checkout repo | ||
id: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
submodules: true | ||
token: ${{ secrets.GH_PYTORCHBOT_CHERRY_PICK_TOKEN }} | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: pip | ||
|
||
# Not the direct dependencies but the script uses trymerge | ||
- run: pip install pyyaml==6.0 rockset==1.0.3 | ||
|
||
- name: Setup committer id | ||
run: | | ||
git config --global user.name "PyTorch Bot" | ||
git config --global user.email "pytorchbot@users.noreply.github.com" | ||
- name: Cherry pick the PR | ||
shell: bash | ||
env: | ||
PR_NUM: ${{ github.event.client_payload.pr_num }} | ||
BRANCH: ${{ github.event.client_payload.branch }} | ||
CLASSIFICATION: ${{ github.event.client_payload.classification }} | ||
FIXES: ${{ github.event.client_payload.fixes || '' }} | ||
ACTOR: ${{ github.actor }} | ||
GITHUB_TOKEN: ${{ secrets.GH_PYTORCHBOT_CHERRY_PICK_TOKEN }} | ||
run: | | ||
set -ex | ||
python ./third-party/pytorch/.github/scripts/cherry_pick.py \ | ||
--onto-branch "${BRANCH}" \ | ||
--classification "${CLASSIFICATION}" \ | ||
--fixes "${FIXES}" \ | ||
--github-actor "${ACTOR}" \ | ||
"${PR_NUM}" | ||
concurrency: | ||
group: cherry-pick-pr-${{ github.event.client_payload.pr_num }} | ||
cancel-in-progress: true |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Oops, something went wrong.