From 1614ae1c9eaf403fd6f5e0c9be3c13f3a55f32cf Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Wed, 2 Oct 2024 17:17:05 -0700 Subject: [PATCH] Update the job name to reflect the new generic benchmark app (#5829) Summary: As titled Pull Request resolved: https://github.com/pytorch/executorch/pull/5829 Reviewed By: kirklandsign Differential Revision: D63790787 Pulled By: guangy10 fbshipit-source-id: d350f8e0379df7b389e686afe3f19e432c8c6d08 (cherry picked from commit bc4fd8a1d234217c08de043496efbfab97e46f84) --- .github/workflows/android-perf.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/android-perf.yml b/.github/workflows/android-perf.yml index af0052b4eae..c17c51c90a8 100644 --- a/.github/workflows/android-perf.yml +++ b/.github/workflows/android-perf.yml @@ -176,9 +176,9 @@ jobs: fi echo "::endgroup::" - build-llm-demo: - name: build-llm-demo - uses: pytorch/test-infra/.github/workflows/linux_job.yml@release/2.5 + build-benchmark-app: + name: build-benchmark-app + uses: pytorch/test-infra/.github/workflows/linux_job.yml@main needs: set-parameters with: runner: linux.2xlarge @@ -211,7 +211,7 @@ jobs: uses: pytorch/test-infra/.github/workflows/mobile_job.yml@release/2.5 needs: - set-parameters - - build-llm-demo + - build-benchmark-app - export-models strategy: matrix: @@ -226,10 +226,6 @@ jobs: # This is the ARN of ExecuTorch project on AWS project-arn: arn:aws:devicefarm:us-west-2:308535385114:project:02a2cf0f-6d9b-45ee-ba1a-a086587469e6 device-pool-arn: ${{ matrix.device }} - # Uploaded to S3 from the previous job, the name of the app comes from the project itself. - # Unlike models there are limited numbers of build flavor for apps, and the model controls whether it should build with bpe/tiktoken tokenizer. - # It's okay to build all possible apps with all possible flavors in job "build-llm-demo". However, in this job, once a model is given, there is only - # one app+flavor that could load and run the model. android-app-archive: https://gha-artifacts.s3.amazonaws.com/${{ github.repository }}/${{ github.run_id }}/artifacts/minibench/app-debug.apk android-test-archive: https://gha-artifacts.s3.amazonaws.com/${{ github.repository }}/${{ github.run_id }}/artifacts/minibench/app-debug-androidTest.apk # NB: Need to set the default spec here so that it works for periodic too