Skip to content

Commit

Permalink
Merge branch 'mull-timeout' into 'master'
Browse files Browse the repository at this point in the history
increase timeout to 100000

See merge request correaa/boost-multi!1366
  • Loading branch information
correaa committed Mar 4, 2025
2 parents 3717da4 + 31bf3dc commit cae3233
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci-correaa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,9 @@ clang++-16 mull-16: # mull-17 crashes
- mull-runner-16 --version
- CXX=clang++-16 cmake .. -DCMAKE_CXX_FLAGS="-O1 -fpass-plugin=/usr/lib/mull-ir-frontend-16 -g -grecord-command-line -fprofile-instr-generate -fcoverage-mapping"
- cmake --build . --parallel 2 || cmake --build . --parallel 1 --verbose
- ctest -j 2 --output-on-failure
# - ctest -j 2 --output-on-failure
- cd test
- ls *.x | xargs -n 1 sh -c 'echo $0 && ((mull-runner-16 --ld-search-path=/usr/lib/x86_64-linux-gnu $0 -test-program=ctest -- -j2 --stop-on-failure) || exit 255)'
- ls *.x | xargs -n 1 sh -c 'echo $0 && ((mull-runner-16 --timeout 10000 --ld-search-path=/usr/lib/x86_64-linux-gnu $0 -test-program=ctest -- -j2 --stop-on-failure) || exit 255)'
needs: ["clang++"]

# deb:
Expand Down
7 changes: 5 additions & 2 deletions test/redux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ auto main() -> int { // NOLINT(readability-function-cognitive-complexity,bugpro

// auto pp = [] /*__host__ __device__*/ (long ix, long iy) -> double { return double(ix) * double(iy); };

auto nx = 40000; // nmax; // for(long nx = 1; nx <= nmax; nx *= 10)
auto ny = 2000; // maxsize; // for(long ny = 1; ny <= maxsize; ny *= 5)
// auto nx = 40000; // nmax; // for(long nx = 1; nx <= nmax; nx *= 10)
// auto ny = 2000; // maxsize; // for(long ny = 1; ny <= maxsize; ny *= 5)

auto const nx = 4000; // nmax; // for(long nx = 1; nx <= nmax; nx *= 10)
auto const ny = 200; // maxsize; // for(long ny = 1; ny <= maxsize; ny *= 5)

// auto total = nx*ny;

Expand Down

0 comments on commit cae3233

Please sign in to comment.