From d465ef4acb393db3e4ebf75a29170ba916cf2f55 Mon Sep 17 00:00:00 2001 From: chenyu Date: Wed, 11 Jun 2025 11:56:45 -0700 Subject: [PATCH] AMD_LLVM=0 for sdxl search (#10779) hangs with llvm19 but seems fine with llvm20 --- .github/workflows/benchmark_search.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark_search.yml b/.github/workflows/benchmark_search.yml index 670fa6448d..319cf7c3b7 100644 --- a/.github/workflows/benchmark_search.yml +++ b/.github/workflows/benchmark_search.yml @@ -19,11 +19,12 @@ jobs: - name: Cleanup running AM processes run: python extra/amdpci/am_smi.py --pids --kill - name: Run SDXL with new search + # TODO: GCVM_L2_PROTECTION_FAULT_STATUS with llvm19 run: | - BENCHMARK_LOG=search_sdxl PYTHONPATH=. AMD=1 JITBEAM=2 IGNORE_BEAM_CACHE=1 DISABLE_COMPILER_CACHE=1 python examples/sdxl.py --noshow --timing --seed 0 + BENCHMARK_LOG=search_sdxl PYTHONPATH=. AMD=1 AMD_LLVM=0 JITBEAM=2 IGNORE_BEAM_CACHE=1 DISABLE_COMPILER_CACHE=1 python examples/sdxl.py --noshow --timing --seed 0 - name: Run SDXL with cached search run: | - BENCHMARK_LOG=search_sdxl_cached PYTHONPATH=. AMD=1 JITBEAM=2 python examples/sdxl.py --noshow --timing --seed 0 + BENCHMARK_LOG=search_sdxl_cached PYTHONPATH=. AMD=1 AMD_LLVM=0 JITBEAM=2 python examples/sdxl.py --noshow --timing --seed 0 - name: Run winograd cifar with new search run: | BENCHMARK_LOG=search_wino_cifar WINO=1 DEFAULT_FLOAT=HALF FUSE_ARANGE=1 JITBEAM=4 IGNORE_BEAM_CACHE=1 DISABLE_COMPILER_CACHE=1 BS=1024 STEPS=500 python examples/hlb_cifar10.py