-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #926 from martindevans/fix/windows_cuda_heap_space3
Reduced parallel CUDA builds
- Loading branch information
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -238,11 +238,6 @@ jobs: | |
method: 'network' | ||
sub-packages: '["nvcc", "cudart", "cublas", "cublas_dev", "thrust", "visual_studio_integration"]' | ||
|
||
- name: "Configure" | ||
if: runner.os == 'Windows' | ||
run: | | ||
echo "CMAKE_CXX_FLAGS=/Zm1000" | Out-File -FilePath $env:GITHUB_ENV -Append | ||
- uses: Jimver/[email protected] | ||
if: runner.os == 'Linux' | ||
id: cuda-toolkit-linux | ||
|
@@ -258,7 +253,7 @@ jobs: | |
mkdir build | ||
cd build | ||
cmake .. ${{ env.COMMON_DEFINE }} -DGGML_CUDA=ON | ||
cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS} | ||
cmake --build . --config Release | ||
ls -R | ||
- name: Upload artifacts (Windows) | ||
|