Skip to content

Commit 608e938

Browse files
committed
Update
[ghstack-poisoned]
2 parents 52785b5 + fa89efa commit 608e938

File tree

154 files changed

+2776
-1212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+2776
-1212
lines changed

.ci/scripts/check_c10_sync.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
set -exu
99
ls pytorch/.git || git clone https://github.com/pytorch/pytorch.git
10+
pytorch_pin="$(< .ci/docker/ci_commit_pins/pytorch.txt)"
1011
pushd pytorch
11-
git checkout "$(< ../.ci/docker/ci_commit_pins/pytorch.txt)"
12+
git checkout "$pytorch_pin"
1213
popd
13-
"$(dirname "${BASH_SOURCE[0]}")"/diff_c10_mirror_with_pytorch.sh
14+
"$(dirname "${BASH_SOURCE[0]}")"/compare_dirs.sh runtime/core/portable_type/c10/c10 pytorch/c10

.ci/scripts/diff_c10_mirror_with_pytorch.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

.ci/scripts/test_ios_ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
set -e
99

10-
APP_PATH="executorch-examples/apple/ExecuTorchDemo/ExecuTorchDemo"
10+
APP_PATH="executorch-examples/mv3/apple/ExecuTorchDemo/ExecuTorchDemo"
1111
MODEL_NAME="mv3"
1212
SIMULATOR_NAME="executorch"
1313

.github/workflows/_unittest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
runner: linux.2xlarge
3535
docker-image: ${{ inputs.docker-image }}
36-
submodules: 'true'
36+
submodules: 'recursive'
3737
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
3838
timeout: 90
3939
script: |
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
runner: macos-m1-stable
4747
python-version: '3.11'
48-
submodules: 'true'
48+
submodules: 'recursive'
4949
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
5050
script: |
5151
set -eux

.github/workflows/android-perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
with:
168168
runner: linux.2xlarge.memory
169169
docker-image: executorch-ubuntu-22.04-qnn-sdk
170-
submodules: 'true'
170+
submodules: 'recursive'
171171
timeout: 60
172172
upload-artifact: android-models
173173
upload-artifact-to-s3: true

.github/workflows/apple-perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
# NB: Need to use our AWS MacOS runner to upload large models to S3
168168
runner: macos-m1-stable
169169
python-version: '3.11'
170-
submodules: 'true'
170+
submodules: 'recursive'
171171
timeout: 60
172172
upload-artifact: ios-models
173173
upload-artifact-to-s3: true

.github/workflows/check-c10-sync.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,4 @@ jobs:
2424
fetch-depth: 0
2525
- name: Clone PyTorch
2626
run: |
27-
set -ex
28-
git clone https://github.com/pytorch/pytorch.git
29-
pushd pytorch || return
30-
git checkout "$(< ../.ci/docker/ci_commit_pins/pytorch.txt)"
31-
popd
3227
.ci/scripts/check_c10_sync.sh

.github/workflows/doc-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
job-name: Build doc
4242
runner: linux.2xlarge
4343
docker-image: executorch-ubuntu-22.04-clang12-android
44-
submodules: 'true'
44+
submodules: 'recursive'
4545
repository: pytorch/executorch
4646
upload-artifact: docs
4747
timeout: 90

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
runner: linux.2xlarge
2525
docker-image: executorch-ubuntu-22.04-linter
26-
submodules: 'true'
26+
submodules: 'recursive'
2727
fetch-depth: 0
2828
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
2929
timeout: 90

.github/workflows/periodic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
runner: ${{ matrix.runner }}
5252
docker-image: executorch-ubuntu-22.04-clang12
53-
submodules: 'true'
53+
submodules: 'recursive'
5454
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
5555
timeout: ${{ matrix.timeout }}
5656
script: |

0 commit comments

Comments
 (0)