We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 370c576 commit ab409a3Copy full SHA for ab409a3
1 file changed
.ci/scripts/test_model_e2e_windows.ps1
@@ -176,7 +176,11 @@ try {
176
177
Write-Host "::group::Build ExecuTorch (CUDA)"
178
$numCores = [Math]::Max([Environment]::ProcessorCount - 1, 1)
179
- cmake --preset llm-release-cuda @cmakeCudaArgs
+ # EXECUTORCH_BUILD_EXTENSION_IMAGE defaults OFF in the preset, so it must be
180
+ # enabled explicitly here (matching the Makefile CUDA target used on Linux).
181
+ # The dinov2 runner links the installed extension_image.lib; without this the
182
+ # main install never builds it and dinov2_runner fails to link (LNK1181).
183
+ cmake --preset llm-release-cuda -DEXECUTORCH_BUILD_EXTENSION_IMAGE=ON @cmakeCudaArgs
184
cmake --build cmake-out --target install --config Release -j $numCores
185
Write-Host "::endgroup::"
186
0 commit comments