Skip to content

Commit 7d1746b

Browse files
committed
Replace runners prefix amz2023.
1 parent dbf7d6e commit 7d1746b

File tree

15 files changed

+272
-272
lines changed

15 files changed

+272
-272
lines changed

.ci/scripts/gather_test_models.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
from examples.xnnpack import MODEL_NAME_TO_OPTIONS
1515

1616
DEFAULT_RUNNERS = {
17-
"linux": "linux.2xlarge",
17+
"linux": "amz2023.linux.2xlarge",
1818
"macos": "macos-m1-stable",
1919
}
2020
CUSTOM_RUNNERS = {
2121
"linux": {
2222
# This one runs OOM on smaller runner, the root cause is unclear (T163016365)
23-
"w2l": "linux.12xlarge",
24-
"ic4": "linux.12xlarge",
25-
"resnet50": "linux.12xlarge",
26-
"llava": "linux.12xlarge",
23+
"w2l": "amz2023.linux.12xlarge",
24+
"ic4": "amz2023.linux.12xlarge",
25+
"resnet50": "amz2023.linux.12xlarge",
26+
"llava": "amz2023.linux.12xlarge",
2727
# This one causes timeout on smaller runner, the root cause is unclear (T161064121)
28-
"dl3": "linux.12xlarge",
29-
"emformer_join": "linux.12xlarge",
28+
"dl3": "amz2023.linux.12xlarge",
29+
"emformer_join": "amz2023.linux.12xlarge",
3030
}
3131
}
3232

@@ -116,7 +116,7 @@ def export_models_for_ci() -> dict[str, dict]:
116116
"build-tool": "buck2",
117117
"model": "mv3",
118118
"backend": backend,
119-
"runner": "linux.2xlarge",
119+
"runner": "amz2023.linux.2xlarge",
120120
"timeout": DEFAULT_TIMEOUT,
121121
}
122122
models["include"].append(record)
@@ -145,7 +145,7 @@ def export_models_for_ci() -> dict[str, dict]:
145145
"build-tool": "cmake",
146146
"model": name,
147147
"backend": backend,
148-
"runner": DEFAULT_RUNNERS.get(target_os, "linux.2xlarge"),
148+
"runner": DEFAULT_RUNNERS.get(target_os, "amz2023.linux.2xlarge"),
149149
"timeout": DEFAULT_TIMEOUT,
150150
}
151151

.github/workflows/_unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
linux:
1717
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
1818
with:
19-
runner: linux.2xlarge
19+
runner: amz2023.linux.2xlarge
2020
docker-image: ${{ inputs.docker-image }}
2121
submodules: 'true'
2222
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/android.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
tokenizer: [bpe, tiktoken]
3030
with:
31-
runner: linux.2xlarge
31+
runner: amz2023.linux.2xlarge
3232
docker-image: executorch-ubuntu-22.04-clang12-android
3333
submodules: 'true'
3434
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -49,7 +49,7 @@ jobs:
4949
# Upload artifacts to S3. The artifacts are needed not only by the device farm but also TorchChat
5050
upload-artifacts:
5151
needs: build-llm-demo
52-
runs-on: linux.2xlarge
52+
runs-on: amz2023.linux.2xlarge
5353
steps:
5454
- name: Download the artifacts from GitHub
5555
uses: actions/download-artifact@v3
@@ -81,7 +81,7 @@ jobs:
8181
# Running Android emulator directly on the runner and not using Docker
8282
run-emulator:
8383
needs: build-llm-demo
84-
runs-on: amz2023.linux.4xlarge
84+
runs-on: amz2023.amz2023.linux.4xlarge
8585
env:
8686
ANDROID_NDK_VERSION: r26c
8787
API_LEVEL: 34
@@ -161,7 +161,7 @@ jobs:
161161
tokenizer: [bpe]
162162
with:
163163
device-type: android
164-
runner: linux.2xlarge
164+
runner: amz2023.linux.2xlarge
165165
test-infra-ref: ''
166166
# This is the ARN of ExecuTorch project on AWS
167167
project-arn: arn:aws:devicefarm:us-west-2:308535385114:project:02a2cf0f-6d9b-45ee-ba1a-a086587469e6

.github/workflows/doc-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- build-tool: buck2
2323
with:
2424
job-name: Build doc
25-
runner: linux.2xlarge
25+
runner: amz2023.linux.2xlarge
2626
docker-image: executorch-ubuntu-22.04-clang12
2727
submodules: 'true'
2828
repository: pytorch/executorch

.github/workflows/docker-builds.yml

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

2929
jobs:
3030
docker-build:
31-
runs-on: [self-hosted, linux.2xlarge]
31+
runs-on: [self-hosted, amz2023.linux.2xlarge]
3232
timeout-minutes: 240
3333
strategy:
3434
fail-fast: false

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
lintrunner:
1919
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
2020
with:
21-
runner: linux.2xlarge
21+
runner: amz2023.linux.2xlarge
2222
docker-image: executorch-ubuntu-22.04-linter
2323
fetch-depth: 0
2424
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/pull.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- build-tool: cmake
4141
fail-fast: false
4242
with:
43-
runner: linux.2xlarge
43+
runner: amz2023.linux.2xlarge
4444
docker-image: executorch-ubuntu-22.04-gcc9
4545
submodules: 'true'
4646
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -93,7 +93,7 @@ jobs:
9393
mode: [portable, xnnpack+custom, xnnpack+custom+qe]
9494
fail-fast: false
9595
with:
96-
runner: linux.2xlarge
96+
runner: amz2023.linux.2xlarge
9797
docker-image: executorch-ubuntu-22.04-clang12
9898
submodules: 'true'
9999
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -123,7 +123,7 @@ jobs:
123123
- build-tool: cmake
124124
fail-fast: false
125125
with:
126-
runner: linux.2xlarge
126+
runner: amz2023.linux.2xlarge
127127
docker-image: executorch-ubuntu-22.04-clang12-android
128128
submodules: 'true'
129129
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -147,7 +147,7 @@ jobs:
147147
- build-tool: cmake
148148
fail-fast: false
149149
with:
150-
runner: linux.2xlarge
150+
runner: amz2023.linux.2xlarge
151151
docker-image: executorch-ubuntu-22.04-clang12
152152
submodules: 'true'
153153
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -172,7 +172,7 @@ jobs:
172172
- build-tool: cmake
173173
fail-fast: false
174174
with:
175-
runner: linux.2xlarge
175+
runner: amz2023.linux.2xlarge
176176
docker-image: executorch-ubuntu-22.04-clang12
177177
submodules: 'true'
178178
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -193,7 +193,7 @@ jobs:
193193
strategy:
194194
fail-fast: false
195195
with:
196-
runner: linux.12xlarge
196+
runner: amz2023.linux.12xlarge
197197
docker-image: executorch-ubuntu-22.04-clang12
198198
submodules: 'true'
199199
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -230,7 +230,7 @@ jobs:
230230
- build-tool: cmake
231231
fail-fast: false
232232
with:
233-
runner: linux.2xlarge
233+
runner: amz2023.linux.2xlarge
234234
docker-image: executorch-ubuntu-22.04-clang12
235235
submodules: 'true'
236236
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -253,7 +253,7 @@ jobs:
253253
- build-tool: cmake
254254
fail-fast: false
255255
with:
256-
runner: linux.2xlarge
256+
runner: amz2023.linux.2xlarge
257257
docker-image: executorch-ubuntu-22.04-clang12
258258
submodules: 'true'
259259
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -279,7 +279,7 @@ jobs:
279279
strategy:
280280
fail-fast: false
281281
with:
282-
runner: linux.2xlarge
282+
runner: amz2023.linux.2xlarge
283283
docker-image: executorch-ubuntu-22.04-gcc9
284284
submodules: 'true'
285285
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -311,7 +311,7 @@ jobs:
311311
strategy:
312312
fail-fast: false
313313
with:
314-
runner: linux.2xlarge
314+
runner: amz2023.linux.2xlarge
315315
docker-image: executorch-ubuntu-22.04-clang12
316316
submodules: 'true'
317317
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -349,7 +349,7 @@ jobs:
349349
include:
350350
- build-tool: buck2
351351
with:
352-
runner: linux.2xlarge
352+
runner: amz2023.linux.2xlarge
353353
docker-image: executorch-ubuntu-22.04-arm-sdk
354354
submodules: 'true'
355355
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/trunk.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
- build-tool: cmake
115115
fail-fast: false
116116
with:
117-
runner: linux.2xlarge
117+
runner: amz2023.linux.2xlarge
118118
docker-image: executorch-ubuntu-22.04-clang12
119119
submodules: 'true'
120120
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -132,7 +132,7 @@ jobs:
132132
name: test-arm-backend-delegation
133133
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
134134
with:
135-
runner: linux.2xlarge
135+
runner: amz2023.linux.2xlarge
136136
docker-image: executorch-ubuntu-22.04-arm-sdk
137137
submodules: 'true'
138138
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -158,7 +158,7 @@ jobs:
158158
name: test-arm-reference-delegation
159159
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
160160
with:
161-
runner: linux.2xlarge
161+
runner: amz2023.linux.2xlarge
162162
docker-image: executorch-ubuntu-22.04-arm-sdk
163163
submodules: 'true'
164164
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

0 commit comments

Comments
 (0)