From c825a7e1e9023a1ae18c109ae8dae0924dc175ca Mon Sep 17 00:00:00 2001 From: Wenjing Margaret Mao Date: Thu, 6 Jun 2024 16:53:19 +0800 Subject: [PATCH] change the workflow file to test ftp (#11241) * change the workflow to test ftp * comment some models * revert file --------- Co-authored-by: Yishuo Wang --- .github/workflows/llm_performance_tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/llm_performance_tests.yml b/.github/workflows/llm_performance_tests.yml index c9f2c830..1db4e125 100644 --- a/.github/workflows/llm_performance_tests.yml +++ b/.github/workflows/llm_performance_tests.yml @@ -173,21 +173,22 @@ jobs: python ../../../../test/benchmark/check_results.py -c test1 -y ../../../../test/benchmark/arc-perf-test.yaml python ../../../../test/benchmark/check_results.py -c test2 -y ../../../../test/benchmark/arc-perf-transformers-437.yaml find . -name "*test*.csv" -delete - cd ../ - rm -r test_batch1 if [ ${{ github.event_name }} == "schedule" ] || [ ${{ github.event_name }} == "workflow_dispatch" ]; then curl -T ./*.csv ${LLM_FTP_URL}/llm/nightly_perf/gpu/ fi + cd ../ + rm -r test_batch1 # batch_size 2 cd test_batch2 python ../../../../test/benchmark/check_results.py -c test1 -y ../../../../test/benchmark/arc-perf-test-batch2.yaml python ../../../../test/benchmark/check_results.py -c test2 -y ../../../../test/benchmark/arc-perf-transformers-437-batch2.yaml find . -name "*test*.csv" -delete - cd ../ - rm -r test_batch2 if [ ${{ github.event_name }} == "schedule" ] || [ ${{ github.event_name }} == "workflow_dispatch" ]; then curl -T ./*.csv ${LLM_FTP_URL}/llm/nightly_perf/gpu/ fi + cd ../ + rm -r test_batch2 + llm-performance-test-on-spr: if: ${{ github.event.schedule || github.event_name == 'workflow_dispatch' || github.event.inputs.artifact == 'llm-performance-test-on-spr' || github.event.inputs.artifact == 'all' }} # please comment it for PR tests