Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
set -eux

echo "::group::Setup ExecuTorch Requirements"
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_requirements.sh
./install_requirements.sh
pip list
echo "::endgroup::"

Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
set -eux

echo "::group::Setup ExecuTorch Requirements"
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_requirements.sh
./install_requirements.sh
pip list
echo "::endgroup::"

Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
set -eux

echo "::group::Setup ExecuTorch Requirements"
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_requirements.sh
./install_requirements.sh
pip list
echo "::endgroup::"

Expand Down
2 changes: 1 addition & 1 deletion examples/models/voxtral/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ cmake -DCMAKE_INSTALL_PREFIX=cmake-out -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Re
### Building for CUDA
```
# Install ExecuTorch with CUDA support
CMAKE_ARGS="-DEXECUTORCH_BUILD_CUDA=ON" ./install_executorch.sh
./install_executorch.sh

# Build the multimodal runner with CUDA
cmake --preset llm \
Expand Down
Loading