Skip to content

Commit 6c30dac

Browse files
authored
clean unnecessary CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" (#15350) (#15357)
Summary: we no longer need this arg for et installation. clean it to avoid misleading. Reviewed By: larryliu0820 Differential Revision: D85223111
1 parent 6e08aef commit 6c30dac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cuda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
set -eux
256256
257257
echo "::group::Setup ExecuTorch Requirements"
258-
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_requirements.sh
258+
./install_requirements.sh
259259
pip list
260260
echo "::endgroup::"
261261
@@ -305,7 +305,7 @@ jobs:
305305
set -eux
306306
307307
echo "::group::Setup ExecuTorch Requirements"
308-
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_requirements.sh
308+
./install_requirements.sh
309309
pip list
310310
echo "::endgroup::"
311311
@@ -363,7 +363,7 @@ jobs:
363363
set -eux
364364
365365
echo "::group::Setup ExecuTorch Requirements"
366-
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_requirements.sh
366+
./install_requirements.sh
367367
pip list
368368
echo "::endgroup::"
369369

examples/models/voxtral/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ cmake -DCMAKE_INSTALL_PREFIX=cmake-out -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Re
132132
### Building for CUDA
133133
```
134134
# Install ExecuTorch with CUDA support
135-
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_executorch.sh
135+
./install_executorch.sh
136136
137137
# Build the multimodal runner with CUDA
138138
cmake --preset llm \

0 commit comments

Comments
 (0)