Skip to content

Commit acb21f8

Browse files
committed
Cleanup
1 parent eec27d3 commit acb21f8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/cuda.yml

Lines changed: 3 additions & 3 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-
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" source .ci/scripts/test-cuda-build.sh "${{ matrix.cuda-version }}"
47+
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-
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" PYTHON_EXECUTABLE=python ./install_executorch.sh
86+
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
@@ -132,7 +132,7 @@ jobs:
132132
set -eux
133133
134134
echo "::group::Setup ExecuTorch"
135-
CMAKE_ARGS="-DEXECUTORCH_BUILD_QNN=OFF" ./install_executorch.sh
135+
./install_executorch.sh
136136
echo "::endgroup::"
137137
138138
echo "::group::Setup Huggingface"

backends/qualcomm/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ get_filename_component(
2323
_common_include_directories "${EXECUTORCH_SOURCE_DIR}/.." ABSOLUTE
2424
)
2525

26+
# We only download QNN SDK when we build pip wheel for ExecuTorch.
2627
if(EXECUTORCH_BUILD_PYBIND)
2728
set(_qnn_default_sdk_dir "${CMAKE_CURRENT_BINARY_DIR}/sdk/qnn")
2829

0 commit comments

Comments
 (0)