Skip to content

Commit 209f881

Browse files
committed
Turn off QNN in cuda.yml
1 parent e13507f commit 209f881

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cuda.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
# Test ExecuTorch CUDA build - ExecuTorch will automatically detect CUDA version
4646
# and install the appropriate PyTorch wheel
47-
source .ci/scripts/test-cuda-build.sh "${{ matrix.cuda-version }}"
47+
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" source .ci/scripts/test-cuda-build.sh "${{ matrix.cuda-version }}"
4848
4949
# This job will fail if any of the CUDA versions fail
5050
check-all-cuda-builds:
@@ -83,7 +83,7 @@ jobs:
8383
script: |
8484
set -eux
8585
86-
PYTHON_EXECUTABLE=python ./install_executorch.sh
86+
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" PYTHON_EXECUTABLE=python ./install_executorch.sh
8787
export LD_LIBRARY_PATH=/opt/conda/lib:$LD_LIBRARY_PATH
8888
PYTHON_EXECUTABLE=python source .ci/scripts/test_model.sh "${{ matrix.model }}" cmake cuda
8989
@@ -124,7 +124,7 @@ jobs:
124124
set -eux
125125
126126
echo "::group::Setup ExecuTorch"
127-
./install_executorch.sh
127+
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" ./install_executorch.sh
128128
echo "::endgroup::"
129129
130130
echo "::group::Setup Huggingface"
@@ -204,7 +204,7 @@ jobs:
204204
set -eux
205205
206206
echo "::group::Setup ExecuTorch"
207-
./install_executorch.sh
207+
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" ./install_executorch.sh
208208
echo "::endgroup::"
209209
210210
echo "::group::Setup Huggingface"

0 commit comments

Comments
 (0)