Skip to content

Commit 5691d8e

Browse files
committed
fixes
1 parent 09c2487 commit 5691d8e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.ci/scripts/validate.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,16 +322,16 @@ CHECKPOINT_PATH="$1"
322322
TARGET_DEVICE="${2:-cpu}"
323323
PROMPT="Hello, my name is"
324324

325+
DTYPES="${3:-default}"
325326

326-
if [ "$#" -gt 2 ]; then
327+
if [ "$#" -gt 3 ]; then
327328
# Additional arguments provided
328329
for arg in "${@:3}"; do
329330
case "$arg" in
330331
"compile")
331332
run_compile || exit 1
332333
;;
333334
"aoti")
334-
DTYPES="${4:-default}"
335335
run_aoti || exit 1
336336
;;
337337
"executorch")

.github/workflows/pull.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
186186
test-gpu-aoti-bfloat16:
187187
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
188-
name: test-gpu-aoti (${{ matrix.platform }}, ${{ matrix.model_name }})
188+
name: test-gpu-aoti-bfloat16 (${{ matrix.platform }}, ${{ matrix.model_name }})
189189
needs: gather-models-gpu
190190
timeout: 60
191191
strategy:
@@ -222,7 +222,7 @@ jobs:
222222
223223
test-gpu-aoti-float32:
224224
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
225-
name: test-gpu-aoti (${{ matrix.platform }}, ${{ matrix.model_name }})
225+
name: test-gpu-aoti-float32 (${{ matrix.platform }}, ${{ matrix.model_name }})
226226
needs: gather-models-gpu
227227
strategy:
228228
matrix: ${{ fromJSON(needs.gather-models-gpu.outputs.models) }}
@@ -258,7 +258,7 @@ jobs:
258258
259259
test-gpu-aoti-float16:
260260
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
261-
name: test-gpu-aoti (${{ matrix.platform }}, ${{ matrix.model_name }})
261+
name: test-gpu-aoti-float16 (${{ matrix.platform }}, ${{ matrix.model_name }})
262262
needs: gather-models-gpu
263263
strategy:
264264
matrix: ${{ fromJSON(needs.gather-models-gpu.outputs.models) }}

0 commit comments

Comments
 (0)