Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1790: Use more recent gcc to avoid ICE from nvcc-generated code #1791

Merged
merged 2 commits into from
May 10, 2022
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ intel18:
CC: "icc"
OMPI_CXX: "icpc"
CXX: "icpc"
SCHEDULER_PARAMETERS: "--account=${ASC_WCID} --partition=short,batch --time=1:00:00 --nodes=1"
SCHEDULER_PARAMETERS: "--account=${ASC_WCID} --partition=short,batch --time=1:30:00 --nodes=1"
stage: build
script:
- source /projects/empire/installs/chama/INTEL-RELEASE-OPENMP-SHARED/trilinos/latest-link/load_matching_env.sh
Expand All @@ -37,7 +37,7 @@ intel19:
CC: "icc"
OMPI_CXX: "icpc"
CXX: "icpc"
SCHEDULER_PARAMETERS: "--account=${ASC_WCID} --partition=short,batch --time=1:00:00 --nodes=1"
SCHEDULER_PARAMETERS: "--account=${ASC_WCID} --partition=short,batch --time=1:30:00 --nodes=1"
stage: build
script:
- source /projects/empire/installs/chama/INTEL-RELEASE-OPENMP-SHARED/trilinos/latest-link/load_matching_env.sh
Expand All @@ -58,6 +58,7 @@ nvcc_wrapper-vortex:
stage: build
script:
- source /projects/empire/installs/vortex/CUDA-10.1.243_GNU-7.3.1_SPMPI-ROLLING-RELEASE-CUDA-STATIC/trilinos/latest-link/load_matching_env.sh
- module swap gcc gcc/8.3.1
- mkdir -p /tmp/$USER
- http_proxy=http://proxy.sandia.gov:80 https_proxy=http://proxy.sandia.gov:80 VT_RDMA_TESTS_ENABLED=0 ci/build_cpp.sh $CI_PROJECT_DIR $CI_PROJECT_DIR/vt_build_nvcc_wrapper
- ci/test_cpp.sh $CI_PROJECT_DIR $CI_PROJECT_DIR/vt_build_nvcc_wrapper
Expand Down