From 68d78fb57e7af41f064bd28daffbeb3383c531a0 Mon Sep 17 00:00:00 2001 From: Yuwen Hu <54161268+Oscilloscope98@users.noreply.github.com> Date: Wed, 17 Jan 2024 11:21:58 +0800 Subject: [PATCH] [LLM] Small improvement to iGPU perf test #9915) - Avoid delete csv if there is something wrong with concating csv --- .github/workflows/llm_performance_tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/llm_performance_tests.yml b/.github/workflows/llm_performance_tests.yml index c908847c..d35f093c 100644 --- a/.github/workflows/llm_performance_tests.yml +++ b/.github/workflows/llm_performance_tests.yml @@ -345,6 +345,7 @@ jobs: cd python\llm\dev\benchmark\all-in-one python ..\..\..\test\benchmark\concat_csv.py + if %ERRORLEVEL% neq 0 (exit /b 1) del /q *test*.csv move *.csv %CSV_SAVE_PATH%\32-32\ cd ..\..\..\test\benchmark @@ -414,6 +415,7 @@ jobs: cd python\llm\dev\benchmark\all-in-one python ..\..\..\test\benchmark\concat_csv.py + if %ERRORLEVEL% neq 0 (exit /b 1) del /q *test*.csv move *.csv %CSV_SAVE_PATH%\1024-128\ cd ..\..\..\test\benchmark @@ -482,6 +484,7 @@ jobs: cd python\llm\dev\benchmark\all-in-one python ..\..\..\test\benchmark\concat_csv.py + if %ERRORLEVEL% neq 0 (exit /b 1) del /q *test*.csv move *.csv %CSV_SAVE_PATH%\2048-256\ cd ..\..\..\test\benchmark @@ -551,6 +554,7 @@ jobs: cd python\llm\dev\benchmark\all-in-one python ..\..\..\test\benchmark\concat_csv.py + if %ERRORLEVEL% neq 0 (exit /b 1) del /q *test*.csv move *.csv %CSV_SAVE_PATH%\32-512\ cd ..\..\..\test\benchmark