From e2adc974fd041d5c9252fd78048da7e92c6b7eee Mon Sep 17 00:00:00 2001 From: Yuwen Hu <54161268+Oscilloscope98@users.noreply.github.com> Date: Mon, 4 Nov 2024 19:22:41 +0800 Subject: [PATCH] Small fix to LNL performance tests (#12331) --- .github/workflows/llm_performance_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/llm_performance_tests.yml b/.github/workflows/llm_performance_tests.yml index 66b31413..674f56d3 100644 --- a/.github/workflows/llm_performance_tests.yml +++ b/.github/workflows/llm_performance_tests.yml @@ -615,7 +615,7 @@ jobs: if [ ${{ inputs.dgpu }} == "true" ]; then test_platform+=("\"perf-dgpu\"") fi - printf 'platform=["%s"]\n' "$(IFS=','; echo "${test_platform[*]}")" >> "$GITHUB_OUTPUT" + printf 'platform=[%s]\n' "$(IFS=','; echo "${test_platform[*]}")" >> "$GITHUB_OUTPUT" else echo 'platform=["perf-mtl", "perf-lnl"]' >> "$GITHUB_OUTPUT" fi