Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions .github/workflows/win-cuda-x64-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ jobs:
- name: Configure CMake
run: |
$env:SCCACHE_DIR = "${{ github.workspace }}\sccache"
# Limit CUDA archs to SM 86 (matches the A10 runner GPU) to keep CI build
# time and memory usage manageable. The full SM list in CMakePresets.json
# is intended for release packaging, not CI validation.
cmake --preset windows_x64_cuda_release -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }} -DTEST_PHI2=True -DTEST_QWEN_2_5=True -DENABLE_JAVA=ON -DUSE_GUIDANCE=ON `
-DCMAKE_CUDA_ARCHITECTURES=86-real `
-DCMAKE_C_COMPILER_LAUNCHER=sccache `
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/win-winml-x64-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ jobs:

- name: Configure CMake
run: |
cmake --preset windows_x64_winml_relwithdebinfo -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }} -DWINML_SDK_VERSION='1.8.2091' -DENABLE_JAVA=ON -DUSE_GUIDANCE=ON
# Limit CUDA archs to SM 86 (matches the A10 runner GPU) to keep CI build
# time and memory usage manageable. The preset's default arch list is for
# release packaging, not CI validation.
cmake --preset windows_x64_winml_relwithdebinfo -T cuda=${{ env.cuda_dir }}\\v${{ env.cuda_version }} -DWINML_SDK_VERSION='1.8.2091' -DENABLE_JAVA=ON -DUSE_GUIDANCE=ON -DCMAKE_CUDA_ARCHITECTURES=86-real

- name: Build with CMake
run: |
Expand Down
Loading