-
Notifications
You must be signed in to change notification settings - Fork 99
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
trsv: workaround intel/19.0.4 interal compiler error #608
Conversation
addresses issue kokkos#607 reported by Mike Glass replace /= compound assignment operators
I verified this worked with the previously failing configuration using the intel/19.0.4 module and the sierra-devel module environments. |
Trilinos patch submitted in PR trilinos/Trilinos#6858 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wrote this code, long ago. In fact, I think I generated it from a Python script.
kokkos-dev-2 spot-check: Running on machine: kokkos-dev-2
Repository Status: 7bb61b2d4ab315af42c8ae50d746f4359c5992d0 trsv: workaround intel/19.0.4 interal compiler error
Going to test compilers: gcc/7.3.0 gcc/8.3.0 gcc/9.1 intel/18.0.5 clang/8.0 cuda/10.1
Testing compiler gcc/7.3.0
Starting job gcc-7.3.0-OpenMP-release
kokkos options:
kokkos devices: OpenMP
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
PASSED gcc-7.3.0-OpenMP-release
Testing compiler gcc/8.3.0
Starting job gcc-7.3.0-Pthread-release
kokkos options:
kokkos devices: Pthread
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
PASSED gcc-7.3.0-Pthread-release
Testing compiler gcc/9.1
Starting job gcc-8.3.0-Serial-release
kokkos options:
kokkos devices: Serial
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
PASSED gcc-8.3.0-Serial-release
Starting job gcc-9.1-OpenMP-release
kokkos options:
kokkos devices: OpenMP
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
PASSED gcc-9.1-OpenMP-release
Testing compiler intel/18.0.5
Starting job gcc-9.1-Serial-release
kokkos options:
kokkos devices: Serial
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
PASSED gcc-9.1-Serial-release
Testing compiler clang/8.0
Starting job intel-18.0.5-OpenMP-release
kokkos options:
kokkos devices: OpenMP
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
PASSED intel-18.0.5-OpenMP-release
Starting job clang-8.0-Cuda_OpenMP-release
kokkos options:
kokkos devices: Cuda,OpenMP
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -Wno-pass-failed
PASSED clang-8.0-Cuda_OpenMP-release
Testing compiler cuda/10.1
Starting job clang-8.0-Pthread_Serial-release
kokkos options:
kokkos devices: Pthread,Serial
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -Wno-pass-failed
PASSED clang-8.0-Pthread_Serial-release
Starting job cuda-10.1-Cuda_OpenMP-release
kokkos options:
kokkos devices: Cuda,OpenMP
kokkos cxx: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
PASSED cuda-10.1-Cuda_OpenMP-release
#######################################################
PASSED TESTS
#######################################################
clang-8.0-Cuda_OpenMP-release build_time=116 run_time=152
clang-8.0-Pthread_Serial-release build_time=48 run_time=150
cuda-10.1-Cuda_OpenMP-release build_time=151 run_time=140
gcc-7.3.0-OpenMP-release build_time=42 run_time=47
gcc-7.3.0-Pthread-release build_time=40 run_time=77
gcc-8.3.0-Serial-release build_time=40 run_time=71
gcc-9.1-OpenMP-release build_time=50 run_time=46
gcc-9.1-Serial-release build_time=44 run_time=71
intel-18.0.5-OpenMP-release build_time=137 run_time=46 |
addresses issue #607 reported by Mike Glass
replace /= compound assignment operators