Skip to content

Commit

Permalink
restrict concurrency to 32.
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu committed Jun 9, 2024
1 parent 43163aa commit c7746ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: configure & build
run: |
cd lib && ./configure --enable-sm80 && cd ..
make -j 64 -C test COVER=1 all.tests
make -j 32 -C test COVER=1 all.tests
- name: tests
run: |
make -C test check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cuda-int-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: configure & build
run: |
cd lib && ./configure --enable-sm80 && cd ..
make -j 64 -C test/int/nnc
make -j 32 -C test/int/nnc
- name: integration tests
run: |
make -C test/int/nnc test
10 changes: 5 additions & 5 deletions .github/workflows/ubsan-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
- name: configure & build
run: |
cd lib && ./configure --enable-sm80 && cd ..
make -j 64 -C lib ubsan
make -j 64 -C bin ubsan
make -j 64 -C bin/nnc ubsan
make -j 64 -C bin/cuda ubsan
make -j 64 -C test ubsan
make -j 32 -C lib ubsan
make -j 32 -C bin ubsan
make -j 32 -C bin/nnc ubsan
make -j 32 -C bin/cuda ubsan
make -j 32 -C test ubsan
- name: tests
run: |
make -C test test

0 comments on commit c7746ae

Please sign in to comment.