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

New performance test for par_ilut, ginkgo::par_ilut, and spill #1799

Merged
merged 25 commits into from
May 5, 2023

Conversation

jgfouca
Copy link
Contributor

@jgfouca jgfouca commented Apr 18, 2023

Change list:

  1. Adds a new perf_test/sparse test, spare_par_ilut that can test performance of our par_ilut, ginkgo's par_ilut, and our spiluk.
  2. Adds ability to interface KK sparse perf tests with Ginkgo via the CMake option Ginkgo_DIR
  3. Couple other minor cleanups.

Perf test results:

All tests were done with a randomly generated NxN sparse matrix that is 1% nnz and bandwidth=5%, taking the best time out of 4 runs.

OMP:

It looks like our OMP performance is very similar to ginkgo. Our impl seems to do comparatively better for lower thread counts and high row counts. The big surprise here is spiluk, which appears to show no speedup as threads are increased. Spiluk is much faster for low thread counts but, since it doesn't improve with more threads, gets passed by the other two algorithms as threads are increased.

CUDA:

Testing on CUDA was problematic because, for relatively small row counts 10000-20000, par_ilut and ginkgo finish very quickly, but when row counts are increased, ginkgo quickly begins to fail with out-of-memory errors. When ginkgo had enough memory, it was 2-3x times faster than our par_ilut, but ours was able to run up to 40000 rows whereas ginkgo could not run more than 20000.

Plots (lower is better for all plots):
omp_thread_scaling
omp_thread_scaling_logy
omp_row_scaling
omp_row_scaling_logy
cuda_row_scaling
cuda_row_scaling_logy

After consulting with @brian-kelley and @vqd8a , my nnz and bandwidth were too high to be representative of common use cases. I changed nnz to be hardcoded to 50 (no longer scales with N) and bandwidth to 2*sqrt(N) (regular square grid). With those new values, I redid all the above tests:

omp_thread_scaling

omp_thread_scaling_logy

omp_row_scaling

omp_row_scaling_logy

cuda_row_scaling

cuda_row_scaling_logy

Takeaways: on OMP, ginkgo and par_ilut performance is very similar, with par_ilut being a bit faster for lower thread counts and ginkgo scaling a bit better as threads increase. Spiluk does not improve, numeric actually gets worse, as threads increase. Spiluk also seems to scale a bit worse as rows increase.

on CUDA, ginkgo is very fast but runs out of memory much sooner.

@jgfouca
Copy link
Contributor Author

jgfouca commented Apr 18, 2023

@vqd8a , @brian-kelley , a couple items came up when we discussed this during our meeting.

First, the performance of spiluk was surprising. In the thread scaling test, its performance did not improve at all as threads increased. Is that expected? I should note that I include the symbolic phase in the spiluk timing; Siva said that could be the issue and should probably be timed separately.

Second, there were questions about the parameters of the randomly generated matrix. I defaulted the density to be 1% and bandwidth to be 5x the density. For example, for an NxN matrix, each row would have 10 entries and bandwidth would be 50. I was somewhat guessing at these values based on what I've seen in other tests, so I don't know if these parameters are what we should be 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' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 530
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 128
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 158
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 428
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 389
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 478
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 531
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 332
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 327
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 330
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jgfouca/kokkos-kernels)
  • Branch: jgfouca/par_ilut_perf_test
  • SHA: 7d64193
  • Mode: TEST_REPO

Pull Request Author: jgfouca

@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: 530
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 128
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 158
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 428
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 389
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 478
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 531
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 332
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 327
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 330
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7d64193
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 530 (click to expand)

[ 89%] Built target sparse_sptrsv
[ 89%] Building CXX object perf_test/blas/blas1/CMakeFiles/KokkosBlas_dot_perf_test.dir/KokkosBlas_dot_perf_test.cpp.o
[ 89%] Linking CXX executable sparse_spmv_bsr
[ 89%] Built target sparse_spmv_bsr
[ 89%] Building CXX object perf_test/blas/blas1/CMakeFiles/KokkosBlas_dot_mv_perf_test.dir/KokkosBlas_dot_mv_perf_test.cpp.o
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function int _GLOBAL__N__56_tmpxft_00305c7b_00000000_7_KokkosSparse_par_ilut_cpp1_ii_876ac05d::test_par_ilut_perf(int, int, int, int, int, int):
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:345:5: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
   int num_iters = 6;
     ^~~~~~~~~
[ 89%] Linking CXX executable KokkosBlas_perf_test
[ 89%] Built target KokkosBlas_perf_test
[ 89%] Building CXX object perf_test/blas/blas1/CMakeFiles/KokkosBlas_team_dot_perf_test.dir/KokkosBlas_team_dot_perf_test.cpp.o
[ 90%] Linking CXX executable sparse_spiluk
[ 90%] Built target sparse_spiluk
[ 90%] Building CXX object perf_test/blas/blas2/CMakeFiles/KokkosBlas2_gemv_perf_test.dir/KokkosBlas2_gemv_perf_test.cpp.o
[ 90%] Linking CXX executable sparse_sptrsv_supernode
[ 91%] Linking CXX executable KokkosBlas_dot_perf_test
[ 91%] Built target sparse_sptrsv_supernode
[ 92%] Building CXX object perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/build.make:76: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2638: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 92%] Built target KokkosBlas_dot_perf_test
[ 92%] Linking CXX executable KokkosBlas_dot_mv_perf_test
[ 92%] Built target KokkosBlas_dot_mv_perf_test
[ 92%] Linking CXX executable sparse_gs
[ 92%] Linking CXX executable KokkosBlas_team_dot_perf_test
[ 92%] Built target KokkosBlas_team_dot_perf_test
[ 92%] Built target sparse_gs
[ 92%] Linking CXX executable sparse_mdf
[ 92%] Built target sparse_mdf
[ 92%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 92%] Built target KokkosBlas2_gemv_perf_test
[ 92%] Linking CXX executable sparse_kk_spmv
[ 92%] Built target sparse_kk_spmv
[ 92%] Linking CXX executable KokkosKernels_sparse_openmp
[ 92%] Built target KokkosKernels_sparse_openmp
[ 92%] Linking CXX executable KokkosKernels_sparse_cuda
[ 92%] Built target KokkosKernels_sparse_cuda
[ 92%] Linking CXX executable KokkosBlas3_perf_test
[ 92%] Built target KokkosBlas3_perf_test
[ 92%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[ 92%] 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.530/TestAll_2023-04-18_15.07.29/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 # 128 (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.128/TestAll_2023-04-18_15.07.37/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.128/TestAll_2023-04-18_15.07.37/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.128/TestAll_2023-04-18_15.07.37/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 # 158 (click to expand)

Scanning dependencies of target sparse_par_ilut
[ 85%] Building CXX object perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o
[ 85%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 85%] Built target KokkosKernels_batched_dla_serial
[ 85%] Linking CXX executable graph_triangle
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function int {anonymous}::test_par_ilut_perf(int, int, int, int, int, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:345:7: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
  345 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 85%] Built target graph_triangle
Scanning dependencies of target sparse_spmv_bsr
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
Scanning dependencies of target sparse_spadd
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Linking CXX executable sparse_spgemm_jacobi
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_gs
[ 86%] Built target sparse_gs
[ 86%] Linking CXX executable sparse_sptrsv_supernode
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 86%] Linking CXX executable KokkosKernels_graph_serial
[ 86%] Built target KokkosKernels_graph_serial
[ 86%] Linking CXX executable KokkosKernels_graph_threads
[ 86%] Built target KokkosKernels_graph_threads
[ 87%] Linking CXX executable KokkosKernels_blas_serial
[ 87%] Built target KokkosKernels_blas_serial
[ 87%] Linking CXX executable KokkosKernels_blas_threads
[ 87%] Built target KokkosKernels_blas_threads
[ 87%] Linking CXX executable KokkosKernels_sparse_threads
[ 87%] Built target KokkosKernels_sparse_threads
[ 87%] Linking CXX executable KokkosKernels_sparse_serial
[ 87%] Built target KokkosKernels_sparse_serial
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.158/TestAll_2023-04-18_15.09.40/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 # 428 (click to expand)

[ 80%] Linking CXX executable sparse_gs
[ 80%] Built target sparse_spgemm_jacobi
[ 80%] Built target sparse_gs
[ 81%] Linking CXX executable sparse_spadd
[ 81%] Built target sparse_spadd
[ 81%] Linking CXX executable sparse_spmv_struct_tuning
[ 81%] Built target sparse_spmv_struct_tuning
[ 81%] Linking CXX executable KokkosKernels_graph_openmp
[ 81%] Built target KokkosKernels_graph_openmp
[ 81%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 81%] Built target KokkosKernels_batched_gemm_openmp
[ 81%] Linking CXX executable sparse_spmv_struct
[ 81%] Built target sparse_spmv_struct
[ 82%] Linking CXX executable sparse_spmv_bsr
[ 82%] Built target sparse_spmv_bsr
[ 82%] Linking CXX executable KokkosKernels_blas_openmp
[ 82%] Built target KokkosKernels_blas_openmp
[ 82%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 82%] Built target KokkosKernels_batched_dla_openmp
[ 82%] Linking CXX executable KokkosKernels_sparse_openmp
[ 82%] Built target KokkosKernels_sparse_openmp
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.428/TestAll_2023-04-18_15.09.43/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.428/TestAll_2023-04-18_15.09.43/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 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:345:7: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
  345 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 86%] Linking CXX executable sparse_spgemm_jacobi
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_gs
Scanning dependencies of target sparse_spmv_struct_tuning
[ 86%] Linking CXX executable sparse_sptrsv_supernode
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct_tuning.dir/KokkosSparse_spmv_struct_tuning.cpp.o
[ 86%] Built target sparse_gs
[ 86%] Built target sparse_sptrsv_supernode
Scanning dependencies of target sparse_spmv
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/KokkosSparse_spmv.cpp.o
Scanning dependencies of target sparse_kk_spmv
[ 87%] Building CXX object perf_test/sparse/CMakeFiles/sparse_kk_spmv.dir/KokkosSparse_kk_spmv.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 87%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/KokkosSparse_spmv_test.cpp.o
[ 87%] Linking CXX executable sparse_spadd
[ 87%] Built target sparse_spadd
[ 87%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/spmv/OpenMPSmartStatic_SPMV.cpp.o
[ 87%] Linking CXX executable sparse_spmv_struct
[ 87%] Linking CXX executable sparse_spmv_bsr
[ 87%] Built target sparse_spmv_struct
[ 87%] Built target sparse_spmv_bsr
[ 87%] Linking CXX executable sparse_spmv
[ 87%] Built target sparse_spmv
[ 87%] Linking CXX executable graph_triangle
[ 87%] Built target graph_triangle
[ 88%] Linking CXX executable sparse_spmv_struct_tuning
[ 88%] Built target sparse_spmv_struct_tuning
[ 89%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 89%] Built target KokkosKernels_batched_dla_serial
[ 89%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 89%] Built target KokkosKernels_batched_dla_openmp
[ 89%] Linking CXX executable sparse_kk_spmv
[ 89%] Built target sparse_kk_spmv
[ 89%] Linking CXX executable KokkosKernels_sparse_openmp
[ 89%] Built target KokkosKernels_sparse_openmp
[ 89%] Linking CXX executable KokkosKernels_sparse_serial
[ 89%] Built target KokkosKernels_sparse_serial
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.389/TestAll_2023-04-18_15.09.51/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 # 478 (click to expand)

 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 9004274b4d79d771f0d50386fb4f8d6907ae5b43 # timeout=10
Commit message: "Merge pull request #6056 from masterleinad/partially_reverse_5504"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9004274b4d79d771f0d50386fb4f8d6907ae5b43 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins956121003151236493.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      cwpearson/docs-apt-update -> upstream/cwpearson/docs-apt-update
 * [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]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [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.7.01     -> 3.7.01
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  7d64193f184cc09f52bc21792edc261eb45ac504 formatting

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=1264 run_time=93
intel-19.5.281-Threads-release build_time=817 run_time=106
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Commit message: "formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 68ec1afc7ddfb745a7b3f633fa07952b098ce49c # timeout=10
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 9004274b4d79d771f0d50386fb4f8d6907ae5b43 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 9004274b4d79d771f0d50386fb4f8d6907ae5b43 # timeout=10
Commit message: "Merge pull request #6056 from masterleinad/partially_reverse_5504"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9004274b4d79d771f0d50386fb4f8d6907ae5b43 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins7541664788926087826.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      cwpearson/docs-apt-update -> upstream/cwpearson/docs-apt-update
 * [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]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [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.7.01     -> 3.7.01
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  7d64193f184cc09f52bc21792edc261eb45ac504 formatting

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

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release build_time=627 run_time=200
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

[ 81%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/spmv/OpenMPSmartStatic_SPMV.cpp.o
[ 82%] Linking CXX executable sparse_spadd
[ 82%] Built target sparse_spadd
[ 82%] Linking CXX executable sparse_spmv
[ 82%] Built target sparse_spmv
[ 83%] Linking CXX executable sparse_spmv_bsr
[ 83%] Built target sparse_spmv_bsr
[ 83%] Linking CXX executable sparse_spmv_struct
[ 83%] Built target sparse_spmv_struct
[ 83%] Linking CXX executable sparse_spmv_struct_tuning
[ 83%] Built target sparse_spmv_struct_tuning
[ 83%] Linking CXX executable KokkosKernels_graph_serial
[ 83%] Built target KokkosKernels_graph_serial
[ 83%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 83%] Built target KokkosKernels_batched_gemm_serial
[ 83%] Linking CXX executable KokkosKernels_blas_serial
[ 83%] Built target KokkosKernels_blas_serial
[ 83%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 83%] Built target KokkosKernels_batched_dla_serial
[ 83%] Linking CXX executable KokkosKernels_sparse_serial
[ 83%] Built target KokkosKernels_sparse_serial
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.332/TestAll_2023-04-18_15.12.12/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.332/TestAll_2023-04-18_15.12.12/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 3380
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Scanning dependencies of target sparse_par_ilut
[ 85%] Building CXX object perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o
[ 85%] Built target graph_color
Scanning dependencies of target sparse_spmv_bsr
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function 'int {anonymous}::test_par_ilut_perf(int, int, int, int, int, int)':
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:345:7: error: variable 'num_iters' set but not used [-Werror=unused-but-set-variable]
  345 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 86%] Linking CXX executable sparse_mdf
[ 86%] Built target sparse_mdf
Scanning dependencies of target sparse_spadd
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
[ 86%] Linking CXX executable sparse_block_pcg
[ 86%] Built target sparse_block_pcg
Scanning dependencies of target sparse_spmv_struct
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/build.make:80: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2595: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Linking CXX executable sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_gs
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Built target sparse_gs
[ 86%] Linking CXX executable sparse_sptrsv_supernode
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv_struct
[ 86%] Built target sparse_spmv_struct
[ 86%] Linking CXX executable graph_triangle
[ 86%] Built target graph_triangle
[ 87%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 87%] Built target KokkosKernels_batched_dla_serial
[ 87%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 87%] Built target KokkosKernels_batched_dla_openmp
[ 87%] Linking CXX executable KokkosKernels_sparse_openmp
[ 87%] Built target KokkosKernels_sparse_openmp
[ 87%] Linking CXX executable KokkosKernels_sparse_serial
[ 87%] Built target KokkosKernels_sparse_serial
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.327/TestAll_2023-04-18_15.12.12/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 3381
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Commit message: "formatting"
 > git rev-list --no-walk 68ec1afc7ddfb745a7b3f633fa07952b098ce49c # timeout=10
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 9004274b4d79d771f0d50386fb4f8d6907ae5b43 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 9004274b4d79d771f0d50386fb4f8d6907ae5b43 # timeout=10
Commit message: "Merge pull request #6056 from masterleinad/partially_reverse_5504"
 > git rev-list --no-walk 9004274b4d79d771f0d50386fb4f8d6907ae5b43 # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins8917578338064828083.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update
 * [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]             3.6.00                      -> 3.6.00
 * [new tag]             3.6.01                      -> 3.6.01
 * [new tag]             3.7.00                      -> 3.7.00
 * [new tag]             4.0.00                      -> 4.0.00
 * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
 * [new tag]             3.7.01                      -> 3.7.01
Already up to date.
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  7d64193f184cc09f52bc21792edc261eb45ac504 formatting

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

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=872 run_time=391
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@srajama1
Copy link
Contributor

@jgfouca : Couple of other things we discussed, one more problem at 40K rows to make sure the OMP threads are actually running out of work. Also testing on some problems from SuiteSparse would be nice. Thermal1 / thermal2 / Torso2 are all good problems.

Copy link
Contributor

@brian-kelley brian-kelley left a comment

Choose a reason for hiding this comment

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

LGTM

@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: 556
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 150
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 180
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 450
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 411
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 500
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 553
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 354
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 349
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 352
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jgfouca/kokkos-kernels)
  • Branch: jgfouca/par_ilut_perf_test
  • SHA: 8ea0c4f
  • Mode: TEST_REPO

Pull Request Author: jgfouca

@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: 556
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 150
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 180
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 450
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 411
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 500
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 553
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 354
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 349
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 352
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8ea0c4f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 556 (click to expand)

[ 89%] Built target sparse_sptrsv
[ 89%] Building CXX object perf_test/blas/blas1/CMakeFiles/KokkosBlas_dot_perf_test.dir/KokkosBlas_dot_perf_test.cpp.o
[ 89%] Linking CXX executable sparse_spmv_bsr
[ 89%] Linking CXX executable KokkosBlas_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function int _GLOBAL__N__56_tmpxft_00356362_00000000_7_KokkosSparse_par_ilut_cpp1_ii_876ac05d::test_par_ilut_perf(int, int, int, int, int, int):
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:359:5: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
   int num_iters = 6;
     ^~~~~~~~~
[ 89%] Built target KokkosBlas_perf_test
[ 89%] Building CXX object perf_test/blas/blas1/CMakeFiles/KokkosBlas_dot_mv_perf_test.dir/KokkosBlas_dot_mv_perf_test.cpp.o
[ 90%] Linking CXX executable sparse_spiluk
[ 90%] Built target sparse_spiluk
[ 90%] Building CXX object perf_test/blas/blas1/CMakeFiles/KokkosBlas_team_dot_perf_test.dir/KokkosBlas_team_dot_perf_test.cpp.o
[ 90%] Linking CXX executable sparse_sptrsv_supernode
[ 91%] Linking CXX executable KokkosBlas_dot_perf_test
[ 91%] Built target sparse_sptrsv_supernode
[ 91%] Building CXX object perf_test/blas/blas2/CMakeFiles/KokkosBlas2_gemv_perf_test.dir/KokkosBlas2_gemv_perf_test.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/build.make:76: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2638: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 91%] Built target KokkosBlas_dot_perf_test
[ 91%] Built target sparse_spmv_bsr
[ 91%] Linking CXX executable sparse_gs
[ 91%] Built target sparse_gs
[ 91%] Linking CXX executable KokkosBlas_team_dot_perf_test
[ 91%] Linking CXX executable sparse_mdf
[ 91%] Built target KokkosBlas_team_dot_perf_test
[ 91%] Built target sparse_mdf
[ 91%] Linking CXX executable KokkosBlas_dot_mv_perf_test
[ 91%] Built target KokkosBlas_dot_mv_perf_test
[ 91%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 91%] Built target KokkosBlas2_gemv_perf_test
[ 91%] Linking CXX executable sparse_kk_spmv
[ 91%] Built target sparse_kk_spmv
[ 91%] Linking CXX executable KokkosKernels_sparse_openmp
[ 91%] Built target KokkosKernels_sparse_openmp
[ 91%] Linking CXX executable KokkosKernels_sparse_cuda
[ 91%] Built target KokkosKernels_sparse_cuda
[ 91%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[ 91%] 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
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.556/TestAll_2023-04-25_14.00.23/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 # 150 (click to expand)

  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.150/TestAll_2023-04-25_14.00.23/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
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

$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.150/TestAll_2023-04-25_14.00.23/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
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

$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.150/TestAll_2023-04-25_14.00.23/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 # 180 (click to expand)

[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
[ 86%] Linking CXX executable sparse_spgemm
[ 86%] Built target sparse_spgemm
Scanning dependencies of target sparse_spadd
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function int {anonymous}::test_par_ilut_perf(int, int, int, int, int, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:359:7: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
  359 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 86%] Linking CXX executable sparse_gs
[ 86%] Built target sparse_gs
Scanning dependencies of target sparse_spmv_struct
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
cc1plus: all warnings being treated as errors
[ 86%] Linking CXX executable sparse_sptrsv_supernode
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Linking CXX executable sparse_spgemm_jacobi
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 86%] Linking CXX executable sparse_spmv_struct
[ 86%] Built target sparse_spmv_struct
[ 86%] Linking CXX executable KokkosKernels_graph_serial
[ 86%] Built target KokkosKernels_graph_serial
[ 86%] Linking CXX executable KokkosKernels_graph_threads
[ 86%] Built target KokkosKernels_graph_threads
[ 87%] Linking CXX executable KokkosKernels_blas_serial
[ 87%] Built target KokkosKernels_blas_serial
[ 87%] Linking CXX executable KokkosKernels_blas_threads
[ 87%] Built target KokkosKernels_blas_threads
[ 87%] Linking CXX executable KokkosKernels_sparse_threads
[ 87%] Built target KokkosKernels_sparse_threads
[ 87%] Linking CXX executable KokkosKernels_sparse_serial
[ 87%] Built target KokkosKernels_sparse_serial
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
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.180/TestAll_2023-04-25_14.01.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: blake23: task 0: Exited with exit code 1
FAILED gcc-10.2.0-OpenMP-release
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 81%] Built target sparse_spmv_struct_tuning
[ 81%] Linking CXX executable KokkosKernels_graph_openmp
[ 81%] Built target KokkosKernels_graph_openmp
[ 81%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 81%] Built target KokkosKernels_batched_gemm_openmp
[ 81%] Linking CXX executable sparse_spmv_struct
[ 81%] Built target sparse_spmv_struct
[ 82%] Linking CXX executable sparse_spmv_bsr
[ 82%] Built target sparse_spmv_bsr
[ 82%] Linking CXX executable KokkosKernels_blas_openmp
[ 82%] Built target KokkosKernels_blas_openmp
[ 82%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 82%] Built target KokkosKernels_batched_dla_openmp
[ 82%] Linking CXX executable KokkosKernels_sparse_openmp
[ 82%] Built target KokkosKernels_sparse_openmp
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
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.450/TestAll_2023-04-25_14.01.19/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
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

$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.450/TestAll_2023-04-25_14.01.19/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 # 411 (click to expand)

Scanning dependencies of target sparse_spmv_bsr
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
[ 86%] Linking CXX executable sparse_mdf
[ 86%] Built target sparse_mdf
Scanning dependencies of target sparse_spadd
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function int {anonymous}::test_par_ilut_perf(int, int, int, int, int, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:359:7: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
  359 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 86%] Linking CXX executable sparse_block_pcg
[ 86%] Built target sparse_block_pcg
Scanning dependencies of target sparse_spmv_struct
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
[ 86%] Linking CXX executable sparse_gs
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Built target sparse_gs
[ 86%] Linking CXX executable sparse_spgemm_jacobi
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_sptrsv_supernode
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 87%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 87%] Linking CXX executable sparse_spmv_struct
[ 87%] Built target KokkosKernels_batched_dla_serial
[ 87%] Linking CXX executable graph_triangle
[ 87%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 87%] Built target sparse_spmv_struct
[ 87%] Built target graph_triangle
[ 87%] Built target KokkosKernels_batched_dla_openmp
[ 87%] Linking CXX executable KokkosKernels_sparse_serial
[ 87%] Built target KokkosKernels_sparse_serial
[ 87%] Linking CXX executable KokkosKernels_sparse_openmp
[ 87%] Built target KokkosKernels_sparse_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
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.411/TestAll_2023-04-25_14.01.19/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 # 500 (click to expand)

 blas/impl/KokkosBlas1_update_impl.hpp              |  19 +-
 blas/impl/KokkosBlas1_update_spec.hpp              |  65 ++--
 blas/src/KokkosBlas1_abs.hpp                       |  57 ++-
 blas/src/KokkosBlas1_axpby.hpp                     | 120 ++++++-
 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 +++++++++++----------
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++-----
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 +++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 40 files changed, 1664 insertions(+), 656 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  c8399241f58d9888b1538a55a45af74b32a4976d Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

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=1307 run_time=138
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 # 553 (click to expand)

 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 blas/impl/KokkosBlas1_abs_impl.hpp                 |  18 +-
 blas/impl/KokkosBlas1_abs_spec.hpp                 |  43 ++-
 blas/impl/KokkosBlas1_axpby_impl.hpp               |  11 +-
 blas/impl/KokkosBlas1_axpby_mv_impl.hpp            |  54 +--
 blas/impl/KokkosBlas1_axpby_spec.hpp               | 100 +++---
 blas/impl/KokkosBlas1_mult_impl.hpp                |  21 +-
 blas/impl/KokkosBlas1_mult_spec.hpp                |  53 ++-
 blas/impl/KokkosBlas1_reciprocal_impl.hpp          |  20 +-
 blas/impl/KokkosBlas1_reciprocal_spec.hpp          |  43 ++-
 blas/impl/KokkosBlas1_scal_impl.hpp                |  11 +-
 blas/impl/KokkosBlas1_scal_mv_impl.hpp             | 124 ++++---
 blas/impl/KokkosBlas1_scal_spec.hpp                |  72 ++--
 blas/impl/KokkosBlas1_update_impl.hpp              |  19 +-
 blas/impl/KokkosBlas1_update_spec.hpp              |  65 ++--
 blas/src/KokkosBlas1_abs.hpp                       |  57 ++-
 blas/src/KokkosBlas1_axpby.hpp                     | 120 ++++++-
 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 +++++++++++----------
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++-----
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 +++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 40 files changed, 1664 insertions(+), 656 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  4f8c85a02e0ecf18afef3cd20b0b65bdf4f10ff7 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release build_time=642 run_time=199
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

[ 80%] Built target sparse_spadd
[ 80%] Built target sparse_sptrsv_supernode
[ 80%] Built target sparse_spmv_struct
[ 81%] Linking CXX executable sparse_spmv_bsr
[ 81%] Built target sparse_spmv_bsr
[ 81%] Linking CXX executable KokkosKernels_graph_serial
[ 81%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_batched_gemm_serial
[ 81%] Built target KokkosKernels_graph_serial
[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 81%] Built target KokkosKernels_batched_dla_serial
[ 81%] Linking CXX executable KokkosKernels_sparse_serial
[ 81%] Built target KokkosKernels_sparse_serial
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
        export OMP_NUM_THREADS=47
        export OMP_PROC_BIND=close
        export OMP_PLACES=cores

$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.354/TestAll_2023-04-25_14.01.41/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
    export OMP_NUM_THREADS=47
    export OMP_PROC_BIND=close
    export OMP_PLACES=cores

$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.354/TestAll_2023-04-25_14.01.41/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 3431
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 86%] Linking CXX executable sparse_block_pcg
[ 86%] Built target sparse_block_pcg
Scanning dependencies of target sparse_spmv_struct
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
[ 86%] Linking CXX executable sparse_gs
[ 86%] Built target sparse_gs
[ 86%] Linking CXX executable sparse_spgemm_jacobi
Scanning dependencies of target sparse_spmv_struct_tuning
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct_tuning.dir/KokkosSparse_spmv_struct_tuning.cpp.o
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_sptrsv_supernode
Scanning dependencies of target sparse_spmv
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/KokkosSparse_spmv.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/build.make:80: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2595: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/KokkosSparse_spmv_test.cpp.o
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv.dir/spmv/OpenMPSmartStatic_SPMV.cpp.o
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv
[ 86%] Built target sparse_spmv
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 86%] Linking CXX executable sparse_spmv_struct
[ 86%] Built target sparse_spmv_struct
[ 86%] Linking CXX executable graph_triangle
[ 86%] Built target graph_triangle
[ 87%] Linking CXX executable sparse_spmv_struct_tuning
[ 87%] Built target sparse_spmv_struct_tuning
[ 88%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 88%] Built target KokkosKernels_batched_dla_serial
[ 88%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 88%] Built target KokkosKernels_batched_dla_openmp
[ 88%] Linking CXX executable KokkosKernels_sparse_openmp
[ 88%] Built target KokkosKernels_sparse_openmp
[ 88%] Linking CXX executable KokkosKernels_sparse_serial
[ 88%] Built target KokkosKernels_sparse_serial
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
        export OMP_NUM_THREADS=47
        export OMP_PROC_BIND=close
        export OMP_PLACES=cores

$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.349/TestAll_2023-04-25_14.01.41/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 3432
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

 * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
 * [new tag]             3.7.01                      -> 3.7.01
Merge made by the 'recursive' strategy.
 blas/impl/KokkosBlas1_abs_impl.hpp                 |  18 +-
 blas/impl/KokkosBlas1_abs_spec.hpp                 |  43 ++-
 blas/impl/KokkosBlas1_axpby_impl.hpp               |  11 +-
 blas/impl/KokkosBlas1_axpby_mv_impl.hpp            |  54 +--
 blas/impl/KokkosBlas1_axpby_spec.hpp               | 100 +++---
 blas/impl/KokkosBlas1_mult_impl.hpp                |  21 +-
 blas/impl/KokkosBlas1_mult_spec.hpp                |  53 ++-
 blas/impl/KokkosBlas1_reciprocal_impl.hpp          |  20 +-
 blas/impl/KokkosBlas1_reciprocal_spec.hpp          |  43 ++-
 blas/impl/KokkosBlas1_scal_impl.hpp                |  11 +-
 blas/impl/KokkosBlas1_scal_mv_impl.hpp             | 124 ++++---
 blas/impl/KokkosBlas1_scal_spec.hpp                |  72 ++--
 blas/impl/KokkosBlas1_update_impl.hpp              |  19 +-
 blas/impl/KokkosBlas1_update_spec.hpp              |  65 ++--
 blas/src/KokkosBlas1_abs.hpp                       |  57 ++-
 blas/src/KokkosBlas1_axpby.hpp                     | 120 ++++++-
 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 +++++++++++----------
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++-----
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 +++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 40 files changed, 1664 insertions(+), 656 deletions(-)
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  d8cca36ea07bc44b368df5042a8ca35483904b6e Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=904 run_time=416
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

Co-authored-by: brian-kelley <brian.honda11@gmail.com>
@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: 563
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 154
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 184
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 454
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 415
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 504
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 557
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 358
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 353
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 356
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jgfouca/kokkos-kernels)
  • Branch: jgfouca/par_ilut_perf_test
  • SHA: 4b5e62b
  • Mode: TEST_REPO

Pull Request Author: jgfouca

@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: 563
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 154
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 184
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 454
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 415
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 504
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 557
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 358
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 353
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 356
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4b5e62b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 563 (click to expand)

 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_iamax.hpp                     |  77 +++-
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_nrm1.hpp                      |  70 +++-
 blas/src/KokkosBlas1_nrm2.hpp                      |  81 +++-
 blas/src/KokkosBlas1_nrm2_squared.hpp              |  81 +++-
 blas/src/KokkosBlas1_nrm2w.hpp                     | 103 ++++-
 blas/src/KokkosBlas1_nrm2w_squared.hpp             | 122 ++++--
 blas/src/KokkosBlas1_nrminf.hpp                    |  59 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_sum.hpp                       |  89 ++++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 ++++++++++---------
 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
***Forced exclusive execution
Job <55475> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  4580cb737d1be2647466ff73cf21553d61031a19 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

Going to test compilers: cuda/11.2.2
Testing compiler cuda/11.2.2
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Starting job cuda-11.2.2-Cuda_OpenMP-release
kokkos devices: Cuda,OpenMP
kokkos arch: Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Wade Burgess
Finished: ABORTED

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

  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.154/TestAll_2023-04-26_10.08.43/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
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

$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.154/TestAll_2023-04-26_10.08.43/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
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

$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.154/TestAll_2023-04-26_10.08.43/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 # 184 (click to expand)

	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:92)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:816)
	at hudson.model.Build$BuildExecution.build(Build.java:199)
	at hudson.model.Build$BuildExecution.doRun(Build.java:164)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:524)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)
FATAL: Unable to delete script file /tmp/jenkins6829799246977259715.sh
java.io.IOException
	at hudson.remoting.Channel.close(Channel.java:1491)
	at hudson.remoting.Channel.close(Channel.java:1447)
	at hudson.slaves.SlaveComputer.closeChannel(SlaveComputer.java:923)
	at hudson.slaves.SlaveComputer.kill(SlaveComputer.java:889)
	at hudson.model.AbstractCIBase.killComputer(AbstractCIBase.java:95)
	at jenkins.model.Jenkins.lambda$_cleanUpDisconnectComputers$11(Jenkins.java:3705)
	at hudson.model.Queue._withLock(Queue.java:1395)
	at hudson.model.Queue.withLock(Queue.java:1269)
	at jenkins.model.Jenkins._cleanUpDisconnectComputers(Jenkins.java:3701)
	at jenkins.model.Jenkins.cleanUp(Jenkins.java:3582)
	at hudson.WebAppMain.contextDestroyed(WebAppMain.java:374)
	at org.eclipse.jetty.server.handler.ContextHandler.callContextDestroyed(ContextHandler.java:1080)
	at org.eclipse.jetty.servlet.ServletContextHandler.callContextDestroyed(ServletContextHandler.java:584)
	at org.eclipse.jetty.server.handler.ContextHandler.contextDestroyed(ContextHandler.java:1043)
	at org.eclipse.jetty.servlet.ServletHandler.doStop(ServletHandler.java:319)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:94)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:180)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:201)
	at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:108)
	at org.eclipse.jetty.security.SecurityHandler.doStop(SecurityHandler.java:430)
	at org.eclipse.jetty.security.ConstraintSecurityHandler.doStop(ConstraintSecurityHandler.java:423)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:94)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:180)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:201)
	at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:108)
	at org.eclipse.jetty.server.session.SessionHandler.doStop(SessionHandler.java:520)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:94)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:180)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:201)
	at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:108)
	at org.eclipse.jetty.server.handler.ContextHandler.stopContext(ContextHandler.java:1066)
	at org.eclipse.jetty.servlet.ServletContextHandler.stopContext(ServletContextHandler.java:386)
	at org.eclipse.jetty.webapp.WebAppContext.stopWebapp(WebAppContext.java:1454)
	at org.eclipse.jetty.webapp.WebAppContext.stopContext(WebAppContext.java:1420)
	at org.eclipse.jetty.server.handler.ContextHandler.doStop(ContextHandler.java:1120)
	at org.eclipse.jetty.servlet.ServletContextHandler.doStop(ServletContextHandler.java:297)
	at org.eclipse.jetty.webapp.WebAppContext.doStop(WebAppContext.java:547)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:94)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.stop(ContainerLifeCycle.java:180)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStop(ContainerLifeCycle.java:201)
	at org.eclipse.jetty.server.handler.AbstractHandler.doStop(AbstractHandler.java:108)
	at org.eclipse.jetty.server.Server.doStop(Server.java:470)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.stop(AbstractLifeCycle.java:94)
	at winstone.Launcher.shutdown(Launcher.java:354)
	at winstone.ShutdownHook.run(ShutdownHook.java:26)
Caused: hudson.remoting.ChannelClosedException: Channel "hudson.remoting.Channel@1363d745:blake": Remote call on blake failed. The channel is closing down or has closed down
	at hudson.remoting.Channel.call(Channel.java:993)
	at hudson.FilePath.act(FilePath.java:1194)
	at hudson.FilePath.act(FilePath.java:1183)
	at hudson.FilePath.delete(FilePath.java:1730)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:163)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:92)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:816)
	at hudson.model.Build$BuildExecution.build(Build.java:199)
	at hudson.model.Build$BuildExecution.doRun(Build.java:164)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:524)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 82%] Built target sparse_spmv_struct_tuning
[ 82%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 82%] Built target KokkosKernels_batched_gemm_openmp
[ 82%] Linking CXX executable KokkosKernels_blas_openmp
[ 82%] Built target KokkosKernels_blas_openmp
[ 82%] Linking CXX executable KokkosKernels_graph_openmp
[ 82%] Built target KokkosKernels_graph_openmp
[ 83%] Linking CXX executable sparse_spmv_bsr
[ 83%] Built target sparse_spmv_bsr
[ 83%] Linking CXX executable sparse_spmv_struct
[ 83%] Built target sparse_spmv_struct
[ 83%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 83%] Built target KokkosKernels_batched_dla_openmp
[ 83%] Linking CXX executable KokkosKernels_sparse_openmp
[ 83%] Built target KokkosKernels_sparse_openmp
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
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.454/TestAll_2023-04-26_10.09.04/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
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

$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.454/TestAll_2023-04-26_10.09.04/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 # 415 (click to expand)

[ 85%] Linking CXX executable graph_color
[ 85%] Built target graph_color
Scanning dependencies of target sparse_spmv_bsr
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
Scanning dependencies of target sparse_spadd
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
[ 86%] Linking CXX executable sparse_block_pcg
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function int {anonymous}::test_par_ilut_perf(int, int, int, int, int, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:359:7: error: variable num_iters set but not used [-Werror=unused-but-set-variable]
  359 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 86%] Built target sparse_block_pcg
Scanning dependencies of target sparse_spmv_struct
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
[ 86%] Linking CXX executable sparse_gs
[ 86%] Linking CXX executable sparse_spgemm_jacobi
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Built target sparse_gs
[ 86%] Linking CXX executable sparse_sptrsv_supernode
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 86%] Linking CXX executable sparse_spmv_struct
[ 86%] Built target sparse_spmv_struct
[ 86%] Linking CXX executable graph_triangle
[ 86%] Built target graph_triangle
[ 87%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 87%] Built target KokkosKernels_batched_dla_serial
[ 87%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 87%] Built target KokkosKernels_batched_dla_openmp
[ 87%] Linking CXX executable KokkosKernels_sparse_serial
[ 87%] Linking CXX executable KokkosKernels_sparse_openmp
[ 87%] Built target KokkosKernels_sparse_serial
[ 87%] Built target KokkosKernels_sparse_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
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

$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.415/TestAll_2023-04-26_10.09.11/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 # 504 (click to expand)

 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  afd5b74d355998dccc800f43eef38fdde81d94af Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

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=1277 run_time=95
intel-19.5.281-Threads-release build_time=820 run_time=105
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_iamax.hpp                     |  77 +++-
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_nrm1.hpp                      |  70 +++-
 blas/src/KokkosBlas1_nrm2.hpp                      |  81 +++-
 blas/src/KokkosBlas1_nrm2_squared.hpp              |  81 +++-
 blas/src/KokkosBlas1_nrm2w.hpp                     | 103 ++++-
 blas/src/KokkosBlas1_nrm2w_squared.hpp             | 122 ++++--
 blas/src/KokkosBlas1_nrminf.hpp                    |  59 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_sum.hpp                       |  89 ++++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 ++++++++++---------
 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  4bb412c8e4481ca7813b72b9ff52869c85a6e14d Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release build_time=667 run_time=202
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

[ 80%] Built target sparse_sptrsv_supernode
[ 81%] Linking CXX executable sparse_spmv_bsr
[ 81%] Built target sparse_spmv_bsr
[ 81%] Linking CXX executable sparse_spmv_struct
[ 81%] Built target sparse_spmv_struct
[ 81%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 81%] Linking CXX executable KokkosKernels_graph_serial
[ 81%] Built target KokkosKernels_graph_serial
[ 81%] Built target KokkosKernels_batched_gemm_serial
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 81%] Built target KokkosKernels_batched_dla_serial
[ 81%] Linking CXX executable KokkosKernels_sparse_serial
[ 81%] Built target KokkosKernels_sparse_serial
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
        export OMP_NUM_THREADS=47
        export OMP_PROC_BIND=close
        export OMP_PLACES=cores

$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.358/TestAll_2023-04-26_10.11.19/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
    export OMP_NUM_THREADS=47
    export OMP_PROC_BIND=close
    export OMP_PLACES=cores

$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.358/TestAll_2023-04-26_10.11.19/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 3441
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 85%] Built target sparse_mdf
Scanning dependencies of target sparse_spadd
Scanning dependencies of target sparse_spmv_bsr
[ 85%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp: In function 'int {anonymous}::test_par_ilut_perf(int, int, int, int, int, int)':
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_par_ilut.cpp:359:7: error: variable 'num_iters' set but not used [-Werror=unused-but-set-variable]
  359 |   int num_iters = 6;
      |       ^~~~~~~~~
[ 86%] Linking CXX executable sparse_block_pcg
[ 86%] Built target sparse_block_pcg
Scanning dependencies of target sparse_spmv_struct
[ 86%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/build.make:80: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/KokkosSparse_par_ilut.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2595: perf_test/sparse/CMakeFiles/sparse_par_ilut.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Linking CXX executable sparse_gs
[ 86%] Built target sparse_gs
[ 86%] Linking CXX executable sparse_spgemm_jacobi
[ 86%] Built target sparse_spgemm_jacobi
[ 86%] Linking CXX executable sparse_sptrsv_supernode
[ 86%] Built target sparse_sptrsv_supernode
[ 86%] Linking CXX executable sparse_spadd
[ 86%] Built target sparse_spadd
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 86%] Linking CXX executable sparse_spmv_struct
[ 86%] Built target sparse_spmv_struct
[ 86%] Linking CXX executable graph_triangle
[ 86%] Built target graph_triangle
[ 87%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 87%] Built target KokkosKernels_batched_dla_serial
[ 87%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 87%] Built target KokkosKernels_batched_dla_openmp
[ 87%] Linking CXX executable KokkosKernels_sparse_openmp
[ 87%] Built target KokkosKernels_sparse_openmp
[ 87%] Linking CXX executable KokkosKernels_sparse_serial
[ 87%] Built target KokkosKernels_sparse_serial
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
        export OMP_NUM_THREADS=47
        export OMP_PROC_BIND=close
        export OMP_PLACES=cores

$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.353/TestAll_2023-04-26_10.11.19/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 3440
salloc: Job allocation 3440 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

 blas/src/KokkosBlas1_iamax.hpp                     |  77 +++-
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_nrm1.hpp                      |  70 +++-
 blas/src/KokkosBlas1_nrm2.hpp                      |  81 +++-
 blas/src/KokkosBlas1_nrm2_squared.hpp              |  81 +++-
 blas/src/KokkosBlas1_nrm2w.hpp                     | 103 ++++-
 blas/src/KokkosBlas1_nrm2w_squared.hpp             | 122 ++++--
 blas/src/KokkosBlas1_nrminf.hpp                    |  59 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_sum.hpp                       |  89 ++++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 ++++++++++---------
 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  08a413edeafa79fec3f610d685da7ff03188ab28 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: c09dd1c94861541b2f9651474ecdbec9e074dab7 Merge pull request #6059 from Rombur/fix_ci_host

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=877 run_time=410
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@jgfouca jgfouca added the WIP Work In Progress label May 1, 2023
@jgfouca
Copy link
Contributor Author

jgfouca commented May 1, 2023

Moving to WIP since I want to add support for reading in matrix files and google benchmark.

@@ -117,26 +117,48 @@ inline void add_benchmark_context(bool verbose = false) {
}

template <class FuncType, class... ArgsToCallOp>
inline void register_benchmark(const char* name, FuncType func,
inline auto register_benchmark(const char* name, FuncType func,
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@lucbv , @cwpearson , is the intent for Kokkos Kernels to use google benchmark through this Benchmark_Context header? If so, I think it would be good for register_benchmark to return the benchmark object so the user can make additional config changes to it if they want. I was disappointed to see that google benchmark did not let me override UseManualTime with UseRealTime, so I had to make a second register_benchmark function. UseRealTime seems like an attractive setting since it automates more of the tedious time measuring stuff.

Copy link
Contributor

Choose a reason for hiding this comment

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

These look like convenience functions wrapped around the standard Google Benchmark registration. I like these changes you're suggesting.

@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: 586
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 171
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 201
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 471
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 432
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 521
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 574
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 375
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 370
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 372
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jgfouca/kokkos-kernels)
  • Branch: jgfouca/par_ilut_perf_test
  • SHA: 6a8ac85
  • Mode: TEST_REPO

Pull Request Author: jgfouca

@@ -117,26 +117,48 @@ inline void add_benchmark_context(bool verbose = false) {
}

template <class FuncType, class... ArgsToCallOp>
inline void register_benchmark(const char* name, FuncType func,
inline auto register_benchmark(const char* name, FuncType func,
Copy link
Contributor

Choose a reason for hiding this comment

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

These look like convenience functions wrapped around the standard Google Benchmark registration. I like these changes you're suggesting.

@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: 586
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 171
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 201
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 471
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 432
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 521
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 574
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 375
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 370
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 372
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6a8ac85
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 586 (click to expand)

Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
  Starting job cuda-11.2.2-Cuda_OpenMP-release
kokkos devices: Cuda,OpenMP
kokkos arch: Volta70
kokkos options: 
kokkos cuda options: 
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized 
extra_args: 
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
FATAL: command execution failed
java.io.EOFException
	at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2831)
	at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3306)
	at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:933)
	at java.io.ObjectInputStream.(ObjectInputStream.java:395)
	at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
	at hudson.remoting.Command.readFrom(Command.java:142)
	at hudson.remoting.Command.readFrom(Command.java:128)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:35)
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:61)
Caused: java.io.IOException: Unexpected termination of the channel
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:75)
Caused: java.io.IOException: Backing channel 'kkw' is disconnected.
	at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:215)
	at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:285)
	at com.sun.proxy.$Proxy67.isAlive(Unknown Source)
	at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1215)
	at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1207)
	at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:195)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:145)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:92)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:816)
	at hudson.model.Build$BuildExecution.build(Build.java:199)
	at hudson.model.Build$BuildExecution.doRun(Build.java:164)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:524)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)
FATAL: Unable to delete script file /tmp/jenkins10747945730933143359.sh
java.io.EOFException
	at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2831)
	at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3306)
	at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:933)
	at java.io.ObjectInputStream.(ObjectInputStream.java:395)
	at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
	at hudson.remoting.Command.readFrom(Command.java:142)
	at hudson.remoting.Command.readFrom(Command.java:128)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:35)
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:61)
Caused: java.io.IOException: Unexpected termination of the channel
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:75)
Caused: hudson.remoting.ChannelClosedException: Channel "hudson.remoting.Channel@6612c749:kkw": Remote call on kkw failed. The channel is closing down or has closed down
	at hudson.remoting.Channel.call(Channel.java:993)
	at hudson.FilePath.act(FilePath.java:1194)
	at hudson.FilePath.act(FilePath.java:1183)
	at hudson.FilePath.delete(FilePath.java:1730)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:163)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:92)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:816)
	at hudson.model.Build$BuildExecution.build(Build.java:199)
	at hudson.model.Build$BuildExecution.doRun(Build.java:164)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:524)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
  Starting job gcc-9.3.0-Serial-release
kokkos devices: Serial
kokkos arch: Power8,Pascal60
kokkos options: 
kokkos cuda options: 
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized 
extra_args: 
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
FATAL: command execution failed
java.io.EOFException
	at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2831)
	at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3306)
	at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:933)
	at java.io.ObjectInputStream.(ObjectInputStream.java:395)
	at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
	at hudson.remoting.Command.readFrom(Command.java:142)
	at hudson.remoting.Command.readFrom(Command.java:128)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:35)
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:61)
Caused: java.io.IOException: Unexpected termination of the channel
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:75)
Caused: java.io.IOException: Backing channel 'kkw' is disconnected.
	at hudson.remoting.RemoteInvocationHandler.channelOrFail(RemoteInvocationHandler.java:215)
	at hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:285)
	at com.sun.proxy.$Proxy67.isAlive(Unknown Source)
	at hudson.Launcher$RemoteLauncher$ProcImpl.isAlive(Launcher.java:1215)
	at hudson.Launcher$RemoteLauncher$ProcImpl.join(Launcher.java:1207)
	at hudson.tasks.CommandInterpreter.join(CommandInterpreter.java:195)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:145)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:92)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:816)
	at hudson.model.Build$BuildExecution.build(Build.java:199)
	at hudson.model.Build$BuildExecution.doRun(Build.java:164)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:524)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)
FATAL: Unable to delete script file /tmp/jenkins17943984204106049030.sh
java.io.EOFException
	at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2831)
	at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3306)
	at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:933)
	at java.io.ObjectInputStream.(ObjectInputStream.java:395)
	at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:49)
	at hudson.remoting.Command.readFrom(Command.java:142)
	at hudson.remoting.Command.readFrom(Command.java:128)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:35)
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:61)
Caused: java.io.IOException: Unexpected termination of the channel
	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:75)
Caused: hudson.remoting.ChannelClosedException: Channel "hudson.remoting.Channel@6612c749:kkw": Remote call on kkw failed. The channel is closing down or has closed down
	at hudson.remoting.Channel.call(Channel.java:993)
	at hudson.FilePath.act(FilePath.java:1194)
	at hudson.FilePath.act(FilePath.java:1183)
	at hudson.FilePath.delete(FilePath.java:1730)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:163)
	at hudson.tasks.CommandInterpreter.perform(CommandInterpreter.java:92)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:816)
	at hudson.model.Build$BuildExecution.build(Build.java:199)
	at hudson.model.Build$BuildExecution.doRun(Build.java:164)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:524)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Running on machine: blake
Running on machine: blake
KokkosKernels Repository Status:  ddc5c8ff9691576b09851cf1d734c3d465b66451 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
KokkosKernels Repository Status: ddc5c8ff9691576b09851cf1d734c3d465b66451 Merge remote-tracking branch 'upstream/develop' into HEAD

Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --disable-test-eti-only
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Starting job gcc-10.2.0-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 -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --disable-test-eti-only
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=4440 run_time=353
PASSED gcc-10.2.0-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=4440 run_time=353
gcc-10.2.0-Threads_Serial-release build_time=4262 run_time=701
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Running on machine: blake
KokkosKernels Repository Status:  8b7c7c160a3eca1dd49a19d2c55ec85804d7f3a6 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-Threads_Serial-release
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-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 -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=401 run_time=79
gcc-10.2.0-Threads_Serial-release build_time=545 run_time=177
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_iamax.hpp                     |  77 +++-
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_nrm1.hpp                      |  70 +++-
 blas/src/KokkosBlas1_nrm2.hpp                      |  81 +++-
 blas/src/KokkosBlas1_nrm2_squared.hpp              |  81 +++-
 blas/src/KokkosBlas1_nrm2w.hpp                     | 103 ++++-
 blas/src/KokkosBlas1_nrm2w_squared.hpp             | 122 ++++--
 blas/src/KokkosBlas1_nrminf.hpp                    |  59 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_sum.hpp                       |  89 ++++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 ++++++++++---------
 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Running on machine: blake
KokkosKernels Repository Status:  fc92bfe6c6af0990eb0c9173dfa676a2296a6e07 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=634 run_time=185
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  2af49bdf21737eda9df3e5c4531b0e1d59da4ec3 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

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=1301 run_time=93
intel-19.5.281-Threads-release build_time=849 run_time=106
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

 blas/src/KokkosBlas1_fill.hpp                      |  23 ++
 blas/src/KokkosBlas1_iamax.hpp                     |  77 +++-
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_nrm1.hpp                      |  70 +++-
 blas/src/KokkosBlas1_nrm2.hpp                      |  81 +++-
 blas/src/KokkosBlas1_nrm2_squared.hpp              |  81 +++-
 blas/src/KokkosBlas1_nrm2w.hpp                     | 103 ++++-
 blas/src/KokkosBlas1_nrm2w_squared.hpp             | 122 ++++--
 blas/src/KokkosBlas1_nrminf.hpp                    |  59 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_sum.hpp                       |  89 ++++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 ++++++++++---------
 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  66451e00f6750614272d6846e50eec18ec693220 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release build_time=635 run_time=199
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3487
Running on machine: inouye
KokkosKernels Repository Status: 440738d78440fd53c622548028f573ddfc39594e Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: armpl/21.1.0
Testing compiler armpl/21.1.0
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-OpenMP-release
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-Serial-release
kokkos devices: Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
armpl-21.1.0-OpenMP-release build_time=1788 run_time=1117
armpl-21.1.0-Serial-release build_time=1679 run_time=257
salloc: Relinquishing job allocation 3487
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110
Finished: SUCCESS

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

 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3488
Running on machine: inouye
KokkosKernels Repository Status: 84809d89988e965806da1176f11b3866e8886a7b Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=2464 run_time=2036
salloc: Relinquishing job allocation 3488
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020
Finished: SUCCESS

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

 blas/src/KokkosBlas1_iamax.hpp                     |  77 +++-
 blas/src/KokkosBlas1_mult.hpp                      |  58 ++-
 blas/src/KokkosBlas1_nrm1.hpp                      |  70 +++-
 blas/src/KokkosBlas1_nrm2.hpp                      |  81 +++-
 blas/src/KokkosBlas1_nrm2_squared.hpp              |  81 +++-
 blas/src/KokkosBlas1_nrm2w.hpp                     | 103 ++++-
 blas/src/KokkosBlas1_nrm2w_squared.hpp             | 122 ++++--
 blas/src/KokkosBlas1_nrminf.hpp                    |  59 ++-
 blas/src/KokkosBlas1_reciprocal.hpp                |  43 ++-
 blas/src/KokkosBlas1_scal.hpp                      |  76 +++-
 blas/src/KokkosBlas1_sum.hpp                       |  89 ++++-
 blas/src/KokkosBlas1_update.hpp                    |  77 +++-
 blas/tpls/KokkosBlas1_abs_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_avail.hpp     |   7 +-
 blas/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp      | 389 ++++++++++---------
 blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  25 +-
 blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 308 ++++++++-------
 blas/tpls/KokkosBlas1_iamax_tpl_spec_avail.hpp     |  83 ++--
 blas/tpls/KokkosBlas1_iamax_tpl_spec_decl.hpp      | 117 +++---
 blas/tpls/KokkosBlas1_mult_tpl_spec_avail.hpp      |   3 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_avail.hpp      |  31 +-
 blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp       | 418 ++++++++++++++++-----
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_avail.hpp      |   9 +-
 blas/tpls/KokkosBlas1_nrm2_tpl_spec_decl.hpp       | 268 +++++++------
 blas/tpls/KokkosBlas1_nrm2w_tpl_spec_avail.hpp     |   2 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_avail.hpp    |   3 +-
 blas/tpls/KokkosBlas1_nrminf_tpl_spec_decl.hpp     | 108 +++---
 .../tpls/KokkosBlas1_reciprocal_tpl_spec_avail.hpp |   2 +-
 blas/tpls/KokkosBlas1_scal_tpl_spec_avail.hpp      |  56 +--
 blas/tpls/KokkosBlas1_scal_tpl_spec_decl.hpp       | 184 +++++----
 blas/tpls/KokkosBlas1_sum_tpl_spec_avail.hpp       |   2 +-
 blas/tpls/KokkosBlas1_update_tpl_spec_avail.hpp    |   3 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |   8 +-
 scripts/cm_test_all_sandia                         |   3 +
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 test_common/KokkosKernels_TestUtils.hpp            |   8 +-
 76 files changed, 3597 insertions(+), 1552 deletions(-)
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  159d57c5c9ae21bf890fcc6207199f7731ad1074 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 56ef02c0cd45b62c39b5a789488467331822499d Disable failed bit manipulation tests when compiled by NVHPC (#6088)

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=871 run_time=384
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@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: 596
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 184
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 211
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 481
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 442
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 531
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 584
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 385
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 380
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 382
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jgfouca/kokkos-kernels)
  • Branch: jgfouca/par_ilut_perf_test
  • SHA: c252e87
  • Mode: TEST_REPO

Pull Request Author: jgfouca

@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: 596
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 184
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 211
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 481
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 442
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 531
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 584
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 385
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 380
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 382
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH jgfouca/par_ilut_perf_test
KOKKOSKERNELS_SOURCE_REPO https://github.com/jgfouca/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c252e87
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f697557
PR_LABELS WIP
PULLREQUESTNUM 1799
TEST_REPO_ALIAS KOKKOSKERNELS

@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...

@kokkos-devops-admin
Copy link

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

@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

@brian-kelley brian-kelley merged commit cd242ba into kokkos:develop May 5, 2023
@jgfouca jgfouca deleted the jgfouca/par_ilut_perf_test branch August 9, 2023 20:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
WIP Work In Progress
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants