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

Add a MergeMatrixDiagonal abstraction to KokkosSparse #1780

Merged
merged 5 commits into from
Jul 14, 2023

Conversation

cwpearson
Copy link
Contributor

@cwpearson cwpearson commented Apr 10, 2023

Adds an abstraction over the diagonals merge-matrix M of two sorted views A and B, where M[i,j] = A[i] > B[j].
A diagonal M is the entries running from the bottom-left to the
top-right (from large I / small J to small I / large J).
MergeMatrixDiagonal presents a 1D-View-Like interface into a specific diagonal
of the merge matrix of two views A and B, allowing the caller to retrieve
the value of entries along the diagonal.

This PR also fixes Iota exporting std::remove_const instead of std::remove_const_t.

This PR also introduces KokkosKernels::Impl::safe_gt<T, U>(T t, U u), which compares t and u with a numeric type wide enough to represent both values.

@cwpearson cwpearson requested a review from lucbv April 10, 2023 19:09
@cwpearson cwpearson mentioned this pull request Apr 10, 2023
6 tasks
@cwpearson cwpearson force-pushed the feature/merge-matrix branch 2 times, most recently from dd68a24 to 66ffeef Compare April 10, 2023 20:39
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 485
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 90
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 120
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 390
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 351
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 440
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 493
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 294
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 289
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 292
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: 66ffeef
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 485
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 90
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 120
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 390
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 351
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 440
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 493
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 294
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 289
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 292
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 66ffeef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 47322fb
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 485 (click to expand)

[ 94%] Built target KokkosBlas2_gemv_perf_test
[ 94%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 94%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 94%] Built target KokkosKernels_wiki_spgemm
[ 94%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 94%] Linking CXX executable KokkosKernels_wiki_rcm
[ 94%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 94%] Built target KokkosKernels_wiki_rcm
[ 95%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 95%] Built target KokkosKernels_wiki_gauss_seidel
[ 95%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 95%] Linking CXX executable KokkosKernels_wiki_coloring
[ 95%] Built target KokkosKernels_wiki_coloring
[ 95%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_mis2
[ 96%] Built target KokkosKernels_wiki_mis2
[ 96%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 96%] Built target KokkosKernels_wiki_coarsening
[ 96%] Linking CXX executable sparse_kk_spmv
[ 96%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable xpy
[ 98%] Built target xpy
[ 98%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 98%] Built target KokkosBlas3_gemm_perf_test
[ 99%] Linking CXX executable static_pivoting
[ 99%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1877: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1850: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/all] Error 2
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[ 99%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[ 99%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.485/TestAll_2023-04-10_14.42.01/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 90 (click to expand)

make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.90/TestAll_2023-04-10_14.42.08/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.90/TestAll_2023-04-10_14.42.08/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.90/TestAll_2023-04-10_14.42.08/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 120 (click to expand)

#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.120/TestAll_2023-04-10_14.43.17/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake21: task 0: Exited with exit code 1
FAILED gcc-10.2.0-OpenMP-release
RUNNING: make -j 12 all
Scanning dependencies of target kokkoskernels_gtest
Scanning dependencies of target kokkoskernelsperf_gtest
[ 0%] Building CXX object perf_test/CMakeFiles/kokkoskernelsperf_gtest.dir/__/tpls/gtest/gtest/gtest-all.cc.o
[ 0%] Building CXX object CMakeFiles/kokkoskernels_gtest.dir/tpls/gtest/gtest/gtest-all.cc.o
[ 0%] Linking CXX static library libkokkoskernelsperf_gtest.a
[ 1%] Linking CXX static library libkokkoskernels_gtest.a
[ 1%] Built target kokkoskernelsperf_gtest
[ 1%] Built target kokkoskernels_gtest
Scanning dependencies of target kokkoskernels
[ 1%] Building CXX object CMakeFiles/kokkoskernels.dir/common/src/dummy.cpp.o
[ 2%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/abs/Blas1_abs_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 2%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/abs/Blas1_abs_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 2%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/abs/Blas1_abs_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 3%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/abs/Blas1_abs_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 3%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/scal/Blas1_scal_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 3%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/scal/Blas1_scal_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 4%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/scal/Blas1_scal_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 4%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/scal/Blas1_scal_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 4%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/dot/Blas1_dot_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 5%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/dot/Blas1_dot_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 5%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/dot/Blas1_dot_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 5%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/dot/Blas1_dot_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 6%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gesv/Blas_gesv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 6%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gesv/Blas_gesv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 6%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/axpby/Blas1_axpby_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 7%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/axpby/Blas1_axpby_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 7%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/axpby/Blas1_axpby_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 7%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/axpby/Blas1_axpby_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 8%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/update/Blas1_update_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 8%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/update/Blas1_update_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 8%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/update/Blas1_update_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 9%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/update/Blas1_update_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 9%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/sum/Blas1_sum_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 10%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/sum/Blas1_sum_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 10%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/sum/Blas1_sum_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 10%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/sum/Blas1_sum_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 11%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm1/Blas1_nrm1_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 11%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm1/Blas1_nrm1_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 11%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm1/Blas1_nrm1_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 12%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm1/Blas1_nrm1_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 12%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm2w/Blas1_nrm2w_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 12%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm2w/Blas1_nrm2w_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 13%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm2w/Blas1_nrm2w_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
[ 13%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/nrm2w/Blas1_nrm2w_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 390 (click to expand)

[ 96%] Linking CXX executable KokkosKernels_wiki_coloring
[ 96%] Built target KokkosKernels_wiki_coloring
[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 96%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable xpy
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target xpy
[ 97%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable static_pivoting
[ 98%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.390/TestAll_2023-04-10_14.43.18/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.390/TestAll_2023-04-10_14.43.18/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake17: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 351 (click to expand)

Scanning dependencies of target KokkosKernels_gmres_test_prec
Scanning dependencies of target gmres_ex_real_A
[ 96%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 96%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_spmv
[ 96%] Built target KokkosKernels_wiki_spmv
Scanning dependencies of target team_GMRES
[ 96%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 96%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 96%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 97%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target xpy
[ 97%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable team_GMRES
[100%] Linking CXX executable static_pivoting
[100%] Built target team_GMRES
[100%] Built target static_pivoting
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.351/TestAll_2023-04-10_14.43.23/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake23: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 440 (click to expand)

 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new branch]      release-candidate-4.0.01 -> upstream/release-candidate-4.0.01
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 .../impl/KokkosBatched_Gemv_TeamVector_Impl.hpp    |  12 ++
 .../dense/impl/KokkosBatched_Gemv_Team_Impl.hpp    |  20 +++
 .../impl/KokkosBatched_Spmv_TeamVector_Impl.hpp    |  13 ++
 .../sparse/impl/KokkosBatched_Spmv_Team_Impl.hpp   |  13 ++
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++++++++++++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 ++++++++++
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 +++++++++++++++++++++
 7 files changed, 401 insertions(+)
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  0fde5a039b194a9af8f3044142b398ce511eb7ca Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8352a11930a766328cb07003595ced1f0106138f Merge pull request #5855 from dalg24/num_threads_and_device_id

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1424 run_time=94
intel-19.5.281-Threads-release build_time=837 run_time=105
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001 # 493 (click to expand)

[ 78%] Linking CXX executable KokkosKernels_ode_serial
[ 78%] Built target KokkosKernels_ode_serial
Scanning dependencies of target KokkosBatched_Test_cusolverSp
[ 78%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverSp.dir/KokkosBatched_Test_cusolverSp.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverSp
[ 79%] Built target KokkosBatched_Test_cusolverSp
Scanning dependencies of target KokkosBatched_Test_cusolverDn
[ 79%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverDn
[ 79%] Built target KokkosBatched_Test_cusolverDn
Scanning dependencies of target KokkosBatched_Test_GMRES
[ 79%] Building CXX object perf_test/batched/sparse/GMRES/CMakeFiles/KokkosBatched_Test_GMRES.dir/KokkosBatched_Test_GMRES.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_CG
[ 79%] Built target KokkosBatched_Test_CG
Scanning dependencies of target KokkosBatched_Test_SPMV
[ 80%] Building CXX object perf_test/batched/sparse/SPMV/CMakeFiles/KokkosBatched_Test_SPMV.dir/KokkosBatched_Test_SPMV.cpp.o
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[ 80%] Linking CXX executable KokkosBatched_Test_SPMV
[ 80%] Built target KokkosBatched_Test_SPMV
[ 80%] Linking CXX executable KokkosKernels_graph_threads
[ 80%] Built target KokkosKernels_graph_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 80%] Built target KokkosKernels_batched_gemm_serial
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 80%] Built target KokkosKernels_batched_gemm_threads
[ 80%] Linking CXX executable KokkosKernels_graph_serial
[ 80%] Built target KokkosKernels_graph_serial
[ 80%] Linking CXX executable KokkosKernels_blas_threads
[ 80%] Built target KokkosKernels_blas_threads
[ 80%] Linking CXX executable KokkosBatched_Test_GMRES
[ 80%] Built target KokkosBatched_Test_GMRES
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 82%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 82%] Built target KokkosKernels_batched_dla_threads
[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 82%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.493/TestAll_2023-04-10_14.43.45/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110 # 294 (click to expand)

[ 96%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 96%] Linking CXX executable gmres_ex_real_A
[ 96%] Built target KokkosKernels_batched_gemm_serial
[ 96%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable xpy
[ 97%] Built target xpy
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable static_pivoting
[ 97%] Built target static_pivoting
[ 98%] Linking CXX executable team_GMRES
[ 98%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1809: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.294/TestAll_2023-04-10_14.45.45/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.294/TestAll_2023-04-10_14.45.45/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3296
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_GCC1020 # 289 (click to expand)

[ 95%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target gmres_ex_real_A
[ 95%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 95%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 96%] Linking CXX executable KokkosKernels_wiki_mis2
[ 96%] Built target KokkosKernels_wiki_coarsening
[ 96%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target team_GMRES
[ 96%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
Scanning dependencies of target static_pivoting
[ 96%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 96%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 96%] Built target KokkosBlas2_gemv_perf_test
Scanning dependencies of target xpy
[ 96%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_coloring
[ 96%] Built target KokkosKernels_wiki_coloring
[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 96%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable xpy
[ 98%] Built target xpy
[ 98%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 98%] Built target KokkosKernels_batched_dla_openmp
[ 99%] Linking CXX executable static_pivoting
[ 99%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 99%] Built target KokkosBlas3_gemm_perf_test
[ 99%] Linking CXX executable sparse_kk_spmv
[ 99%] Built target sparse_kk_spmv
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1993: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2021: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.289/TestAll_2023-04-10_14.45.46/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3297
salloc: Job allocation 3297 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 292 (click to expand)

25:     **        *       **            
25:       ***  **    *  *   *           
25:        ***      * * *   **          
25:         ***      * *    ***         
25:          **       *      **         
25:            ***  **   *  *  *        
25:             ***     * * *  **       
25:              ***     * *   ***      
25:               **      *     **      
25:                 *** **   * *  *     
25:                  ***    * **  **    
25:                   **     *    **    
25:                     *** **  * * *   
25:                      ***   * ** **  
25:                       **    *   **  
25:                         *****  ** * 
25:                          **   * * * 
25:                            ***** ***
25:                             **  * **
25:                               **** *
25:                                 *** 
25: 
25/26 Test #25: wiki_rcm .........................   Passed    0.35 sec
test 26
      Start 26: gmres_test_prec

26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.292/TestAll_2023-04-10_14.47.00/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
26: Test timeout computed to be: 2500
26: Convergence tolerance is: 1e-10
26: =========================================
26: Verify from main: Ending residual is 3.48957e-14
26: Number of iterations is: 1
26: Diff of residual from main - residual from solver: 0
26: Convergence flag is : 0
26: Test passed!
26/26 Test #26: gmres_test_prec .................. Passed 0.39 sec

92% tests passed, 2 tests failed out of 26

Total Test time (real) = 269.61 sec

The following tests FAILED:
13 - sparse_hip (Subprocess aborted)
14 - sparse_serial (Subprocess aborted)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.292/TestAll_2023-04-10_14.47.00/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: caraway05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@cwpearson cwpearson force-pushed the feature/merge-matrix branch from 52c5134 to 7e32d5c Compare April 11, 2023 21:55
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 496
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 101
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 131
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 401
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 362
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 451
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 504
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 305
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 300
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 303
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: 7e32d5c
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 496
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 101
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 131
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 401
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 362
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 451
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 504
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 305
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 300
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 303
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e32d5c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 496 (click to expand)

[ 95%] Built target KokkosBlas2_gemv_perf_test
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 97%] Built target KokkosKernels_wiki_spgemm
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 97%] Built target KokkosKernels_wiki_gauss_seidel
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target sparse_kk_spmv
[ 98%] Built target KokkosKernels_wiki_coarsening
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 99%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1879: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1852: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/all] Error 2
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[100%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.496/TestAll_2023-04-11_18.49.31/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 101 (click to expand)

make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.101/TestAll_2023-04-11_19.48.08/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.101/TestAll_2023-04-11_19.48.08/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.101/TestAll_2023-04-11_19.48.08/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 131 (click to expand)

[ 97%] Linking CXX executable KokkosKernels_wiki_coarsening
Scanning dependencies of target gmres_ex_real_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Built target KokkosKernels_wiki_coarsening
[ 97%] Linking CXX executable sparse_kk_spmv
Scanning dependencies of target team_GMRES
[ 97%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 97%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 97%] Built target sparse_kk_spmv
[ 97%] Built target KokkosBlas2_gemv_perf_test
Scanning dependencies of target static_pivoting
[ 97%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
Scanning dependencies of target xpy
[ 97%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 97%] Built target KokkosKernels_wiki_mis2
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable xpy
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target xpy
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable static_pivoting
[ 99%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
[100%] Linking CXX executable KokkosKernels_blas_threads
[100%] Built target KokkosKernels_blas_threads
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.131/TestAll_2023-04-11_19.48.22/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake23: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 401 (click to expand)

[ 96%] Linking CXX executable sparse_kk_spmv
[ 97%] Linking CXX executable xpy
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target sparse_kk_spmv
[ 98%] Built target xpy
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable static_pivoting
[ 98%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.401/TestAll_2023-04-11_19.48.30/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.401/TestAll_2023-04-11_19.48.30/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake24: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 362 (click to expand)

Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
Scanning dependencies of target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosKernels_wiki_spmv
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Built target KokkosKernels_wiki_spmv
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Built target KokkosKernels_wiki_coarsening
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosBlas2_gemv_perf_test
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.362/TestAll_2023-04-11_19.48.38/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 451 (click to expand)

 .../dense/impl/KokkosBatched_Gemv_Team_Impl.hpp    |  20 +
 .../impl/KokkosBatched_Spmv_TeamVector_Impl.hpp    |  13 +
 .../sparse/impl/KokkosBatched_Spmv_Team_Impl.hpp   |  13 +
 graph/src/KokkosGraph_Triangle.hpp                 |  17 +-
 perf_test/KokkosKernels_perf_test_utilities.hpp    |   2 +
 perf_test/graph/CMakeLists.txt                     |  10 +-
 perf_test/graph/KokkosGraph_multimem_triangle.hpp  | 205 ---------
 perf_test/graph/KokkosGraph_run_triangle.hpp       | 290 ------------
 perf_test/graph/KokkosGraph_triangle.cpp           | 340 +++++++++------
 sparse/impl/KokkosSparse_spgemm_impl_triangle.hpp  |   5 +-
 sparse/impl/KokkosSparse_spiluk_numeric_impl.hpp   | 179 ++++++++
 sparse/impl/KokkosSparse_spiluk_numeric_spec.hpp   |  81 +++-
 sparse/impl/KokkosSparse_spiluk_symbolic_impl.hpp  |  12 +-
 sparse/impl/KokkosSparse_spiluk_symbolic_spec.hpp  |   7 +-
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 +++
 sparse/src/KokkosSparse_IOUtils.hpp                |  29 +-
 sparse/src/KokkosSparse_SortCrs.hpp                | 405 ++++++++++-------
 sparse/src/KokkosSparse_spiluk.hpp                 | 484 ++++++++++++++++++++-
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 ++++++
 .../KokkosSparse_spiluk_numeric_tpl_spec_avail.hpp |   8 +-
 sparse/unit_test/Test_Sparse_SortCrs.hpp           | 381 ++++++++++++----
 sparse/unit_test/Test_Sparse_spiluk.hpp            | 216 +++++++++
 24 files changed, 2107 insertions(+), 965 deletions(-)
 delete mode 100644 perf_test/graph/KokkosGraph_multimem_triangle.hpp
 delete mode 100644 perf_test/graph/KokkosGraph_run_triangle.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  6de87b87030e384d0eb5ae35d8c9b08a741b7b0f Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 48b34def1bf1cd48cfa1d2f155a766e04d36729f Desul atomics: let relocatable device code mode be part of the configuration (#5991)

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1386 run_time=95
intel-19.5.281-Threads-release build_time=859 run_time=106
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001 # 504 (click to expand)

[ 78%] Linking CXX executable KokkosKernels_ode_serial
[ 78%] Built target KokkosKernels_ode_serial
Scanning dependencies of target KokkosBatched_Test_cusolverSp
[ 78%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverSp.dir/KokkosBatched_Test_cusolverSp.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverSp
[ 79%] Built target KokkosBatched_Test_cusolverSp
Scanning dependencies of target KokkosBatched_Test_cusolverDn
[ 79%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverDn
[ 79%] Built target KokkosBatched_Test_cusolverDn
Scanning dependencies of target KokkosBatched_Test_GMRES
[ 79%] Building CXX object perf_test/batched/sparse/GMRES/CMakeFiles/KokkosBatched_Test_GMRES.dir/KokkosBatched_Test_GMRES.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_CG
[ 79%] Built target KokkosBatched_Test_CG
Scanning dependencies of target KokkosBatched_Test_SPMV
[ 80%] Building CXX object perf_test/batched/sparse/SPMV/CMakeFiles/KokkosBatched_Test_SPMV.dir/KokkosBatched_Test_SPMV.cpp.o
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[ 80%] Linking CXX executable KokkosKernels_graph_threads
[ 80%] Linking CXX executable KokkosBatched_Test_SPMV
[ 80%] Built target KokkosBatched_Test_SPMV
[ 80%] Built target KokkosKernels_graph_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 80%] Built target KokkosKernels_batched_gemm_threads
[ 80%] Built target KokkosKernels_batched_gemm_serial
[ 80%] Linking CXX executable KokkosKernels_graph_serial
[ 80%] Built target KokkosKernels_graph_serial
[ 80%] Linking CXX executable KokkosKernels_blas_threads
[ 80%] Built target KokkosKernels_blas_threads
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Linking CXX executable KokkosBatched_Test_GMRES
[ 81%] Built target KokkosBatched_Test_GMRES
[ 82%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 82%] Built target KokkosKernels_batched_dla_threads
[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 82%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.504/TestAll_2023-04-11_20.00.28/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110 # 305 (click to expand)

[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 96%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable xpy
[ 97%] Built target xpy
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable static_pivoting
[ 97%] Built target static_pivoting
[ 97%] Linking CXX executable team_GMRES
[ 97%] Built target team_GMRES
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target sparse_kk_spmv
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1811: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.305/TestAll_2023-04-11_20.00.46/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.305/TestAll_2023-04-11_20.00.46/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3320
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_GCC1020 # 300 (click to expand)

[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosBlas2_gemv_perf_test
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_batched_dla_openmp
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1995: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2023: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.300/TestAll_2023-04-11_20.00.57/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3321
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 303 (click to expand)

25:     **        *       **            
25:       ***  **    *  *   *           
25:        ***      * * *   **          
25:         ***      * *    ***         
25:          **       *      **         
25:            ***  **   *  *  *        
25:             ***     * * *  **       
25:              ***     * *   ***      
25:               **      *     **      
25:                 *** **   * *  *     
25:                  ***    * **  **    
25:                   **     *    **    
25:                     *** **  * * *   
25:                      ***   * ** **  
25:                       **    *   **  
25:                         *****  ** * 
25:                          **   * * * 
25:                            ***** ***
25:                             **  * **
25:                               **** *
25:                                 *** 
25: 
25/26 Test #25: wiki_rcm .........................   Passed    0.35 sec
test 26
      Start 26: gmres_test_prec

26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.303/TestAll_2023-04-11_20.01.03/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
26: Test timeout computed to be: 2500
26: Convergence tolerance is: 1e-10
26: =========================================
26: Verify from main: Ending residual is 3.48957e-14
26: Number of iterations is: 1
26: Diff of residual from main - residual from solver: 0
26: Convergence flag is : 0
26: Test passed!
26/26 Test #26: gmres_test_prec .................. Passed 0.38 sec

92% tests passed, 2 tests failed out of 26

Total Test time (real) = 271.64 sec

The following tests FAILED:
13 - sparse_hip (Subprocess aborted)
14 - sparse_serial (Subprocess aborted)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.303/TestAll_2023-04-11_20.01.03/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: caraway05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 503
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 107
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 137
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 407
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 368
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 457
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 510
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 311
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 306
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 309
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: e396d18
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 503
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 107
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 137
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 407
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 368
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 457
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 510
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 311
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 306
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 309
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e396d18
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 6dc2a6a
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 503 (click to expand)

Checking out Revision 3b1afb530e647527c1d9c3228e00565606ac9050 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 3b1afb530e647527c1d9c3228e00565606ac9050 # timeout=10
Commit message: "Remove libnuma (#6048)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 3b1afb530e647527c1d9c3228e00565606ac9050 # timeout=10
[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins15958557784663623149.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new branch]      release-candidate-4.0.01 -> upstream/release-candidate-4.0.01
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Removing perf_test/graph/KokkosGraph_run_triangle.hpp
Removing perf_test/graph/KokkosGraph_multimem_triangle.hpp
Merge made by the 'recursive' strategy.
 .../impl/KokkosBatched_Gemv_TeamVector_Impl.hpp    |  12 +
 .../dense/impl/KokkosBatched_Gemv_Team_Impl.hpp    |  20 +
 .../impl/KokkosBatched_Spmv_TeamVector_Impl.hpp    |  13 +
 .../sparse/impl/KokkosBatched_Spmv_Team_Impl.hpp   |  13 +
 cm_generate_makefile.bash                          |  20 +-
 cmake/Modules/FindTPLMKL.cmake                     |  30 +-
 graph/src/KokkosGraph_Triangle.hpp                 |  17 +-
 perf_test/KokkosKernels_perf_test_utilities.hpp    |   2 +
 perf_test/graph/CMakeLists.txt                     |  10 +-
 perf_test/graph/KokkosGraph_multimem_triangle.hpp  | 205 ---------
 perf_test/graph/KokkosGraph_run_triangle.hpp       | 290 ------------
 perf_test/graph/KokkosGraph_triangle.cpp           | 340 +++++++++------
 sparse/impl/KokkosSparse_mdf_impl.hpp              | 337 ++++++++------
 sparse/impl/KokkosSparse_spgemm_impl_triangle.hpp  |   5 +-
 sparse/impl/KokkosSparse_spiluk_numeric_impl.hpp   | 179 ++++++++
 sparse/impl/KokkosSparse_spiluk_numeric_spec.hpp   |  81 +++-
 sparse/impl/KokkosSparse_spiluk_symbolic_impl.hpp  |  12 +-
 sparse/impl/KokkosSparse_spiluk_symbolic_spec.hpp  |   7 +-
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 +++
 sparse/src/KokkosSparse_IOUtils.hpp                |  29 +-
 sparse/src/KokkosSparse_SortCrs.hpp                | 405 ++++++++++-------
 sparse/src/KokkosSparse_mdf.hpp                    |  11 +-
 sparse/src/KokkosSparse_spiluk.hpp                 | 484 ++++++++++++++++++++-
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 ++++++
 .../KokkosSparse_spiluk_numeric_tpl_spec_avail.hpp |   8 +-
 sparse/unit_test/Test_Sparse_SortCrs.hpp           | 381 ++++++++++++----
 sparse/unit_test/Test_Sparse_mdf.hpp               |   3 -
 sparse/unit_test/Test_Sparse_spiluk.hpp            | 216 +++++++++
 29 files changed, 2347 insertions(+), 1126 deletions(-)
 delete mode 100644 perf_test/graph/KokkosGraph_multimem_triangle.hpp
 delete mode 100644 perf_test/graph/KokkosGraph_run_triangle.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
***Forced exclusive execution
Job <54757> is submitted to queue .
<>
<>
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 107 (click to expand)

Checking out Revision 3b1afb530e647527c1d9c3228e00565606ac9050 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 3b1afb530e647527c1d9c3228e00565606ac9050 # timeout=10
Commit message: "Remove libnuma (#6048)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 3b1afb530e647527c1d9c3228e00565606ac9050 # timeout=10
[KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10] $ /bin/bash -el /tmp/jenkins1279274488188341845.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new branch]      release-candidate-4.0.01 -> upstream/release-candidate-4.0.01
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Removing perf_test/graph/KokkosGraph_run_triangle.hpp
Removing perf_test/graph/KokkosGraph_multimem_triangle.hpp
Merge made by the 'recursive' strategy.
 .../impl/KokkosBatched_Gemv_TeamVector_Impl.hpp    |  12 +
 .../dense/impl/KokkosBatched_Gemv_Team_Impl.hpp    |  20 +
 .../impl/KokkosBatched_Spmv_TeamVector_Impl.hpp    |  13 +
 .../sparse/impl/KokkosBatched_Spmv_Team_Impl.hpp   |  13 +
 cm_generate_makefile.bash                          |  20 +-
 cmake/Modules/FindTPLMKL.cmake                     |  30 +-
 graph/src/KokkosGraph_Triangle.hpp                 |  17 +-
 perf_test/KokkosKernels_perf_test_utilities.hpp    |   2 +
 perf_test/graph/CMakeLists.txt                     |  10 +-
 perf_test/graph/KokkosGraph_multimem_triangle.hpp  | 205 ---------
 perf_test/graph/KokkosGraph_run_triangle.hpp       | 290 ------------
 perf_test/graph/KokkosGraph_triangle.cpp           | 340 +++++++++------
 sparse/impl/KokkosSparse_mdf_impl.hpp              | 337 ++++++++------
 sparse/impl/KokkosSparse_spgemm_impl_triangle.hpp  |   5 +-
 sparse/impl/KokkosSparse_spiluk_numeric_impl.hpp   | 179 ++++++++
 sparse/impl/KokkosSparse_spiluk_numeric_spec.hpp   |  81 +++-
 sparse/impl/KokkosSparse_spiluk_symbolic_impl.hpp  |  12 +-
 sparse/impl/KokkosSparse_spiluk_symbolic_spec.hpp  |   7 +-
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 +++
 sparse/src/KokkosSparse_IOUtils.hpp                |  29 +-
 sparse/src/KokkosSparse_SortCrs.hpp                | 405 ++++++++++-------
 sparse/src/KokkosSparse_mdf.hpp                    |  11 +-
 sparse/src/KokkosSparse_spiluk.hpp                 | 484 ++++++++++++++++++++-
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 ++++++
 .../KokkosSparse_spiluk_numeric_tpl_spec_avail.hpp |   8 +-
 sparse/unit_test/Test_Sparse_SortCrs.hpp           | 381 ++++++++++++----
 sparse/unit_test/Test_Sparse_mdf.hpp               |   3 -
 sparse/unit_test/Test_Sparse_spiluk.hpp            | 216 +++++++++
 29 files changed, 2347 insertions(+), 1126 deletions(-)
 delete mode 100644 perf_test/graph/KokkosGraph_multimem_triangle.hpp
 delete mode 100644 perf_test/graph/KokkosGraph_run_triangle.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10
***Forced exclusive execution
Job <54758> is submitted to queue .
<>
<>
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 137 (click to expand)

  197 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp: In instantiation of void test_lower_bound() [with T = double; Device = Kokkos::Threads]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:252:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:197:22: error: invalid operands of types double and double to binary operator%
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common.hpp:29,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/backends/Test_Threads_Common.cpp:20:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp: In instantiation of void test_upper_bound() [with T = float; Device = Kokkos::Threads]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:235:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands of types float and float to binary operator%
  186 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp: In instantiation of void test_upper_bound() [with T = double; Device = Kokkos::Threads]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands of types double and double to binary operator%
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/backends/Test_Threads_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 76%] Built target KokkosKernels_batched_sla_threads
[ 76%] Built target KokkosKernels_batched_sla_serial
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 76%] Built target KokkosKernels_batched_gemm_serial
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 76%] Built target KokkosKernels_batched_gemm_threads
[ 77%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 77%] Built target KokkosKernels_batched_dla_threads
[ 77%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 77%] Built target KokkosKernels_batched_dla_serial
[ 77%] Linking CXX executable KokkosKernels_graph_serial
[ 77%] Built target KokkosKernels_graph_serial
[ 77%] Linking CXX executable KokkosKernels_graph_threads
[ 77%] Built target KokkosKernels_graph_threads
[ 78%] Linking CXX executable KokkosKernels_blas_serial
[ 78%] Built target KokkosKernels_blas_serial
[ 78%] Linking CXX executable KokkosKernels_blas_threads
[ 78%] Built target KokkosKernels_blas_threads
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.137/TestAll_2023-04-12_16.06.47/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake17: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
srun: Job step aborted: Waiting up to 32 seconds for job step to finish.
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 407 (click to expand)

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:498:39:   required from void test_view_view() [with AEntry = float; BEntry = double]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:734:33:   required from void test_merge_matrix() [with AEntry = float; BEntry = double]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:756:36:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:29:17: error: unused parameter label [-Werror=unused-parameter]
[ 66%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 66%] Linking CXX executable KokkosBatched_Test_GMRES
[ 66%] Built target KokkosKernels_batched_sla_openmp
[ 66%] Built target KokkosBatched_Test_GMRES
[ 67%] Linking CXX executable graph_triangle
[ 67%] Built target graph_triangle
[ 67%] Linking CXX executable KokkosKernels_graph_openmp
[ 67%] Built target KokkosKernels_graph_openmp
[ 68%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 68%] Built target KokkosKernels_batched_gemm_openmp
[ 69%] Linking CXX executable KokkosKernels_blas_openmp
[ 69%] Built target KokkosKernels_blas_openmp
[ 70%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 70%] Built target KokkosKernels_batched_dla_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.407/TestAll_2023-04-12_16.06.55/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.407/TestAll_2023-04-12_16.06.55/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake23: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 368 (click to expand)

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands of types double and double to binary operator%
  186 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common.hpp:28,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/backends/Test_OpenMP_Common.cpp:20:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp: In instantiation of void test_lower_bound() [with T = double; Device = Kokkos::OpenMP]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:252:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:197:22: error: invalid operands of types double and double to binary operator%
  197 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common.hpp:29,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/backends/Test_OpenMP_Common.cpp:20:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp: In instantiation of void test_upper_bound() [with T = double; Device = Kokkos::OpenMP]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands of types double and double to binary operator%
  186 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 76%] Built target KokkosKernels_batched_sla_openmp
[ 76%] Built target KokkosKernels_batched_sla_serial
[ 76%] Linking CXX executable KokkosKernels_graph_serial
[ 76%] Built target KokkosKernels_graph_serial
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 76%] Built target KokkosKernels_batched_gemm_serial
[ 76%] Linking CXX executable KokkosKernels_graph_openmp
[ 76%] Built target KokkosKernels_graph_openmp
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 76%] Built target KokkosKernels_batched_gemm_openmp
[ 76%] Linking CXX executable KokkosKernels_blas_serial
[ 76%] Built target KokkosKernels_blas_serial
[ 77%] Linking CXX executable KokkosKernels_blas_openmp
[ 77%] Built target KokkosKernels_blas_openmp
[ 78%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 78%] Built target KokkosKernels_batched_dla_serial
[ 78%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 78%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.368/TestAll_2023-04-12_16.07.06/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake24: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 457 (click to expand)

[ 89%] Built target KokkosKernels_ode_threads
[ 89%] Linking CXX executable KokkosKernels_wiki_mis2
[ 89%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 89%] Built target KokkosKernels_wiki_mis2
[ 89%] Built target KokkosKernels_wiki_gauss_seidel
[ 90%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 91%] Linking CXX executable KokkosKernels_wiki_coloring
[ 91%] Built target KokkosKernels_wiki_coarsening
[ 91%] Built target KokkosKernels_wiki_coloring
[ 91%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 91%] Built target KokkosKernels_batched_sla_threads
[ 91%] Linking CXX executable KokkosKernels_graph_threads
[ 91%] Built target KokkosKernels_graph_threads
[ 92%] Linking CXX executable KokkosKernels_blas_threads
[ 92%] Built target KokkosKernels_blas_threads
[ 93%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 93%] Built target KokkosKernels_batched_dla_threads
[ 93%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 93%] Built target KokkosKernels_batched_gemm_threads
[ 94%] Linking CXX executable KokkosKernels_sparse_threads
[ 94%] Built target KokkosKernels_sparse_threads
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-19.5.281-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 intel/compilers/19.5.281

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl --with-options= --with-cuda-options= --no-examples --disable-perftests

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.457/TestAll_2023-04-12_16.07.17/intel/19.5.281/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
intel-19.5.281-Threads-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/19.5.281

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl --with-options= --with-cuda-options= --no-examples --disable-perftests

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.457/TestAll_2023-04-12_16.07.17/intel/19.5.281/Threads-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001 # 510 (click to expand)

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:197:22: error: invalid operands to binary expression ('double' and 'double')
    return T(rand()) % n;
           ~~~~~~~~~ ^ ~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:252:1: note: in instantiation of function template specialization 'test_lower_bound' requested here
EXECUTE_TEST(double, TestExecSpace)
^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:222:5: note: expanded from macro 'EXECUTE_TEST'
    test_lower_bound();                                \
    ^
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/backends/Test_Threads_Common.cpp:20:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common.hpp:29:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands to binary expression ('double' and 'double')
    return T(rand()) % n;
           ~~~~~~~~~ ^ ~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1: note: in instantiation of function template specialization 'test_upper_bound' requested here
EXECUTE_TEST(double, TestExecSpace)
^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:211:5: note: expanded from macro 'EXECUTE_TEST'
    test_upper_bound();                                \
    ^
2 errors generated.
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/backends/Test_Threads_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 76%] Built target KokkosKernels_batched_sla_threads
[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 76%] Built target KokkosKernels_batched_sla_serial
[ 76%] Linking CXX executable KokkosKernels_graph_threads
[ 76%] Built target KokkosKernels_graph_threads
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 76%] Built target KokkosKernels_batched_gemm_threads
[ 76%] Linking CXX executable KokkosKernels_graph_serial
[ 76%] Built target KokkosKernels_graph_serial
[ 76%] Linking CXX executable KokkosKernels_blas_threads
[ 76%] Built target KokkosKernels_blas_threads
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 76%] Built target KokkosKernels_batched_gemm_serial
[ 77%] Linking CXX executable KokkosKernels_blas_serial
[ 77%] Built target KokkosKernels_blas_serial
[ 78%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 78%] Built target KokkosKernels_batched_dla_threads
[ 78%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 78%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.510/TestAll_2023-04-12_16.07.30/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake26: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110 # 311 (click to expand)

/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:734:33:   required from 'void test_merge_matrix() [with AEntry = float; BEntry = double]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:756:36:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/sparse/unit_test/Test_Sparse_MergeMatrix.hpp:29:17: error: unused parameter 'label' [-Werror=unused-parameter]
[ 66%] Built target KokkosBatched_Test_CG
[ 67%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 67%] Built target KokkosKernels_batched_sla_serial
[ 67%] Linking CXX executable KokkosBatched_Test_GMRES
[ 67%] Built target KokkosBatched_Test_GMRES
[ 68%] Linking CXX executable graph_triangle
[ 68%] Built target graph_triangle
[ 69%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 69%] Built target KokkosKernels_batched_gemm_serial
[ 69%] Linking CXX executable KokkosKernels_graph_serial
[ 69%] Built target KokkosKernels_graph_serial
[ 70%] Linking CXX executable KokkosKernels_blas_serial
[ 70%] Built target KokkosKernels_blas_serial
[ 71%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 71%] Built target KokkosKernels_batched_dla_serial
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1811: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.311/TestAll_2023-04-12_16.07.53/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.311/TestAll_2023-04-12_16.07.53/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3332
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_GCC1020 # 306 (click to expand)

/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands of types 'double' and 'double' to binary 'operator%'
  186 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
In file included from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common.hpp:28,
                 from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/backends/Test_Serial_Common.cpp:20:
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp: In instantiation of 'void test_lower_bound() [with T = double; Device = Kokkos::Serial]':
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:252:1:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:197:22: error: invalid operands of types 'double' and 'double' to binary 'operator%'
  197 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
In file included from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common.hpp:29,
                 from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/backends/Test_Serial_Common.cpp:20:
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp: In instantiation of 'void test_upper_bound() [with T = double; Device = Kokkos::Serial]':
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands of types 'double' and 'double' to binary 'operator%'
  186 |     return T(rand()) % n;
      |            ~~~~~~~~~~^~~
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/build.make:93: common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1659: common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/build.make:93: common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1687: common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 76%] Built target KokkosKernels_batched_sla_openmp
[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 76%] Built target KokkosKernels_batched_sla_serial
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 76%] Built target KokkosKernels_batched_gemm_serial
[ 76%] Linking CXX executable KokkosKernels_graph_serial
[ 76%] Built target KokkosKernels_graph_serial
[ 76%] Linking CXX executable KokkosKernels_graph_openmp
[ 76%] Built target KokkosKernels_graph_openmp
[ 76%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 76%] Built target KokkosKernels_batched_gemm_openmp
[ 76%] Linking CXX executable KokkosKernels_blas_serial
[ 76%] Built target KokkosKernels_blas_serial
[ 77%] Linking CXX executable KokkosKernels_blas_openmp
[ 77%] Built target KokkosKernels_blas_openmp
[ 78%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 78%] Built target KokkosKernels_batched_dla_serial
[ 78%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 78%] Built target KokkosKernels_batched_dla_openmp
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.306/TestAll_2023-04-12_16.08.00/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3333
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 309 (click to expand)

In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common.hpp:28:
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:197:22: error: invalid operands to binary expression ('double' and 'double')
    return T(rand()) % n;
           ~~~~~~~~~ ^ ~
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:252:1: note: in instantiation of function template specialization 'test_lower_bound' requested here
EXECUTE_TEST(double, TestExecSpace)
^
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:222:5: note: expanded from macro 'EXECUTE_TEST'
    test_lower_bound();                                \
    ^
In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/backends/Test_HIP_Common.cpp:20:
In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common.hpp:29:
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:186:22: error: invalid operands to binary expression ('double' and 'double')
    return T(rand()) % n;
           ~~~~~~~~~ ^ ~
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:241:1: note: in instantiation of function template specialization 'test_upper_bound' requested here
EXECUTE_TEST(double, TestExecSpace)
^
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:211:5: note: expanded from macro 'EXECUTE_TEST'
    test_upper_bound();                                \
    ^
2 errors generated when compiling for gfx908.
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_hip.dir/build.make:95: common/unit_test/CMakeFiles/KokkosKernels_common_hip.dir/backends/Test_HIP_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1689: common/unit_test/CMakeFiles/KokkosKernels_common_hip.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 76%] Built target KokkosKernels_batched_sla_serial
[ 76%] Linking CXX executable KokkosKernels_blas_serial
[ 76%] Linking CXX executable KokkosKernels_graph_serial
[ 76%] Built target KokkosKernels_graph_serial
[ 76%] Built target KokkosKernels_blas_serial
[ 77%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 77%] Built target KokkosKernels_batched_dla_serial
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 77%] Built target KokkosKernels_batched_gemm_serial
[ 78%] Linking CXX executable KokkosKernels_blas_hip
[ 78%] Linking CXX executable KokkosKernels_batched_dla_hip
[ 78%] Built target KokkosKernels_blas_hip
[ 78%] Built target KokkosKernels_batched_dla_hip
[ 78%] Linking CXX executable KokkosKernels_graph_hip
[ 78%] Built target KokkosKernels_graph_hip
[ 78%] Linking CXX executable KokkosKernels_batched_sla_hip
[ 78%] Built target KokkosKernels_batched_sla_hip
[ 78%] Linking CXX executable KokkosKernels_batched_gemm_hip
[ 78%] Built target KokkosKernels_batched_gemm_hip
make: *** [Makefile:160: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.309/TestAll_2023-04-12_16.09.29/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: caraway05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@cwpearson cwpearson force-pushed the feature/merge-matrix branch from e396d18 to d258b3c Compare April 13, 2023 14:42
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 511
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 114
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 144
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 414
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 375
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 464
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 517
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 318
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 313
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 316
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: d258b3c
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 511
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 114
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 144
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 414
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 375
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 464
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 517
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 318
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 313
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 316
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d258b3c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8154037
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 511 (click to expand)

[ 96%] Built target KokkosKernels_wiki_spgemm
[ 97%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 97%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 97%] Built target KokkosBlas2_gemv_perf_test
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 97%] Built target KokkosKernels_wiki_gauss_seidel
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Built target KokkosKernels_wiki_rcm
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target KokkosKernels_wiki_coarsening
[ 98%] Built target sparse_kk_spmv
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[100%] Linking CXX executable static_pivoting
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target static_pivoting
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1879: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1852: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/all] Error 2
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[100%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.511/TestAll_2023-04-13_19.53.09/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 114 (click to expand)

make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.114/TestAll_2023-04-13_20.35.09/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.114/TestAll_2023-04-13_20.35.09/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.114/TestAll_2023-04-13_20.35.09/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 144 (click to expand)

[ 97%] Built target KokkosBlas2_gemv_perf_test
[ 97%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 97%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target team_GMRES
[ 97%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
Scanning dependencies of target gmres_ex_real_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
Scanning dependencies of target static_pivoting
[ 97%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 97%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target xpy
[ 97%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable gmres_ex_real_A
[ 98%] Linking CXX executable xpy
[ 98%] Built target gmres_ex_real_A
[ 98%] Built target xpy
[ 99%] Linking CXX executable static_pivoting
[ 99%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
[100%] Linking CXX executable KokkosKernels_blas_threads
[100%] Built target KokkosKernels_blas_threads
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.144/TestAll_2023-04-13_20.35.22/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake07: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
srun: Job step aborted: Waiting up to 32 seconds for job step to finish.
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 414 (click to expand)

[ 96%] Linking CXX executable sparse_kk_spmv
[ 96%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable xpy
[ 98%] Built target xpy
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable static_pivoting
[ 98%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.414/TestAll_2023-04-13_20.35.30/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.414/TestAll_2023-04-13_20.35.30/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake26: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 375 (click to expand)

Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_spmv
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Built target KokkosKernels_wiki_spmv
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 99%] Linking CXX executable xpy
[ 99%] Built target KokkosBlas2_gemv_perf_test
[ 99%] Linking CXX executable gmres_ex_real_A
[ 99%] Built target KokkosKernels_gmres_test_prec
[ 99%] Built target xpy
[ 99%] Built target gmres_ex_real_A
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.375/TestAll_2023-04-13_20.35.42/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake21: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 464 (click to expand)

 perf_test/graph/KokkosGraph_run_triangle.hpp       | 290 ------------
 perf_test/graph/KokkosGraph_triangle.cpp           | 340 +++++++++------
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 sparse/impl/KokkosSparse_mdf_impl.hpp              | 337 ++++++++------
 sparse/impl/KokkosSparse_spgemm_impl_triangle.hpp  |   5 +-
 sparse/impl/KokkosSparse_spiluk_numeric_impl.hpp   | 179 ++++++++
 sparse/impl/KokkosSparse_spiluk_numeric_spec.hpp   |  81 +++-
 sparse/impl/KokkosSparse_spiluk_symbolic_impl.hpp  |  12 +-
 sparse/impl/KokkosSparse_spiluk_symbolic_spec.hpp  |   7 +-
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 +++
 sparse/src/KokkosSparse_IOUtils.hpp                |  29 +-
 sparse/src/KokkosSparse_SortCrs.hpp                | 405 ++++++++++-------
 sparse/src/KokkosSparse_mdf.hpp                    |  11 +-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 sparse/src/KokkosSparse_spiluk.hpp                 | 484 ++++++++++++++++++++-
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 ++++++
 .../KokkosSparse_spiluk_numeric_tpl_spec_avail.hpp |   8 +-
 sparse/unit_test/Test_Sparse_SortCrs.hpp           | 381 ++++++++++++----
 sparse/unit_test/Test_Sparse_mdf.hpp               |   3 -
 sparse/unit_test/Test_Sparse_spiluk.hpp            | 216 +++++++++
 38 files changed, 2641 insertions(+), 1153 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 delete mode 100644 perf_test/graph/KokkosGraph_multimem_triangle.hpp
 delete mode 100644 perf_test/graph/KokkosGraph_run_triangle.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  8fb3f35df230ca8b8eb0deffcbd9536e44935612 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 0d96f88daf7b6b748c819cdd6d063d2174acbfed OpenMPTarget: Changes to Makefile.kokkos (#6053)

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1412 run_time=95
intel-19.5.281-Threads-release build_time=855 run_time=106
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001 # 517 (click to expand)

[ 78%] Linking CXX executable KokkosKernels_ode_serial
[ 78%] Built target KokkosKernels_ode_serial
Scanning dependencies of target KokkosBatched_Test_cusolverSp
[ 78%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverSp.dir/KokkosBatched_Test_cusolverSp.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverSp
[ 79%] Built target KokkosBatched_Test_cusolverSp
Scanning dependencies of target KokkosBatched_Test_cusolverDn
[ 79%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverDn
[ 79%] Built target KokkosBatched_Test_cusolverDn
Scanning dependencies of target KokkosBatched_Test_GMRES
[ 79%] Building CXX object perf_test/batched/sparse/GMRES/CMakeFiles/KokkosBatched_Test_GMRES.dir/KokkosBatched_Test_GMRES.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_CG
[ 79%] Built target KokkosBatched_Test_CG
Scanning dependencies of target KokkosBatched_Test_SPMV
[ 80%] Building CXX object perf_test/batched/sparse/SPMV/CMakeFiles/KokkosBatched_Test_SPMV.dir/KokkosBatched_Test_SPMV.cpp.o
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 80%] Linking CXX executable KokkosBatched_Test_SPMV
[ 80%] Built target KokkosBatched_Test_SPMV
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[ 80%] Linking CXX executable KokkosKernels_graph_threads
[ 80%] Built target KokkosKernels_graph_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 80%] Built target KokkosKernels_batched_gemm_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 80%] Linking CXX executable KokkosKernels_graph_serial
[ 80%] Built target KokkosKernels_batched_gemm_serial
[ 80%] Built target KokkosKernels_graph_serial
[ 80%] Linking CXX executable KokkosKernels_blas_threads
[ 80%] Built target KokkosKernels_blas_threads
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Linking CXX executable KokkosBatched_Test_GMRES
[ 81%] Built target KokkosBatched_Test_GMRES
[ 82%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 82%] Built target KokkosKernels_batched_dla_threads
[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 82%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.517/TestAll_2023-04-13_20.47.59/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake21: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110 # 318 (click to expand)

[ 96%] Built target KokkosKernels_gmres_test_prec
[ 96%] Built target KokkosKernels_batched_gemm_serial
[ 96%] Linking CXX executable gmres_ex_real_A
[ 97%] Linking CXX executable xpy
[ 97%] Built target gmres_ex_real_A
[ 97%] Built target xpy
[ 97%] Linking CXX executable static_pivoting
[ 97%] Built target static_pivoting
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target sparse_kk_spmv
[ 98%] Linking CXX executable team_GMRES
[ 98%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1811: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.318/TestAll_2023-04-13_20.50.18/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.318/TestAll_2023-04-13_20.50.18/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3349
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_GCC1020 # 313 (click to expand)

[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 98%] Built target KokkosKernels_batched_dla_openmp
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosBlas2_gemv_perf_test
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1995: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2023: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.313/TestAll_2023-04-13_20.50.18/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3348
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 316 (click to expand)

25:     **        *       **            
25:       ***  **    *  *   *           
25:        ***      * * *   **          
25:         ***      * *    ***         
25:          **       *      **         
25:            ***  **   *  *  *        
25:             ***     * * *  **       
25:              ***     * *   ***      
25:               **      *     **      
25:                 *** **   * *  *     
25:                  ***    * **  **    
25:                   **     *    **    
25:                     *** **  * * *   
25:                      ***   * ** **  
25:                       **    *   **  
25:                         *****  ** * 
25:                          **   * * * 
25:                            ***** ***
25:                             **  * **
25:                               **** *
25:                                 *** 
25: 
25/26 Test #25: wiki_rcm .........................   Passed    0.36 sec
test 26
      Start 26: gmres_test_prec

26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.316/TestAll_2023-04-13_20.50.01/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
26: Test timeout computed to be: 2500
26: Convergence tolerance is: 1e-10
26: =========================================
26: Verify from main: Ending residual is 3.48957e-14
26: Number of iterations is: 1
26: Diff of residual from main - residual from solver: 0
26: Convergence flag is : 0
26: Test passed!
26/26 Test #26: gmres_test_prec .................. Passed 0.45 sec

92% tests passed, 2 tests failed out of 26

Total Test time (real) = 272.91 sec

The following tests FAILED:
13 - sparse_hip (Subprocess aborted)
14 - sparse_serial (Subprocess aborted)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.316/TestAll_2023-04-13_20.50.01/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: caraway05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@cwpearson cwpearson force-pushed the feature/merge-matrix branch 2 times, most recently from b5ae090 to bb68066 Compare April 14, 2023 19:57
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight to start: Total Wait = 3603

  • Other jobs have been previously started - We must stop them...

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 521
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 121
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 421
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 382
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 471
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 524
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 325
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 320
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 323
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: ebb75c8
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 521
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 121
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 151
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 421
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 382
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 471
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 524
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 325
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 320
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 323
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ebb75c8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 521 (click to expand)

[ 95%] Built target KokkosBlas2_gemv_perf_test
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 97%] Built target KokkosKernels_wiki_spgemm
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_rcm
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Built target KokkosKernels_wiki_gauss_seidel
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_coarsening
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[100%] Linking CXX executable static_pivoting
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target static_pivoting
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1879: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1852: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/all] Error 2
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[100%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.521/TestAll_2023-04-17_12.47.19/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 121 (click to expand)

make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.121/TestAll_2023-04-17_12.47.26/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.121/TestAll_2023-04-17_12.47.26/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.121/TestAll_2023-04-17_12.47.26/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 151 (click to expand)

[ 97%] Built target KokkosBlas2_gemv_perf_test
[ 97%] Built target KokkosBlas3_gemm_perf_test
Scanning dependencies of target team_GMRES
[ 97%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
Scanning dependencies of target gmres_ex_real_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 97%] Built target KokkosKernels_wiki_coarsening
[ 97%] Linking CXX executable sparse_kk_spmv
Scanning dependencies of target static_pivoting
[ 97%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 97%] Built target sparse_kk_spmv
Scanning dependencies of target xpy
[ 97%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 97%] Built target KokkosKernels_wiki_mis2
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable xpy
[ 98%] Built target xpy
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable static_pivoting
[ 99%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
[100%] Linking CXX executable KokkosKernels_blas_threads
[100%] Built target KokkosKernels_blas_threads
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.151/TestAll_2023-04-17_12.48.50/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake21: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 421 (click to expand)

[ 97%] Linking CXX executable xpy
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target xpy
[ 97%] Built target sparse_kk_spmv
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable static_pivoting
[ 98%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.421/TestAll_2023-04-17_12.48.50/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.421/TestAll_2023-04-17_12.48.50/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake17: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 382 (click to expand)

Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosBlas2_gemv_perf_test
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable sparse_kk_spmv
[100%] Linking CXX executable static_pivoting
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable team_GMRES
[100%] Built target static_pivoting
[100%] Built target team_GMRES
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.382/TestAll_2023-04-17_12.48.56/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake23: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 471 (click to expand)

 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 ++-
 sparse/impl/KokkosSparse_spgemm_impl_triangle.hpp  |   5 +-
 sparse/impl/KokkosSparse_spiluk_numeric_impl.hpp   | 179 ++++++++
 sparse/impl/KokkosSparse_spiluk_numeric_spec.hpp   |  81 +++-
 sparse/impl/KokkosSparse_spiluk_symbolic_impl.hpp  |  12 +-
 sparse/impl/KokkosSparse_spiluk_symbolic_spec.hpp  |   7 +-
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 +++
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_IOUtils.hpp                |  29 +-
 sparse/src/KokkosSparse_SortCrs.hpp                | 405 ++++++++++-------
 sparse/src/KokkosSparse_mdf.hpp                    |  11 +-
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 sparse/src/KokkosSparse_spiluk.hpp                 | 484 ++++++++++++++++++++-
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 ++++++
 .../KokkosSparse_spiluk_numeric_tpl_spec_avail.hpp |   8 +-
 sparse/unit_test/Test_Sparse_SortCrs.hpp           | 381 ++++++++++++----
 sparse/unit_test/Test_Sparse_mdf.hpp               |   3 -
 sparse/unit_test/Test_Sparse_spiluk.hpp            | 216 +++++++++
 test_common/KokkosKernels_TestUtils.hpp            | 111 +++--
 78 files changed, 4362 insertions(+), 3380 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
 delete mode 100644 perf_test/graph/KokkosGraph_multimem_triangle.hpp
 delete mode 100644 perf_test/graph/KokkosGraph_run_triangle.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  26d70de7f2122e872fd78b2aca09908e65816a05 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 9004274b4d79d771f0d50386fb4f8d6907ae5b43 Merge pull request #6056 from masterleinad/partially_reverse_5504

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1406 run_time=95
intel-19.5.281-Threads-release build_time=861 run_time=107
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001 # 524 (click to expand)

[ 78%] Linking CXX executable KokkosKernels_ode_serial
[ 78%] Built target KokkosKernels_ode_serial
Scanning dependencies of target KokkosBatched_Test_cusolverSp
[ 78%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverSp.dir/KokkosBatched_Test_cusolverSp.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverSp
[ 79%] Built target KokkosBatched_Test_cusolverSp
Scanning dependencies of target KokkosBatched_Test_cusolverDn
[ 79%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverDn
[ 79%] Built target KokkosBatched_Test_cusolverDn
Scanning dependencies of target KokkosBatched_Test_GMRES
[ 79%] Building CXX object perf_test/batched/sparse/GMRES/CMakeFiles/KokkosBatched_Test_GMRES.dir/KokkosBatched_Test_GMRES.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_CG
[ 79%] Built target KokkosBatched_Test_CG
Scanning dependencies of target KokkosBatched_Test_SPMV
[ 80%] Building CXX object perf_test/batched/sparse/SPMV/CMakeFiles/KokkosBatched_Test_SPMV.dir/KokkosBatched_Test_SPMV.cpp.o
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[ 80%] Linking CXX executable KokkosBatched_Test_SPMV
[ 80%] Linking CXX executable KokkosKernels_graph_threads
[ 80%] Built target KokkosBatched_Test_SPMV
[ 80%] Built target KokkosKernels_graph_threads
[ 80%] Linking CXX executable KokkosKernels_blas_threads
[ 80%] Built target KokkosKernels_blas_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 80%] Built target KokkosKernels_batched_gemm_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_batched_gemm_serial
[ 81%] Linking CXX executable KokkosKernels_graph_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_graph_serial
[ 81%] Linking CXX executable KokkosBatched_Test_GMRES
[ 81%] Built target KokkosBatched_Test_GMRES
[ 82%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 82%] Built target KokkosKernels_batched_dla_threads
[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 82%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.524/TestAll_2023-04-17_12.49.15/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110 # 325 (click to expand)

[ 96%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable xpy
[ 97%] Built target xpy
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable static_pivoting
[ 97%] Built target static_pivoting
[ 97%] Linking CXX executable team_GMRES
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target team_GMRES
[ 98%] Built target sparse_kk_spmv
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1811: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.325/TestAll_2023-04-17_12.51.20/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.325/TestAll_2023-04-17_12.51.20/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3365
salloc: Job allocation 3365 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_GCC1020 # 320 (click to expand)

[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosBlas2_gemv_perf_test
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1995: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2023: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.320/TestAll_2023-04-17_12.51.20/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3366
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 323 (click to expand)

25:     **        *       **            
25:       ***  **    *  *   *           
25:        ***      * * *   **          
25:         ***      * *    ***         
25:          **       *      **         
25:            ***  **   *  *  *        
25:             ***     * * *  **       
25:              ***     * *   ***      
25:               **      *     **      
25:                 *** **   * *  *     
25:                  ***    * **  **    
25:                   **     *    **    
25:                     *** **  * * *   
25:                      ***   * ** **  
25:                       **    *   **  
25:                         *****  ** * 
25:                          **   * * * 
25:                            ***** ***
25:                             **  * **
25:                               **** *
25:                                 *** 
25: 
25/26 Test #25: wiki_rcm .........................   Passed    0.35 sec
test 26
      Start 26: gmres_test_prec

26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.323/TestAll_2023-04-17_12.52.35/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
26: Test timeout computed to be: 2500
26: Convergence tolerance is: 1e-10
26: =========================================
26: Verify from main: Ending residual is 3.48957e-14
26: Number of iterations is: 1
26: Diff of residual from main - residual from solver: 0
26: Convergence flag is : 0
26: Test passed!
26/26 Test #26: gmres_test_prec .................. Passed 0.39 sec

92% tests passed, 2 tests failed out of 26

Total Test time (real) = 270.03 sec

The following tests FAILED:
13 - sparse_hip (Subprocess aborted)
14 - sparse_serial (Subprocess aborted)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.323/TestAll_2023-04-17_12.52.35/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: caraway05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 528
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 156
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 426
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 387
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 476
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 529
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 330
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 325
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 328
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: 8ec35b8
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 528
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 126
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 156
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 426
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 387
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 476
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 529
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 330
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 325
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 328
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/merge-matrix
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ec35b8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 507c29f
PR_LABELS
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 528 (click to expand)

[ 95%] Built target KokkosBlas2_gemv_perf_test
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 97%] Built target KokkosKernels_wiki_spgemm
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_gauss_seidel
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_coarsening
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target sparse_kk_spmv
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 99%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1879: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/build.make:90: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1852: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/all] Error 2
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[100%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.528/TestAll_2023-04-18_11.07.34/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 126 (click to expand)

make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.126/TestAll_2023-04-18_11.07.38/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.126/TestAll_2023-04-18_11.07.38/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.126/TestAll_2023-04-18_11.07.38/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 156 (click to expand)

Scanning dependencies of target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Built target KokkosBlas3_gemm_perf_test
Scanning dependencies of target team_GMRES
[ 97%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 97%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 97%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 97%] Built target KokkosKernels_wiki_mis2
[ 97%] Linking CXX executable sparse_kk_spmv
Scanning dependencies of target xpy
[ 97%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable gmres_ex_real_A
[ 98%] Linking CXX executable xpy
[ 98%] Built target gmres_ex_real_A
[ 98%] Built target xpy
[ 99%] Linking CXX executable static_pivoting
[ 99%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
[100%] Linking CXX executable KokkosKernels_blas_threads
[100%] Built target KokkosKernels_blas_threads
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.156/TestAll_2023-04-18_11.08.53/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake22: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 426 (click to expand)

[ 96%] Linking CXX executable sparse_kk_spmv
[ 96%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable xpy
[ 97%] Built target xpy
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable static_pivoting
[ 98%] Built target static_pivoting
[ 99%] Linking CXX executable team_GMRES
[ 99%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.426/TestAll_2023-04-18_11.08.53/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.426/TestAll_2023-04-18_11.08.53/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake17: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 387 (click to expand)

[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Built target KokkosKernels_wiki_spmv
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosBlas2_gemv_perf_test
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[ 99%] Linking CXX executable sparse_kk_spmv
[ 99%] Built target sparse_kk_spmv
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.387/TestAll_2023-04-18_11.08.53/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 476 (click to expand)

 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 ++-
 sparse/impl/KokkosSparse_spgemm_impl_triangle.hpp  |   5 +-
 sparse/impl/KokkosSparse_spiluk_numeric_impl.hpp   | 179 ++++++++
 sparse/impl/KokkosSparse_spiluk_numeric_spec.hpp   |  81 +++-
 sparse/impl/KokkosSparse_spiluk_symbolic_impl.hpp  |  12 +-
 sparse/impl/KokkosSparse_spiluk_symbolic_spec.hpp  |   7 +-
 sparse/impl/KokkosSparse_spmv_team_impl.hpp        | 134 ++++++
 sparse/impl/KokkosSparse_spmv_team_spec.hpp        |  68 +++
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_IOUtils.hpp                |  29 +-
 sparse/src/KokkosSparse_SortCrs.hpp                | 405 ++++++++++-------
 sparse/src/KokkosSparse_mdf.hpp                    |  11 +-
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 sparse/src/KokkosSparse_spiluk.hpp                 | 484 ++++++++++++++++++++-
 sparse/src/KokkosSparse_spmv_team.hpp              | 141 ++++++
 .../KokkosSparse_spiluk_numeric_tpl_spec_avail.hpp |   8 +-
 sparse/unit_test/Test_Sparse_SortCrs.hpp           | 381 ++++++++++++----
 sparse/unit_test/Test_Sparse_mdf.hpp               |   3 -
 sparse/unit_test/Test_Sparse_spiluk.hpp            | 216 +++++++++
 test_common/KokkosKernels_TestUtils.hpp            | 111 +++--
 81 files changed, 4422 insertions(+), 3397 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
 delete mode 100644 perf_test/graph/KokkosGraph_multimem_triangle.hpp
 delete mode 100644 perf_test/graph/KokkosGraph_run_triangle.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_impl.hpp
 create mode 100644 sparse/impl/KokkosSparse_spmv_team_spec.hpp
 create mode 100644 sparse/src/KokkosSparse_spmv_team.hpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  98558a064705941fefb5a7409a373017226d38c1 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 9004274b4d79d771f0d50386fb4f8d6907ae5b43 Merge pull request #6056 from masterleinad/partially_reverse_5504

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1388 run_time=95
intel-19.5.281-Threads-release build_time=847 run_time=106
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001 # 529 (click to expand)

[ 78%] Linking CXX executable KokkosKernels_ode_serial
[ 78%] Built target KokkosKernels_ode_serial
Scanning dependencies of target KokkosBatched_Test_cusolverSp
[ 78%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverSp.dir/KokkosBatched_Test_cusolverSp.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverSp
[ 79%] Built target KokkosBatched_Test_cusolverSp
Scanning dependencies of target KokkosBatched_Test_cusolverDn
[ 79%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_cusolverDn
[ 79%] Built target KokkosBatched_Test_cusolverDn
Scanning dependencies of target KokkosBatched_Test_GMRES
[ 79%] Building CXX object perf_test/batched/sparse/GMRES/CMakeFiles/KokkosBatched_Test_GMRES.dir/KokkosBatched_Test_GMRES.cpp.o
[ 79%] Linking CXX executable KokkosBatched_Test_CG
[ 79%] Built target KokkosBatched_Test_CG
Scanning dependencies of target KokkosBatched_Test_SPMV
[ 80%] Building CXX object perf_test/batched/sparse/SPMV/CMakeFiles/KokkosBatched_Test_SPMV.dir/KokkosBatched_Test_SPMV.cpp.o
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 80%] Linking CXX executable KokkosBatched_Test_SPMV
[ 80%] Built target KokkosBatched_Test_SPMV
1 error generated.
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[ 80%] Linking CXX executable KokkosKernels_graph_threads
[ 80%] Built target KokkosKernels_graph_threads
[ 80%] Linking CXX executable KokkosKernels_blas_threads
[ 80%] Built target KokkosKernels_blas_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 80%] Built target KokkosKernels_batched_gemm_threads
[ 80%] Built target KokkosKernels_batched_gemm_serial
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Linking CXX executable KokkosKernels_graph_serial
[ 81%] Built target KokkosKernels_graph_serial
[ 81%] Linking CXX executable KokkosBatched_Test_GMRES
[ 81%] Built target KokkosBatched_Test_GMRES
[ 82%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 82%] Built target KokkosKernels_batched_dla_threads
[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 82%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.529/TestAll_2023-04-18_11.09.13/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110 # 330 (click to expand)

[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 96%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable xpy
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target xpy
[ 97%] Built target gmres_ex_real_A
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target sparse_kk_spmv
[ 98%] Linking CXX executable static_pivoting
[ 98%] Built target static_pivoting
[ 98%] Linking CXX executable team_GMRES
[ 98%] Built target team_GMRES
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosBlas3_perf_test
[ 99%] Built target KokkosBlas3_perf_test
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1811: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.330/TestAll_2023-04-18_11.10.15/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.330/TestAll_2023-04-18_11.10.15/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3376
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_A64FX_GCC1020 # 325 (click to expand)

[ 98%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 98%] Built target KokkosKernels_batched_dla_serial
Scanning dependencies of target gmres_ex_real_A
[ 98%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target team_GMRES
[ 98%] Building CXX object example/batched_solve/CMakeFiles/team_GMRES.dir/team_GMRES.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target static_pivoting
[ 98%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
[ 98%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 98%] Built target KokkosBlas2_gemv_perf_test
Scanning dependencies of target xpy
[ 98%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coloring
[ 98%] Built target KokkosKernels_wiki_coloring
[ 98%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 98%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable gmres_ex_real_A
[ 98%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable xpy
[ 99%] Built target xpy
[100%] Linking CXX executable static_pivoting
[100%] Built target static_pivoting
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
[100%] Linking CXX executable team_GMRES
[100%] Built target team_GMRES
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosBlas3_gemm_perf_test
[100%] Built target KokkosBlas3_gemm_perf_test
[100%] Linking CXX executable KokkosBlas3_perf_test
[100%] Built target KokkosBlas3_perf_test
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1995: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/build.make:93: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2023: sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.325/TestAll_2023-04-18_11.10.15/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3377
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 328 (click to expand)

25:     **        *       **            
25:       ***  **    *  *   *           
25:        ***      * * *   **          
25:         ***      * *    ***         
25:          **       *      **         
25:            ***  **   *  *  *        
25:             ***     * * *  **       
25:              ***     * *   ***      
25:               **      *     **      
25:                 *** **   * *  *     
25:                  ***    * **  **    
25:                   **     *    **    
25:                     *** **  * * *   
25:                      ***   * ** **  
25:                       **    *   **  
25:                         *****  ** * 
25:                          **   * * * 
25:                            ***** ***
25:                             **  * **
25:                               **** *
25:                                 *** 
25: 
25/26 Test #25: wiki_rcm .........................   Passed    0.34 sec
test 26
      Start 26: gmres_test_prec

26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.328/TestAll_2023-04-18_11.11.30/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
26: Test timeout computed to be: 2500
26: Convergence tolerance is: 1e-10
26: =========================================
26: Verify from main: Ending residual is 3.48957e-14
26: Number of iterations is: 1
26: Diff of residual from main - residual from solver: 0
26: Convergence flag is : 0
26: Test passed!
26/26 Test #26: gmres_test_prec .................. Passed 0.37 sec

92% tests passed, 2 tests failed out of 26

Total Test time (real) = 265.75 sec

The following tests FAILED:
13 - sparse_hip (Subprocess aborted)
14 - sparse_serial (Subprocess aborted)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.328/TestAll_2023-04-18_11.11.30/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: caraway05: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@cwpearson cwpearson force-pushed the feature/merge-matrix branch from 87945c5 to 3bb332b Compare April 19, 2023 17:31
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

4 similar comments
@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

Adds an abstraction over the diagonals merge-matrix M of two sorted views A and B,
where M[i,] = A[i] > B[j].
A diagonal of such a matrix is the entries running from the bottom-left to the
top-right (from large I / small J to small I / large J).
MergeMatrixDiagonal presents a 1D-View-Like interface into a specific diagonal
of the merge matrix of two views A and B, allowing the caller to retrieve
the value of entries along the diagonal.
@cwpearson cwpearson force-pushed the feature/merge-matrix branch from dff93a1 to 2391ae0 Compare July 11, 2023 18:39
@cwpearson cwpearson added AT: RETEST Have this PR retested. and removed AT: STALE labels Jul 11, 2023
@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job KokkosKernels_PullRequest_GCC1020_Light_LayoutRight to start: Total Wait = 3603

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Jul 12, 2023
@cwpearson cwpearson added the AT: RETEST Have this PR retested. label Jul 12, 2023
@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 724
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 315
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 338
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 606
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 566
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 654
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 707
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 508
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 503
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 503
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 25
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/merge-matrix
  • SHA: 2391ae0
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 724
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 315
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 338
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 606
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 566
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 654
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 707
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 508
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 503
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 503
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 25
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2391ae0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1780
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Jul 12, 2023
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...

1 similar comment
@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me, thanks @cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ lucbv ]!

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Pull Request MUST BE MERGED MANUALLY BY Project Team - This Repo does not support Automerge

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants