Skip to content
Merged
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: 5 additions & 1 deletion .ci/scripts/test_model_e2e_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,11 @@ try {

Write-Host "::group::Build ExecuTorch (CUDA)"
$numCores = [Math]::Max([Environment]::ProcessorCount - 1, 1)
cmake --preset llm-release-cuda @cmakeCudaArgs
# EXECUTORCH_BUILD_EXTENSION_IMAGE defaults OFF in the preset, so it must be
# enabled explicitly here (matching the Makefile CUDA target used on Linux).
# The dinov2 runner links the installed extension_image.lib; without this the
# main install never builds it and dinov2_runner fails to link (LNK1181).
cmake --preset llm-release-cuda -DEXECUTORCH_BUILD_EXTENSION_IMAGE=ON @cmakeCudaArgs
cmake --build cmake-out --target install --config Release -j $numCores
Write-Host "::endgroup::"

Expand Down
Loading