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

batched/eti: ETI host-level interfaces #1783

Merged
merged 28 commits into from
Jun 12, 2023

Conversation

e10harvey
Copy link
Contributor

@e10harvey e10harvey commented Apr 10, 2023

Related to #1730.

This PR adds ETI support for the HostLevel BatchedGemm interface.

High-level summary of below profiling results:

Before After
Compilation (20 times): Compilation (20 times):
Parsing (frontend): 104.3 s Parsing (frontend): 92.2 s
Codegen & opts (backend): 35.5 s Codegen & opts (backend): 35.1 s
**** Files that took longest to parse (compiler frontend): **** Files that took longest to parse (compiler frontend):
12843 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json 4744 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json
11405 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json 3982 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json
**** Files that took longest to codegen (compiler backend): **** Files that took longest to codegen (compiler backend):
4984 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json 1803 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json
3835 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json 1753 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json
**** Function sets that took longest to compile / optimize: **** Function sets that took longest to compile / optimize:
1014 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::__run() (216 times, avg 4 ms) 78 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::__run() (16 times, avg 4 ms)

Profiling (just the KokkosKernels Unit Tests) before these changes:

Analyzing build trace from 'profile.txt'...
**** Time summary:
Compilation (20 times):
  Parsing (frontend):          104.3 s
  Codegen & opts (backend):     35.5 s

**** Files that took longest to parse (compiler frontend):
 17794 ms: ftime-trace-artifacts//Test_Cuda_Sparse.cpp.json
 14688 ms: ftime-trace-artifacts//Test_Serial_Sparse.cpp.json
 12843 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json
 11405 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json
  7633 ms: ftime-trace-artifacts//Test_Cuda_Batched_Dense.cpp.json
  7586 ms: ftime-trace-artifacts//Test_Cuda_Blas.cpp.json
  6470 ms: ftime-trace-artifacts//Test_Serial_Batched_Dense.cpp.json
  6033 ms: ftime-trace-artifacts//Test_Serial_Blas.cpp.json
  5019 ms: ftime-trace-artifacts//Test_Cuda_Batched_Sparse.cpp.json
  4352 ms: ftime-trace-artifacts//Test_Serial_Batched_Sparse.cpp.json

**** Files that took longest to codegen (compiler backend):
  7258 ms: ftime-trace-artifacts//Test_Cuda_Sparse.cpp.json
  6036 ms: ftime-trace-artifacts//Test_Serial_Sparse.cpp.json
  4984 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json
  3835 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json
  3161 ms: ftime-trace-artifacts//Test_Cuda_Blas.cpp.json
  2897 ms: ftime-trace-artifacts//Test_Serial_Batched_Dense.cpp.json
  2889 ms: ftime-trace-artifacts//Test_Cuda_Batched_Dense.cpp.json
  2619 ms: ftime-trace-artifacts//Test_Serial_Blas.cpp.json
  1128 ms: ftime-trace-artifacts//Test_Serial_Batched_Sparse.cpp.json
   709 ms: ftime-trace-artifacts//Test_Cuda_Batched_Sparse.cpp.json

**** Templates that took longest to instantiate:
  2921 ms: Test::generate_structured_matrix3D<KokkosSparse::CrsMatrix<double, i... (2 times, avg 1460 ms)
  2869 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (2 times, avg 1434 ms)
  2606 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (32 times, avg 81 ms)
  1807 ms: Kokkos::Random_XorShift64_Pool<>::Random_XorShift64_Pool (5 times, avg 361 ms)
  1805 ms: Kokkos::Random_XorShift64_Pool<>::init (5 times, avg 361 ms)
  1630 ms: Kokkos::Random_XorShift64_Pool<Kokkos::Serial>::Random_XorShift64_Pool (7 times, avg 232 ms)
  1627 ms: Kokkos::Random_XorShift64_Pool<Kokkos::Serial>::init (7 times, avg 232 ms)
  1625 ms: testSpMVBsrMatrix<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 1625 ms)
  1597 ms: testSpMVBsrMatrix<double, int, unsigned long, Kokkos::Serial> (1 times, avg 1597 ms)
  1534 ms: test_block_gauss_seidel_rank1<KokkosSparse::SparseMatrixFormat::BSR,... (1 times, avg 1534 ms)
  1528 ms: Test_Bsr::check_bsrm_times_v<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 1528 ms)
  1512 ms: test_spmv_struct_3D<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 1512 ms)
  1493 ms: Test_Bsr::check_bsrm_times_v<double, int, unsigned long, Kokkos::Ser... (1 times, avg 1493 ms)
  1491 ms: Test::generate_structured_matrix3D<KokkosSparse::CrsMatrix<double, i... (1 times, avg 1491 ms)
  1471 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (1 times, avg 1471 ms)
  1465 ms: test_spmv_struct_3D<double, int, unsigned long, Kokkos::Serial> (1 times, avg 1465 ms)
  1444 ms: Test::generate_structured_matrix3D<KokkosSparse::CrsMatrix<double, i... (1 times, avg 1444 ms)
  1424 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (1 times, avg 1424 ms)
  1419 ms: test_batched_serial_GMRES<Kokkos::Cuda, double> (1 times, avg 1419 ms)
  1419 ms: Test::GMRES::impl_test_batched_GMRES<Kokkos::Cuda, Kokkos::View<doub... (1 times, avg 1419 ms)
  1307 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (16 times, avg 81 ms)
  1291 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (16 times, avg 80 ms)
  1157 ms: test_balloon_clustering<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 1157 ms)
  1030 ms: test_block_gauss_seidel_rank1<KokkosSparse::SparseMatrixFormat::BSR,... (1 times, avg 1030 ms)
   976 ms: test_batched_axpy<Kokkos::Cuda, double, double> (1 times, avg 976 ms)
   976 ms: Test::Axpy::impl_test_batched_axpy<Kokkos::Cuda, Kokkos::View<double... (1 times, avg 976 ms)
   973 ms: Test::doAllCsMat<Kokkos::Cuda> (1 times, avg 973 ms)
   947 ms: test_sptrsv<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 947 ms)
   947 ms: Test::run_test_sptrsv<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 947 ms)
   911 ms: test_batched_serial_GMRES<Kokkos::Serial, double> (1 times, avg 911 ms)

**** Template sets that took longest to instantiate:
 28400 ms: Kokkos::parallel_for<$> (2361 times, avg 12 ms)
 21002 ms: Kokkos::Impl::ParallelFor<$>::execute (2355 times, avg 8 ms)
 19459 ms: test_batched_gemm<$> (88 times, avg 221 ms)
 16427 ms: test_batched_gemm_with_layout<$> (48 times, avg 342 ms)
 16410 ms: Test::impl_test_batched_gemm<$> (48 times, avg 341 ms)
 14142 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::invoke (496 times, avg 28 ms)
 14121 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::__run (496 times, avg 28 ms)
 14109 ms: Kokkos::deep_copy<$> (391 times, avg 36 ms)
 12944 ms: KokkosBatched::BatchedGemm<$> (80 times, avg 161 ms)
 12618 ms: Kokkos::Impl::ParallelFor<$>::exec<$> (1008 times, avg 12 ms)
 10864 ms: Kokkos::Impl::CudaParallelLaunchKernelFunc<$>::get_kernel_func (1044 times, avg 10 ms)
 10530 ms: Kokkos::Impl::CudaParallelLaunchImpl<$>::get_cuda_func_attributes (959 times, avg 10 ms)
 10099 ms: Kokkos::Impl::view_copy<$> (340 times, avg 29 ms)
  9479 ms: Kokkos::Impl::cuda_parallel_launch_local_memory<$> (1033 times, avg 9 ms)
  9454 ms: Kokkos::View<$> (874 times, avg 10 ms)
  8729 ms: Test::impl_test_batched_gemm_with_handle<$> (48 times, avg 181 ms)
  6090 ms: Kokkos::Impl::ParallelFor<$>::exec_team<$> (396 times, avg 15 ms)
  5857 ms: Test::generate_structured_matrix3D<$> (4 times, avg 1464 ms)
  5766 ms: Test::fill_3D_matrix_functor<$>::compute (4 times, avg 1441 ms)
  5716 ms: Kokkos::Impl::ViewCopy<$>::ViewCopy (648 times, avg 8 ms)
  4914 ms: Kokkos::Impl::TeamPolicyInternal<$>::team_size_max<$> (254 times, avg 19 ms)
  4437 ms: Kokkos::View<$>::View<$> (1288 times, avg 3 ms)
  3536 ms: Kokkos::Impl::ParallelFor<$>::ParallelFor (882 times, avg 4 ms)
  3447 ms: Kokkos::Random_XorShift64_Pool<$>::Random_XorShift64_Pool (14 times, avg 246 ms)
  3442 ms: Kokkos::Random_XorShift64_Pool<$>::init (14 times, avg 245 ms)
  3413 ms: Kokkos::Impl::ParallelFor<$>::exec_range<$> (424 times, avg 8 ms)
  3222 ms: testSpMVBsrMatrix<$> (2 times, avg 1611 ms)
  3022 ms: Test_Bsr::check_bsrm_times_v<$> (2 times, avg 1511 ms)
  3015 ms: Test::Gemm::impl_test_batched_gemm<$> (40 times, avg 75 ms)
  2977 ms: test_spmv_struct_3D<$> (2 times, avg 1488 ms)

**** Functions that took longest to compile:
    57 ms: void Test::run_test_sptrsv<double, int, unsigned long, Kokkos::Cuda>() (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    57 ms: void Test::run_test_sptrsv<double, int, unsigned long, Kokkos::Seria... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    22 ms: void KokkosSparse::Experimental::split_crsmat<KokkosSparse::CrsMatri... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    21 ms: void KokkosSparse::Experimental::split_crsmat<KokkosSparse::CrsMatri... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    20 ms: void Test::run_test_spiluk<double, int, unsigned long, Kokkos::Cuda>() (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    20 ms: void Test::run_test_spiluk<double, int, unsigned long, Kokkos::Seria... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    18 ms: int KokkosBatched::SerialGMRES::invoke<KokkosBatched::CrsMatrix<Kokk... (/path/to/KOKKOS.base/kokkos-kernels/batched/sparse/unit_test/backends/Test_Serial_Batched_Sparse.cpp)
    16 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    16 ms: void Test::generalTest<int, Kokkos::Serial>(bool&, std::ostream&) (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    15 ms: void test_spadd<double, int, unsigned long, Kokkos::Cuda>(int, int, ... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    14 ms: void test_spadd<double, int, unsigned long, Kokkos::Serial>(int, int... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    14 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void TestRemoveCrsMatrixZeros::getTestInput<KokkosSparse::CrsMatrix<... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    13 ms: void TestRemoveCrsMatrixZeros::getTestInput<KokkosSparse::CrsMatrix<... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Cuda, Kokkos::... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Cuda_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Serial, Kokkos... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Cuda, Kokkos::... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Cuda_Batched_GEMM.cpp)

**** Function sets that took longest to compile / optimize:
  2373 ms: void Kokkos::deep_copy<$>(Kokkos::View<$> const&, Kokkos::View<$> co... (338 times, avg 7 ms)
  1014 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::__run() (216 times, avg 4 ms)
   449 ms: Kokkos::Impl::ParallelConstructName<$>::ParallelConstructName(std::_... (779 times, avg 0 ms)
   446 ms: Kokkos::View<$>::View<$>(Kokkos::Impl::ViewCtorProp<$> const&, std::... (298 times, avg 1 ms)
   423 ms: void Test::impl_test_batched_gemm_with_handle<$>(KokkosBatched::Batc... (32 times, avg 13 ms)
   395 ms: void Kokkos::Impl::view_copy<$>(Kokkos::View<$> const&, Kokkos::View... (340 times, avg 1 ms)
   276 ms: Kokkos::Impl::ParallelFor<$>::ParallelFor(KokkosBatched::Impl::Batch... (148 times, avg 1 ms)
   264 ms: void Test::impl_test_batched_gemm<$>(int, int, int, int, int, int, i... (48 times, avg 5 ms)
   224 ms: void Test::Trmm::impl_test_batched_trmm<$>(int, int, int, char const*) (36 times, avg 6 ms)
   200 ms: void Test::impl_test_batched_gemm_with_handle<$>(KokkosBatched::Batc... (16 times, avg 12 ms)
   192 ms: void Test::Gemm::impl_test_batched_gemm<$>(int, int, int, int, int, ... (40 times, avg 4 ms)
   189 ms: void Test::TeamGemm::impl_test_batched_teamgemm<$>(int, int, int, in... (40 times, avg 4 ms)
   185 ms: Kokkos::Impl::SharedAllocationRecord<$>* Kokkos::Impl::ViewMapping<$... (180 times, avg 1 ms)
   162 ms: void Kokkos::deep_copy<$>(Kokkos::View<$> const&, Kokkos::ViewTraits... (57 times, avg 2 ms)
   143 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::Functor<$>::Functor(Kokko... (216 times, avg 0 ms)
   136 ms: void Test::impl_verify_vector_view<$>(Kokkos::View<$> const&, Kokkos... (72 times, avg 1 ms)
   135 ms: Kokkos::Impl::ViewCopy<$>::ViewCopy(Kokkos::View<$> const&, Kokkos::... (188 times, avg 0 ms)
   125 ms: void Kokkos::parallel_for<$>(std::__cxx11::basic_string<$> const&, K... (216 times, avg 0 ms)
   124 ms: Kokkos::Impl::SharedAllocationRecord<$>* Kokkos::Impl::ViewMapping<$... (117 times, avg 1 ms)
   114 ms: void Test::run_test_sptrsv<$>() (2 times, avg 57 ms)
   111 ms: void Test::TeamVectorGemm::impl_test_batched_teamvectorgemm<$>(int, ... (24 times, avg 4 ms)
   103 ms: int KokkosBatched::BatchedGemm<$>(KokkosBatched::BatchedGemmHandle*,... (24 times, avg 4 ms)
   103 ms: Kokkos::Impl::ParallelFor<$>::execute() const (198 times, avg 0 ms)
    95 ms: void Kokkos::parallel_for<$>(std::__cxx11::basic_string<$> const&, K... (148 times, avg 0 ms)
    82 ms: void Test::GEMVTest<$>::run_case<$>(char, double, Kokkos::View<$>, K... (60 times, avg 1 ms)
    80 ms: void Test::check_crs_matrix<$>(KokkosSparse::CrsMatrix<$>, Kokkos::V... (18 times, avg 4 ms)
    78 ms: void Kokkos::parallel_for<$>(std::__cxx11::basic_string<$> const&, K... (130 times, avg 0 ms)
    77 ms: void Test::check_ccs_matrix<$>(KokkosSparse::CcsMatrix<$>, Kokkos::V... (18 times, avg 4 ms)
    77 ms: void Test::TeamTrsm::impl_test_batched_trsm<$>(int, int, int) (20 times, avg 3 ms)
    76 ms: Kokkos::Impl::ParallelFor<$>::ParallelFor(KokkosSparse::Impl::Transp... (28 times, avg 2 ms)

*** Expensive headers:
6639 ms: /path/to/KOKKOS.base/kokkos-kernels/test_common/Test_Cuda.hpp (included 5 times, avg 1327 ms), included via:
  Test_Cuda_Batched_Dense.cpp.json  (1528 ms)
  Test_Cuda_Blas.cpp.json  (1319 ms)
  Test_Cuda_Sparse.cpp.json  (1296 ms)
  Test_Cuda_Batched_Sparse.cpp.json  (1278 ms)
  Test_Cuda_Batched_GEMM.cpp.json  (1217 ms)

6370 ms: /path/to/KOKKOS.base/kokkos-kernels/test_common/Test_Serial.hpp (included 5 times, avg 1274 ms), included via:
  Test_Serial_Sparse.cpp.json  (1321 ms)
  Test_Serial_Batched_Dense.cpp.json  (1278 ms)
  Test_Serial_Blas.cpp.json  (1263 ms)
  Test_Serial_Batched_GEMM.cpp.json  (1261 ms)
  Test_Serial_Batched_Sparse.cpp.json  (1245 ms)

3843 ms: /path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/Test_Sparse.hpp (included 2 times, avg 1921 ms), included via:
  Test_Serial_Sparse.cpp.json  (1945 ms)
  Test_Cuda_Sparse.cpp.json  (1898 ms)

2143 ms: /home/projects/x86-64/clang/13.0.0/lib/clang/13.0.0/include/__clang_cuda_runtime_wrapper.h (included 10 times, avg 214 ms), included via:
  Test_Cuda_Batched_Dense.cpp.json  (229 ms)
  Test_Serial_Sparse.cpp.json  (220 ms)
  Test_Cuda_Blas.cpp.json  (217 ms)
  Test_Cuda_Sparse.cpp.json  (217 ms)
  Test_Cuda_Batched_Sparse.cpp.json  (213 ms)
  Test_Serial_Batched_GEMM.cpp.json  (210 ms)
  ...

1435 ms: /path/to/KOKKOS.base/kokkos-kernels/blas/unit_test/Test_Blas.hpp (included 2 times, avg 717 ms), included via:
  Test_Cuda_Blas.cpp.json  (735 ms)
  Test_Serial_Blas.cpp.json  (699 ms)

1317 ms: /path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/Test_Batched_Dense.hpp (included 2 times, avg 658 ms), included via:
  Test_Cuda_Batched_Dense.cpp.json  (692 ms)
  Test_Serial_Batched_Dense.cpp.json  (624 ms)

816 ms: /path/to/KOKKOS.base/kokkos-kernels/batched/sparse/unit_test/Test_Batched_Sparse.hpp (included 2 times, avg 408 ms), included via:
  Test_Cuda_Batched_Sparse.cpp.json  (415 ms)
  Test_Serial_Batched_Sparse.cpp.json  (400 ms)

724 ms: /path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/Test_Batched_Dense_GEMM.hpp (included 2 times, avg 362 ms), included via:
  Test_Serial_Batched_GEMM.cpp.json  (366 ms)
  Test_Cuda_Batched_GEMM.cpp.json  (357 ms)

  done in 0.4s.

Profiling after these changes:

Analyzing build trace from 'profile.txt'...
**** Time summary:
Compilation (20 times):
  Parsing (frontend):           92.2 s
  Codegen & opts (backend):     35.1 s

**** Files that took longest to parse (compiler frontend):
 19865 ms: ftime-trace-artifacts//Test_Cuda_Sparse.cpp.json
 16064 ms: ftime-trace-artifacts//Test_Serial_Sparse.cpp.json
  7409 ms: ftime-trace-artifacts//Test_Cuda_Blas.cpp.json
  7394 ms: ftime-trace-artifacts//Test_Cuda_Batched_Dense.cpp.json
  6804 ms: ftime-trace-artifacts//Test_Serial_Batched_Dense.cpp.json
  6111 ms: ftime-trace-artifacts//Test_Serial_Blas.cpp.json
  5039 ms: ftime-trace-artifacts//Test_Cuda_Batched_Sparse.cpp.json
  4744 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json
  4409 ms: ftime-trace-artifacts//Test_Serial_Batched_Sparse.cpp.json
  3982 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json

**** Files that took longest to codegen (compiler backend):
  9466 ms: ftime-trace-artifacts//Test_Cuda_Sparse.cpp.json
  8080 ms: ftime-trace-artifacts//Test_Serial_Sparse.cpp.json
  3127 ms: ftime-trace-artifacts//Test_Cuda_Blas.cpp.json
  3105 ms: ftime-trace-artifacts//Test_Cuda_Batched_Dense.cpp.json
  3104 ms: ftime-trace-artifacts//Test_Serial_Batched_Dense.cpp.json
  2685 ms: ftime-trace-artifacts//Test_Serial_Blas.cpp.json
  1803 ms: ftime-trace-artifacts//Test_Cuda_Batched_GEMM.cpp.json
  1753 ms: ftime-trace-artifacts//Test_Serial_Batched_GEMM.cpp.json
  1209 ms: ftime-trace-artifacts//Test_Serial_Batched_Sparse.cpp.json
   725 ms: ftime-trace-artifacts//Test_Cuda_Batched_Sparse.cpp.json

**** Templates that took longest to instantiate:
  3912 ms: Test::doAllCoo2Crs<Kokkos::Cuda> (1 times, avg 3912 ms)
  3912 ms: Test::doAllLayoutsCoo2Crs<Kokkos::Cuda> (1 times, avg 3912 ms)
  3366 ms: Test::doAllScalarsCoo2Crs<Kokkos::LayoutLeft, Kokkos::Cuda> (1 times, avg 3366 ms)
  2650 ms: Test::doAllCoo2Crs<Kokkos::Serial> (1 times, avg 2650 ms)
  2650 ms: Test::doAllLayoutsCoo2Crs<Kokkos::Serial> (1 times, avg 2650 ms)
  2191 ms: Test::doAllScalarsCoo2Crs<Kokkos::LayoutLeft, Kokkos::Serial> (1 times, avg 2191 ms)
  1892 ms: Kokkos::Random_XorShift64_Pool<>::Random_XorShift64_Pool (5 times, avg 378 ms)
  1890 ms: Kokkos::Random_XorShift64_Pool<>::init (5 times, avg 378 ms)
  1762 ms: Test::doCoo2Crs<float, Kokkos::LayoutLeft, Kokkos::Cuda> (1 times, avg 1762 ms)
  1557 ms: test_spmv_struct_3D<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 1557 ms)
  1536 ms: Test::generate_structured_matrix3D<KokkosSparse::CrsMatrix<double, i... (1 times, avg 1536 ms)
  1516 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (1 times, avg 1516 ms)
  1497 ms: Kokkos::Random_XorShift64_Pool<Kokkos::Serial>::Random_XorShift64_Pool (7 times, avg 213 ms)
  1494 ms: Kokkos::Random_XorShift64_Pool<Kokkos::Serial>::init (7 times, avg 213 ms)
  1483 ms: test_spmv_struct_3D<double, int, unsigned long, Kokkos::Serial> (1 times, avg 1483 ms)
  1463 ms: Test::generate_structured_matrix3D<KokkosSparse::CrsMatrix<double, i... (1 times, avg 1463 ms)
  1443 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (1 times, avg 1443 ms)
  1385 ms: test_batched_serial_GMRES<Kokkos::Cuda, double> (1 times, avg 1385 ms)
  1385 ms: Test::GMRES::impl_test_batched_GMRES<Kokkos::Cuda, Kokkos::View<doub... (1 times, avg 1385 ms)
  1336 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (16 times, avg 83 ms)
  1304 ms: Test::fill_3D_matrix_functor<KokkosSparse::CrsMatrix<double, int, Ko... (16 times, avg 81 ms)
  1112 ms: test_block_gauss_seidel_rank1<KokkosSparse::SparseMatrixFormat::BSR,... (1 times, avg 1112 ms)
  1104 ms: Test::doCoo2Crs<float, Kokkos::LayoutLeft, Kokkos::Serial> (1 times, avg 1104 ms)
   953 ms: Test::doAllCrs2Coo<Kokkos::Cuda> (1 times, avg 953 ms)
   953 ms: Test::doAllLayoutsCrs2Coo<Kokkos::Cuda> (1 times, avg 953 ms)
   936 ms: test_sptrsv<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 936 ms)
   936 ms: Test::run_test_sptrsv<double, int, unsigned long, Kokkos::Cuda> (1 times, avg 936 ms)
   889 ms: test_batched_gemm<Kokkos::Cuda, Kokkos::Experimental::Impl::floating... (1 times, avg 889 ms)
   888 ms: Test::Gemm::impl_test_batched_gemm<Kokkos::Cuda, Kokkos::View<Kokkos... (1 times, avg 888 ms)
   883 ms: test_batched_serial_GMRES<Kokkos::Serial, double> (1 times, avg 883 ms)

**** Template sets that took longest to instantiate:
 20589 ms: Kokkos::parallel_for<$> (1851 times, avg 11 ms)
 15329 ms: Kokkos::deep_copy<$> (481 times, avg 31 ms)
 14416 ms: Kokkos::Impl::ParallelFor<$>::execute (1840 times, avg 7 ms)
 10719 ms: Kokkos::View<$> (996 times, avg 10 ms)
 10605 ms: Kokkos::Impl::view_copy<$> (426 times, avg 24 ms)
  6985 ms: Kokkos::Impl::CudaParallelLaunchKernelFunc<$>::get_kernel_func (813 times, avg 8 ms)
  6562 ms: Test::doAllCoo2Crs<$> (2 times, avg 3281 ms)
  6562 ms: Test::doAllLayoutsCoo2Crs<$> (2 times, avg 3281 ms)
  6562 ms: Test::doAllScalarsCoo2Crs<$> (4 times, avg 1640 ms)
  6561 ms: Test::doCoo2Crs<$> (16 times, avg 410 ms)
  6544 ms: Kokkos::Impl::CudaParallelLaunchImpl<$>::get_cuda_func_attributes (726 times, avg 9 ms)
  6112 ms: Kokkos::Impl::ViewCopy<$>::ViewCopy (724 times, avg 8 ms)
  6104 ms: Kokkos::Impl::ParallelFor<$>::exec<$> (717 times, avg 8 ms)
  5618 ms: Kokkos::Impl::cuda_parallel_launch_local_memory<$> (803 times, avg 6 ms)
  4133 ms: Kokkos::View<$>::View<$> (1559 times, avg 2 ms)
  3800 ms: test_batched_gemm<$> (48 times, avg 79 ms)
  3590 ms: Kokkos::Random_XorShift64_Pool<$>::Random_XorShift64_Pool (16 times, avg 224 ms)
  3585 ms: Kokkos::Random_XorShift64_Pool<$>::init (16 times, avg 224 ms)
  3499 ms: Kokkos::Impl::ParallelFor<$>::exec_range<$> (413 times, avg 8 ms)
  3298 ms: Test::check_crs_matrix<$> (40 times, avg 82 ms)
  3041 ms: test_spmv_struct_3D<$> (2 times, avg 1520 ms)
  3000 ms: Test::Gemm::impl_test_batched_gemm<$> (40 times, avg 75 ms)
  2999 ms: Test::generate_structured_matrix3D<$> (2 times, avg 1499 ms)
  2959 ms: Test::fill_3D_matrix_functor<$>::compute (2 times, avg 1479 ms)
  2912 ms: Kokkos::Impl::ParallelFor<$>::ParallelFor (400 times, avg 7 ms)
  2269 ms: test_batched_serial_GMRES<$> (2 times, avg 1134 ms)
  2268 ms: Test::GMRES::impl_test_batched_GMRES<$> (2 times, avg 1134 ms)
  2208 ms: Kokkos::Impl::ParallelFor<$>::exec_team<$> (164 times, avg 13 ms)
  2187 ms: Kokkos::Impl::ViewCopy<$> (112 times, avg 19 ms)
  2044 ms: KokkosSparse::Impl::Coo2Crs<$>::Coo2Crs (20 times, avg 102 ms)

**** Functions that took longest to compile:
    58 ms: void Test::run_test_sptrsv<double, int, unsigned long, Kokkos::Seria... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    57 ms: void Test::run_test_sptrsv<double, int, unsigned long, Kokkos::Cuda>() (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    23 ms: void Kokkos::deep_copy<Kokkos::complex<double>*, Kokkos::LayoutRight... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    23 ms: void KokkosSparse::Experimental::split_crsmat<KokkosSparse::CrsMatri... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    21 ms: void KokkosSparse::Experimental::split_crsmat<KokkosSparse::CrsMatri... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    20 ms: void Test::run_test_spiluk<double, int, unsigned long, Kokkos::Cuda>() (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    20 ms: void Test::run_test_spiluk<double, int, unsigned long, Kokkos::Seria... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    19 ms: int KokkosBatched::SerialGMRES::invoke<KokkosBatched::CrsMatrix<Kokk... (/path/to/KOKKOS.base/kokkos-kernels/batched/sparse/unit_test/backends/Test_Serial_Batched_Sparse.cpp)
    18 ms: void Test::run_test_spiluk_streams<double, int, unsigned long, Kokko... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    18 ms: void Test::run_test_spiluk_streams<double, int, unsigned long, Kokko... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    16 ms: void Test::generalTest<int, Kokkos::Serial>(bool&, std::ostream&) (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    14 ms: void test_spadd<double, int, unsigned long, Kokkos::Cuda>(int, int, ... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    14 ms: void testSortAndMerge<Kokkos::Cuda>(bool, int, bool, int) (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    14 ms: void testSortAndMerge<Kokkos::Serial>(bool, int, bool, int) (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    13 ms: void test_spadd<double, int, unsigned long, Kokkos::Serial>(int, int... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    13 ms: void TestRemoveCrsMatrixZeros::getTestInput<KokkosSparse::CrsMatrix<... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    13 ms: void TestRemoveCrsMatrixZeros::getTestInput<KokkosSparse::CrsMatrix<... (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    13 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    12 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Cuda_Batched_GEMM.cpp)
    12 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Cuda_Batched_GEMM.cpp)
    12 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Cuda_Batched_GEMM.cpp)
    12 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Cuda_Batched_GEMM.cpp)
    12 ms: void Test::impl_test_batched_gemm_with_handle<Kokkos::Device<Kokkos:... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_GEMM.cpp)
    11 ms: void Test::impl_test_batched_vector_arithmatic<KokkosBatched::SIMD<d... (/path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_Dense.cpp)
    11 ms: void Test::impl_test_gemv<Kokkos::View<double**, Kokkos::LayoutLeft,... (/path/to/KOKKOS.base/kokkos-kernels/blas/unit_test/backends/Test_Cuda_Blas.cpp)
    11 ms: void Test::run_test_mdf<double, int, unsigned long, Kokkos::Cuda>() (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Cuda_Sparse.cpp)
    11 ms: void Test::run_test_mdf<double, int, unsigned long, Kokkos::Serial>() (/path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/backends/Test_Serial_Sparse.cpp)
    11 ms: void Test::impl_test_gemv<Kokkos::View<double**, Kokkos::LayoutLeft,... (/path/to/KOKKOS.base/kokkos-kernels/blas/unit_test/backends/Test_Serial_Blas.cpp)

**** Function sets that took longest to compile / optimize:
  2956 ms: void Kokkos::deep_copy<$>(Kokkos::View<$> const&, Kokkos::View<$> co... (422 times, avg 7 ms)
   568 ms: Kokkos::View<$>::View<$>(Kokkos::Impl::ViewCtorProp<$> const&, std::... (384 times, avg 1 ms)
   495 ms: void Kokkos::Impl::view_copy<$>(Kokkos::View<$> const&, Kokkos::View... (424 times, avg 1 ms)
   278 ms: Kokkos::Impl::ParallelConstructName<$>::ParallelConstructName(std::_... (486 times, avg 0 ms)
   223 ms: Kokkos::Impl::SharedAllocationRecord<$>* Kokkos::Impl::ViewMapping<$... (218 times, avg 1 ms)
   218 ms: void Test::Trmm::impl_test_batched_trmm<$>(int, int, int, char const*) (36 times, avg 6 ms)
   197 ms: void Test::Gemm::impl_test_batched_gemm<$>(int, int, int, int, int, ... (40 times, avg 4 ms)
   195 ms: void Test::check_crs_matrix<$>(KokkosSparse::CrsMatrix<$>, Kokkos::V... (22 times, avg 8 ms)
   195 ms: void Test::TeamGemm::impl_test_batched_teamgemm<$>(int, int, int, in... (40 times, avg 4 ms)
   169 ms: Kokkos::Impl::SharedAllocationRecord<$>* Kokkos::Impl::ViewMapping<$... (165 times, avg 1 ms)
   164 ms: void Kokkos::deep_copy<$>(Kokkos::View<$> const&, Kokkos::ViewTraits... (61 times, avg 2 ms)
   154 ms: Kokkos::Impl::ViewCopy<$>::ViewCopy(Kokkos::View<$> const&, Kokkos::... (208 times, avg 0 ms)
   132 ms: void Test::impl_verify_vector_view<$>(Kokkos::View<$> const&, Kokkos... (72 times, avg 1 ms)
   123 ms: KokkosSparse::Impl::Coo2Crs<$>::Coo2Crs(unsigned long, unsigned long... (16 times, avg 7 ms)
   116 ms: void Test::run_test_sptrsv<$>() (2 times, avg 58 ms)
   115 ms: void Test::TeamVectorGemm::impl_test_batched_teamvectorgemm<$>(int, ... (24 times, avg 4 ms)
   104 ms: void Test::impl_test_batched_gemm_with_handle<$>(KokkosBatched::Batc... (8 times, avg 13 ms)
   100 ms: void Kokkos::parallel_for<$>(std::__cxx11::basic_string<$> const&, K... (160 times, avg 0 ms)
    82 ms: void Test::check_crs_matrix<$>(KokkosSparse::CrsMatrix<$>, Kokkos::V... (18 times, avg 4 ms)
    82 ms: void Test::GEMVTest<$>::run_case<$>(char, double, Kokkos::View<$>, K... (60 times, avg 1 ms)
    81 ms: void Kokkos::parallel_for<$>(std::__cxx11::basic_string<$> const&, K... (134 times, avg 0 ms)
    81 ms: Kokkos::Impl::ParallelFor<$>::execute() const (145 times, avg 0 ms)
    79 ms: KokkosSparse::CrsMatrix<$> Test::vanilla_coo2crs<$>(unsigned long, u... (18 times, avg 4 ms)
    79 ms: void Kokkos::parallel_for<$>(std::__cxx11::basic_string<$> const&, K... (132 times, avg 0 ms)
    78 ms: KokkosBatched::Impl::BatchedDblBufGemm<$>::__run() (16 times, avg 4 ms)
    76 ms: void Test::Trsm::impl_test_batched_trsm<$>(int, int, int) (20 times, avg 3 ms)
    76 ms: void Test::check_ccs_matrix<$>(KokkosSparse::CcsMatrix<$>, Kokkos::V... (18 times, avg 4 ms)
    75 ms: void Test::TeamTrsm::impl_test_batched_trsm<$>(int, int, int) (20 times, avg 3 ms)
    74 ms: Kokkos::Impl::ParallelFor<$>::ParallelFor(KokkosSparse::Impl::Transp... (28 times, avg 2 ms)
    71 ms: Kokkos::Impl::ViewValueFunctor<$>::parallel_for_implementation() (57 times, avg 1 ms)

*** Expensive headers:
6442 ms: /path/to/KOKKOS.base/kokkos-kernels/test_common/Test_Cuda.hpp (included 5 times, avg 1288 ms), included via:
  Test_Cuda_Batched_Sparse.cpp.json  (1303 ms)
  Test_Cuda_Blas.cpp.json  (1302 ms)
  Test_Cuda_Sparse.cpp.json  (1298 ms)
  Test_Cuda_Batched_Dense.cpp.json  (1280 ms)
  Test_Cuda_Batched_GEMM.cpp.json  (1257 ms)

6348 ms: /path/to/KOKKOS.base/kokkos-kernels/test_common/Test_Serial.hpp (included 5 times, avg 1269 ms), included via:
  Test_Serial_Sparse.cpp.json  (1298 ms)
  Test_Serial_Blas.cpp.json  (1266 ms)
  Test_Serial_Batched_Dense.cpp.json  (1262 ms)
  Test_Serial_Batched_GEMM.cpp.json  (1261 ms)
  Test_Serial_Batched_Sparse.cpp.json  (1258 ms)

4538 ms: /path/to/KOKKOS.base/kokkos-kernels/sparse/unit_test/Test_Sparse.hpp (included 2 times, avg 2269 ms), included via:
  Test_Serial_Sparse.cpp.json  (2279 ms)
  Test_Cuda_Sparse.cpp.json  (2259 ms)

2123 ms: /path/to/clang/13.0.0/lib/clang/13.0.0/include/__clang_cuda_runtime_wrapper.h (included 10 times, avg 212 ms), included via:
  Test_Cuda_Blas.cpp.json  (214 ms)
  Test_Cuda_Sparse.cpp.json  (214 ms)
  Test_Serial_Sparse.cpp.json  (214 ms)
  Test_Cuda_Batched_Dense.cpp.json  (213 ms)
  Test_Cuda_Batched_Sparse.cpp.json  (213 ms)
  Test_Serial_Blas.cpp.json  (211 ms)
  ...

1570 ms: /path/to/KOKKOS.base/kokkos-kernels/blas/unit_test/Test_Blas.hpp (included 2 times, avg 785 ms), included via:
  Test_Cuda_Blas.cpp.json  (819 ms)
  Test_Serial_Blas.cpp.json  (751 ms)

1180 ms: /path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/Test_Batched_Dense.hpp (included 2 times, avg 590 ms), included via:
  Test_Serial_Batched_Dense.cpp.json  (607 ms)
  Test_Cuda_Batched_Dense.cpp.json  (572 ms)

854 ms: /path/to/KOKKOS.base/kokkos-kernels/batched/sparse/unit_test/Test_Batched_Sparse.hpp (included 2 times, avg 427 ms), included via:
  Test_Cuda_Batched_Sparse.cpp.json  (430 ms)
  Test_Serial_Batched_Sparse.cpp.json  (423 ms)

729 ms: /path/to/KOKKOS.base/kokkos-kernels/batched/dense/unit_test/Test_Batched_Dense_GEMM.hpp (included 2 times, avg 364 ms), included via:
  Test_Cuda_Batched_GEMM.cpp.json  (364 ms)
  Test_Serial_Batched_GEMM.cpp.json  (364 ms)

  done in 0.4s.

@e10harvey e10harvey force-pushed the batched_gemm_eti branch from 0fd1be2 to c3f771a Compare May 1, 2023 17:45
@e10harvey e10harvey removed the AT: WIP label May 1, 2023
@e10harvey e10harvey changed the title batched/dense: ETI host-level interfaces batched/eti: ETI host-level interfaces May 1, 2023
@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: 585
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 170
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 200
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 470
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 431
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 520
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 573
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 374
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 369
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 371
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: batched_gemm_eti
  • SHA: 986d926
  • Mode: TEST_REPO

Pull Request Author: e10harvey

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 170
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 200
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 470
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 431
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 520
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 573
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 374
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 369
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 371
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 986d926
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 585 (click to expand)

	at java.lang.Thread.run(Thread.java:750)
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/jenkins7317095862484712069.sh
java.net.SocketException: Connection timed out (Read failed)
	at java.net.SocketInputStream.socketRead0(Native Method)
	at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
	at java.net.SocketInputStream.read(SocketInputStream.java:171)
	at java.net.SocketInputStream.read(SocketInputStream.java:141)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.fill_buffer(CipherInputStream.java:41)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.internal_read(CipherInputStream.java:52)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.getBlock(CipherInputStream.java:79)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.read(CipherInputStream.java:108)
	at com.trilead.ssh2.transport.TransportConnection.receiveMessage(TransportConnection.java:232)
	at com.trilead.ssh2.transport.TransportManager.receiveLoop(TransportManager.java:706)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:502)
Caused: java.io.IOException: The connection is being shutdown
	at com.trilead.ssh2.channel.ChannelManager.handleEndMessage(ChannelManager.java:1524)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:535)
Caused: java.io.IOException: SSH channel is closed
	at com.trilead.ssh2.channel.ChannelManager.ioException(ChannelManager.java:1542)
	at com.trilead.ssh2.channel.ChannelManager.sendData(ChannelManager.java:375)
	at com.trilead.ssh2.channel.ChannelOutputStream.write(ChannelOutputStream.java:63)
	at com.trilead.ssh2.channel.ChannelOutputStream.write(ChannelOutputStream.java:68)
	at hudson.remoting.ChunkedOutputStream.sendFrame(ChunkedOutputStream.java:93)
	at hudson.remoting.ChunkedOutputStream.sendBreak(ChunkedOutputStream.java:66)
	at hudson.remoting.ChunkedCommandTransport.writeBlock(ChunkedCommandTransport.java:46)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.write(AbstractSynchronousByteArrayCommandTransport.java:46)
	at hudson.remoting.Channel.send(Channel.java:765)
	at hudson.remoting.Channel.close(Channel.java:1480)
	at hudson.remoting.Channel.close(Channel.java:1447)
	at hudson.slaves.SlaveComputer.closeChannel(SlaveComputer.java:923)
	at hudson.slaves.SlaveComputer.access$100(SlaveComputer.java:112)
	at hudson.slaves.SlaveComputer$2.run(SlaveComputer.java:803)
	at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
	at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:750)
Caused: hudson.remoting.ChannelClosedException: Channel "hudson.remoting.Channel@1ffff9a1: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 # 170 (click to expand)

	at java.lang.Thread.run(Thread.java:750)
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/jenkins9402502490378733863.sh
java.net.SocketException: Connection timed out (Read failed)
	at java.net.SocketInputStream.socketRead0(Native Method)
	at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
	at java.net.SocketInputStream.read(SocketInputStream.java:171)
	at java.net.SocketInputStream.read(SocketInputStream.java:141)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.fill_buffer(CipherInputStream.java:41)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.internal_read(CipherInputStream.java:52)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.getBlock(CipherInputStream.java:79)
	at com.trilead.ssh2.crypto.cipher.CipherInputStream.read(CipherInputStream.java:108)
	at com.trilead.ssh2.transport.TransportConnection.receiveMessage(TransportConnection.java:232)
	at com.trilead.ssh2.transport.TransportManager.receiveLoop(TransportManager.java:706)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:502)
Caused: java.io.IOException: The connection is being shutdown
	at com.trilead.ssh2.channel.ChannelManager.handleEndMessage(ChannelManager.java:1524)
	at com.trilead.ssh2.transport.TransportManager$1.run(TransportManager.java:535)
Caused: java.io.IOException: SSH channel is closed
	at com.trilead.ssh2.channel.ChannelManager.ioException(ChannelManager.java:1542)
	at com.trilead.ssh2.channel.ChannelManager.sendData(ChannelManager.java:375)
	at com.trilead.ssh2.channel.ChannelOutputStream.write(ChannelOutputStream.java:63)
	at com.trilead.ssh2.channel.ChannelOutputStream.write(ChannelOutputStream.java:68)
	at hudson.remoting.ChunkedOutputStream.sendFrame(ChunkedOutputStream.java:93)
	at hudson.remoting.ChunkedOutputStream.sendBreak(ChunkedOutputStream.java:66)
	at hudson.remoting.ChunkedCommandTransport.writeBlock(ChunkedCommandTransport.java:46)
	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.write(AbstractSynchronousByteArrayCommandTransport.java:46)
	at hudson.remoting.Channel.send(Channel.java:765)
	at hudson.remoting.Channel.close(Channel.java:1480)
	at hudson.remoting.Channel.close(Channel.java:1447)
	at hudson.slaves.SlaveComputer.closeChannel(SlaveComputer.java:923)
	at hudson.slaves.SlaveComputer.access$100(SlaveComputer.java:112)
	at hudson.slaves.SlaveComputer$2.run(SlaveComputer.java:803)
	at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
	at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:68)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:750)
Caused: hudson.remoting.ChannelClosedException: Channel "hudson.remoting.Channel@1ffff9a1: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 # 200 (click to expand)

 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Running on machine: blake
Running on machine: blake
KokkosKernels Repository Status:  3f80d77cbc7941e7e70c2b1e341413bd08ce6a53 Merge remote-tracking branch 'upstream/develop' into HEAD

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

KokkosKernels Repository Status: 3f80d77cbc7941e7e70c2b1e341413bd08ce6a53 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
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
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=4306 run_time=349
PASSED gcc-10.2.0-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=4306 run_time=349
gcc-10.2.0-Threads_Serial-release build_time=4331 run_time=700
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Running on machine: blake
KokkosKernels Repository Status:  a20726360931c633ba2137e5bda91b091ee167c8 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=397 run_time=80
gcc-10.2.0-Threads_Serial-release build_time=568 run_time=178
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_nrm2.hpp                 |  79 ++--
 blas/unit_test/Test_Blas1_nrm2_squared.hpp         |  57 +--
 blas/unit_test/Test_Blas1_nrm2w.hpp                |  90 ++---
 blas/unit_test/Test_Blas1_nrm2w_squared.hpp        |  91 ++---
 blas/unit_test/Test_Blas1_nrminf.hpp               |  80 ++--
 blas/unit_test/Test_Blas1_reciprocal.hpp           | 193 ++++------
 blas/unit_test/Test_Blas1_scal.hpp                 | 174 ++++-----
 blas/unit_test/Test_Blas1_sum.hpp                  |  79 ++--
 blas/unit_test/Test_Blas1_team_abs.hpp             | 130 +++----
 blas/unit_test/Test_Blas1_team_axpby.hpp           | 144 +++----
 blas/unit_test/Test_Blas1_team_axpy.hpp            | 142 +++----
 blas/unit_test/Test_Blas1_team_dot.hpp             | 153 +++-----
 blas/unit_test/Test_Blas1_team_mult.hpp            | 227 +++++------
 blas/unit_test/Test_Blas1_team_nrm2.hpp            |  27 +-
 blas/unit_test/Test_Blas1_team_scal.hpp            | 152 +++-----
 blas/unit_test/Test_Blas1_team_update.hpp          | 216 +++++------
 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Running on machine: blake
KokkosKernels Repository Status:  0197e3842299bb29907c0a1f7875d695d8a8b293 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=643 run_time=183
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  cdd12b373986aa467a459f06b4b9762e89cd1834 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=1269 run_time=94
intel-19.5.281-Threads-release build_time=840 run_time=106
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_nrm2.hpp                 |  79 ++--
 blas/unit_test/Test_Blas1_nrm2_squared.hpp         |  57 +--
 blas/unit_test/Test_Blas1_nrm2w.hpp                |  90 ++---
 blas/unit_test/Test_Blas1_nrm2w_squared.hpp        |  91 ++---
 blas/unit_test/Test_Blas1_nrminf.hpp               |  80 ++--
 blas/unit_test/Test_Blas1_reciprocal.hpp           | 193 ++++------
 blas/unit_test/Test_Blas1_scal.hpp                 | 174 ++++-----
 blas/unit_test/Test_Blas1_sum.hpp                  |  79 ++--
 blas/unit_test/Test_Blas1_team_abs.hpp             | 130 +++----
 blas/unit_test/Test_Blas1_team_axpby.hpp           | 144 +++----
 blas/unit_test/Test_Blas1_team_axpy.hpp            | 142 +++----
 blas/unit_test/Test_Blas1_team_dot.hpp             | 153 +++-----
 blas/unit_test/Test_Blas1_team_mult.hpp            | 227 +++++------
 blas/unit_test/Test_Blas1_team_nrm2.hpp            |  27 +-
 blas/unit_test/Test_Blas1_team_scal.hpp            | 152 +++-----
 blas/unit_test/Test_Blas1_team_update.hpp          | 216 +++++------
 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  fa8a00999103e463839236a2631927eb9efc6f62 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=652 run_time=200
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/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 3485
Running on machine: inouye
KokkosKernels Repository Status: a31cb2496cacb65e6167a0676af7d80faf8fcb37 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=1791 run_time=1140
armpl-21.1.0-Serial-release build_time=1657 run_time=253
salloc: Relinquishing job allocation 3485
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110
Finished: SUCCESS

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

 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/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 3486
Running on machine: inouye
KokkosKernels Repository Status: 93e47657cfb5703d2d3268a9bb39acc48ae4fbc3 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=2507 run_time=2017
salloc: Relinquishing job allocation 3486
salloc: Job allocation 3486 has been revoked.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_nrm2_squared.hpp         |  57 +--
 blas/unit_test/Test_Blas1_nrm2w.hpp                |  90 ++---
 blas/unit_test/Test_Blas1_nrm2w_squared.hpp        |  91 ++---
 blas/unit_test/Test_Blas1_nrminf.hpp               |  80 ++--
 blas/unit_test/Test_Blas1_reciprocal.hpp           | 193 ++++------
 blas/unit_test/Test_Blas1_scal.hpp                 | 174 ++++-----
 blas/unit_test/Test_Blas1_sum.hpp                  |  79 ++--
 blas/unit_test/Test_Blas1_team_abs.hpp             | 130 +++----
 blas/unit_test/Test_Blas1_team_axpby.hpp           | 144 +++----
 blas/unit_test/Test_Blas1_team_axpy.hpp            | 142 +++----
 blas/unit_test/Test_Blas1_team_dot.hpp             | 153 +++-----
 blas/unit_test/Test_Blas1_team_mult.hpp            | 227 +++++------
 blas/unit_test/Test_Blas1_team_nrm2.hpp            |  27 +-
 blas/unit_test/Test_Blas1_team_scal.hpp            | 152 +++-----
 blas/unit_test/Test_Blas1_team_update.hpp          | 216 +++++------
 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  d13665b6f844f40682019639d0e70cdf3eee65f0 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=882 run_time=393
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@e10harvey e10harvey force-pushed the batched_gemm_eti branch from cfd145d to 62c5044 Compare May 2, 2023 22:43
@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: 590
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 175
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 205
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 475
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 436
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 525
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 578
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 379
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 374
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 376
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: batched_gemm_eti
  • SHA: 62c5044
  • Mode: TEST_REPO

Pull Request Author: e10harvey

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 175
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 205
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 475
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 436
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 525
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 578
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 379
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 374
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 376
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 62c5044
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 590 (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/jenkins6077266268791831590.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@5bf30882: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 # 175 (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/jenkins2317571090279930834.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@5bf30882: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 # 205 (click to expand)

Scanning dependencies of target xpy
[ 95%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 96%] Linking CXX executable sparse_kk_spmv
[ 96%] Linking CXX executable KokkosKernels_wiki_coloring
[ 96%] Built target sparse_kk_spmv
[ 96%] Built target KokkosKernels_wiki_coloring
[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 96%] Linking CXX executable gmres_ex_real_A
[ 96%] Built target KokkosKernels_gmres_test_prec
[ 96%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable xpy
[ 97%] Built target xpy
[ 97%] Linking CXX executable static_pivoting
[ 97%] Built target static_pivoting
[ 97%] Linking CXX executable team_GMRES
[ 97%] Built target team_GMRES
[ 98%] Linking CXX executable KokkosBlas3_perf_test
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o: In function `void __do_gemm_parallel_batched_heuristic_template(perf_test_options, gemm_args)':
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x172): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x1d8): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x26a): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x289): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x2c1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x343): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x371): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x3e1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
collect2: error: ld returned 1 exit status
make[2]: *** [perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 98%] Linking CXX executable KokkosKernels_blas_serial
[ 98%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosKernels_blas_threads
[ 99%] Built target KokkosKernels_blas_threads
[100%] Linking CXX executable KokkosKernels_sparse_threads
[100%] Built target KokkosKernels_sparse_threads
[100%] Linking CXX executable KokkosKernels_sparse_serial
[100%] 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.205/TestAll_2023-05-02_21.46.26/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x1d8): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x26a): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x289): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x2c1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x343): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x371): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x3e1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutRight, Kokkos::OpenMP> const&)'
collect2: error: ld returned 1 exit status
make[2]: *** [perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
[100%] Linking CXX executable KokkosKernels_sparse_openmp
[100%] 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.475/TestAll_2023-05-02_21.46.35/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.475/TestAll_2023-05-02_21.46.35/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 # 436 (click to expand)

[ 95%] Built target KokkosKernels_wiki_coarsening
[ 95%] Built target KokkosBlas2_gemv_perf_test
Scanning dependencies of target static_pivoting
[ 96%] Building CXX object example/batched_solve/CMakeFiles/static_pivoting.dir/static_pivoting.cpp.o
Scanning dependencies of target xpy
[ 96%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_coloring
[ 96%] Built target KokkosKernels_wiki_coloring
[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 96%] Built target KokkosKernels_gmres_test_prec
[ 96%] Linking CXX executable gmres_ex_real_A
[ 96%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable xpy
[ 97%] Built target xpy
[ 97%] Linking CXX executable team_GMRES
[ 97%] Built target team_GMRES
[ 97%] Linking CXX executable static_pivoting
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target static_pivoting
[ 98%] Built target sparse_kk_spmv
[ 98%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 98%] Built target KokkosBlas3_gemm_perf_test
[ 99%] Linking CXX executable KokkosBlas3_perf_test
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o: In function `void __do_gemm_parallel_batched_heuristic_template(perf_test_options, gemm_args)':
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x172): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x1d8): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x26a): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x289): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x2c1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x343): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x371): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x3e1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
collect2: error: ld returned 1 exit status
make[2]: *** [perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_sparse_openmp
[ 99%] Built target KokkosKernels_sparse_openmp
[100%] Linking CXX executable KokkosKernels_sparse_serial
[100%] 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
        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.436/TestAll_2023-05-02_21.46.45/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  d9085c317d39b3bfce4b6f146719d8798910330e Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=1313 run_time=92
intel-19.5.281-Threads-release build_time=867 run_time=102
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

[ 96%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 96%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target xpy
[ 96%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_coloring
[ 96%] Built target KokkosKernels_wiki_coloring
[ 96%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 96%] Built target KokkosBlas3_gemm_perf_test
[ 96%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable xpy
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target xpy
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 97%] Built target KokkosBlas2_gemv_perf_test
[ 97%] Linking CXX executable static_pivoting
[ 97%] Built target static_pivoting
[ 97%] Linking CXX executable team_GMRES
[ 97%] Built target team_GMRES
[ 98%] Linking CXX executable KokkosBlas3_perf_test
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o: In function `void __do_gemm_parallel_batched_heuristic_template(perf_test_options, gemm_args)':
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0xfe): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x159): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x1bc): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x1f1): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x254): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x2ad): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x350): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos7ThreadsEvEv17perf_test_options9gemm_args]+0x3c9): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&, double, Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::Threads> const&)'
clang-10: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable sparse_kk_spmv
[ 99%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosKernels_sparse_threads
[100%] Built target KokkosKernels_sparse_threads
[100%] Linking CXX executable KokkosKernels_sparse_serial
[100%] Built target KokkosKernels_sparse_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1
        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/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.578/TestAll_2023-05-02_21.58.14/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0xe0): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0x12c): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0x178): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0x1b0): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0x1cc): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0x248): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6SerialEvEv17perf_test_options9gemm_args]+0x27c): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::Serial> const&)'
collect2: error: ld returned 1 exit status
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/build.make:108: perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [CMakeFiles/Makefile2:2759: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
[100%] Linking CXX executable KokkosKernels_sparse_serial
[100%] 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.379/TestAll_2023-05-02_22.00.46/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0
    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.379/TestAll_2023-05-02_22.00.46/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

[ 95%] Linking CXX executable KokkosKernels_wiki_coloring
[ 95%] Built target KokkosKernels_batched_dla_serial
[ 95%] Built target KokkosKernels_wiki_coloring
Scanning dependencies of target xpy
[ 95%] Building CXX object example/half/CMakeFiles/xpy.dir/xpy.cpp.o
[ 95%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 95%] Built target KokkosKernels_gmres_test_prec
[ 95%] Linking CXX executable gmres_ex_real_A
[ 95%] Built target gmres_ex_real_A
[ 96%] Linking CXX executable xpy
[ 96%] Built target xpy
[ 96%] Linking CXX executable static_pivoting
[ 96%] Built target static_pivoting
[ 96%] Linking CXX executable team_GMRES
[ 96%] Built target team_GMRES
[ 97%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 97%] Built target KokkosKernels_batched_dla_openmp
[ 97%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 97%] Built target KokkosBlas3_gemm_perf_test
[ 98%] Linking CXX executable sparse_kk_spmv
[ 98%] Built target sparse_kk_spmv
[ 99%] Linking CXX executable KokkosBlas3_perf_test
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o: In function `void __do_gemm_parallel_batched_heuristic_template(perf_test_options, gemm_args)':
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0xb8): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0xe0): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x12c): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x178): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x1b0): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x1cc): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x248): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
KokkosBlas3_perf_test.cpp:(.text._Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args[_Z45__do_gemm_parallel_batched_heuristic_templateIvvN6Kokkos6OpenMPEvEv17perf_test_options9gemm_args]+0x27c): undefined reference to `KokkosBatched::Impl::BatchedGemmWrapper, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&, double, Kokkos::View, 4>***, Kokkos::LayoutLeft, Kokkos::OpenMP> const&)'
collect2: error: ld returned 1 exit status
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/build.make:108: perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [CMakeFiles/Makefile2:2999: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_sparse_openmp
[ 99%] Built target KokkosKernels_sparse_openmp
[100%] Linking CXX executable KokkosKernels_sparse_serial
[100%] 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.374/TestAll_2023-05-02_22.00.46/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

[ 99%] Linking CXX executable KokkosKernels_sparse_serial
ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper, 16>***, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View, 16>***, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View, 16>***, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle*, double, Kokkos::View, 16>***, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View, 16>***, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View, 16>***, Kokkos::LayoutLeft, Kokkos::HIP> const&)
>>> referenced by KokkosBlas3_perf_test.cpp
>>>               CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::NoTranspose, KokkosBlas::Trans::Transpose, KokkosBatched::BatchLayout::Right, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::Transpose, KokkosBlas::Trans::NoTranspose, KokkosBatched::BatchLayout::Right, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::NoTranspose, KokkosBlas::Trans::NoTranspose, KokkosBatched::BatchLayout::Left, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::Transpose, KokkosBlas::Trans::Transpose, KokkosBatched::BatchLayout::Right, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::NoTranspose, KokkosBlas::Trans::Transpose, KokkosBatched::BatchLayout::Left, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::Transpose, KokkosBlas::Trans::NoTranspose, KokkosBatched::BatchLayout::Left, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))

ld.lld: error: undefined symbol: KokkosBatched::Impl::BatchedGemmWrapper<KokkosBlas::Trans::Transpose, KokkosBlas::Trans::Transpose, KokkosBatched::BatchLayout::Left, KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP>, true>::run(KokkosBatched::BatchedGemmHandle, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>, Kokkos::LayoutLeft, Kokkos::HIP> const&, double, Kokkos::View<KokkosBatched::Vector<KokkosBatched::SIMD, 16>*, Kokkos::LayoutLeft, Kokkos::HIP> const&)

referenced by KokkosBlas3_perf_test.cpp
CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o:(void __do_gemm_parallel_batched_heuristic_template<void, void, Kokkos::HIP, void>(perf_test_options, gemm_args))
clang-14: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/build.make:108: perf_test/blas/blas3/KokkosBlas3_perf_test] Error 1
make[1]: *** [CMakeFiles/Makefile2:2974: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Built target KokkosKernels_sparse_serial
[100%] Linking CXX executable sparse_kk_spmv
[100%] Built target sparse_kk_spmv
[100%] Linking CXX executable KokkosKernels_sparse_hip
[100%] Built target KokkosKernels_sparse_hip
make: *** [Makefile:160: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0
    export OMP_NUM_THREADS=8
    export OMP_PROC_BIND=spread
    export OMP_PLACES=cores

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

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

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.376/TestAll_2023-05-02_22.02.06/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 593
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 178
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 208
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 478
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 439
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 528
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 581
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 382
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 377
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 379
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: batched_gemm_eti
  • SHA: 3e28fe3
  • Mode: TEST_REPO

Pull Request Author: e10harvey

batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
};
#endif

// TODO: Include MEM_SPACE in Kokkos::View below?
Copy link
Contributor

Choose a reason for hiding this comment

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

Yes, the views should probably be using Kokkos::Device<EXEC_SPACE, MEM_SPACE>. ETI'ing both (Cuda, CudaSpace) and (Cuda, CudaUVMSpace) in the same build should work, generally

graph/impl/KokkosGraph_Distance2MIS_impl.hpp Outdated Show resolved Hide resolved
@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: 593
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 178
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 208
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 478
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 439
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 528
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 581
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 382
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 377
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 379
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3e28fe3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 593 (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/jenkins17753168643119246673.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@469820fc: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 # 178 (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/jenkins14208070408488564632.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@469820fc: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 # 208 (click to expand)

 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Running on machine: blake
Running on machine: blake
KokkosKernels Repository Status:  ba60061a78c2d6f7794dadb5fcaf51d8e91f12f3 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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
KokkosKernels Repository Status: ba60061a78c2d6f7794dadb5fcaf51d8e91f12f3 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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-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=4360 run_time=352
PASSED gcc-10.2.0-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release build_time=4290 run_time=698
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Running on machine: blake
KokkosKernels Repository Status:  2d2f541c2753df01de68f8694df477535c8c11dd Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=400 run_time=78
gcc-10.2.0-Threads_Serial-release build_time=565 run_time=174
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_nrm2.hpp                 |  79 ++--
 blas/unit_test/Test_Blas1_nrm2_squared.hpp         |  57 +--
 blas/unit_test/Test_Blas1_nrm2w.hpp                |  90 ++---
 blas/unit_test/Test_Blas1_nrm2w_squared.hpp        |  91 ++---
 blas/unit_test/Test_Blas1_nrminf.hpp               |  80 ++--
 blas/unit_test/Test_Blas1_reciprocal.hpp           | 193 ++++------
 blas/unit_test/Test_Blas1_scal.hpp                 | 174 ++++-----
 blas/unit_test/Test_Blas1_sum.hpp                  |  79 ++--
 blas/unit_test/Test_Blas1_team_abs.hpp             | 130 +++----
 blas/unit_test/Test_Blas1_team_axpby.hpp           | 144 +++----
 blas/unit_test/Test_Blas1_team_axpy.hpp            | 142 +++----
 blas/unit_test/Test_Blas1_team_dot.hpp             | 153 +++-----
 blas/unit_test/Test_Blas1_team_mult.hpp            | 227 +++++------
 blas/unit_test/Test_Blas1_team_nrm2.hpp            |  27 +-
 blas/unit_test/Test_Blas1_team_scal.hpp            | 152 +++-----
 blas/unit_test/Test_Blas1_team_update.hpp          | 216 +++++------
 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Running on machine: blake
KokkosKernels Repository Status:  44e9f0cc454753422e8341693721268919644ad8 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=641 run_time=181
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  8814ce8b7ff022364ad7d035982241ae25b4aec7 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=1361 run_time=92
intel-19.5.281-Threads-release build_time=873 run_time=101
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_nrm2.hpp                 |  79 ++--
 blas/unit_test/Test_Blas1_nrm2_squared.hpp         |  57 +--
 blas/unit_test/Test_Blas1_nrm2w.hpp                |  90 ++---
 blas/unit_test/Test_Blas1_nrm2w_squared.hpp        |  91 ++---
 blas/unit_test/Test_Blas1_nrminf.hpp               |  80 ++--
 blas/unit_test/Test_Blas1_reciprocal.hpp           | 193 ++++------
 blas/unit_test/Test_Blas1_scal.hpp                 | 174 ++++-----
 blas/unit_test/Test_Blas1_sum.hpp                  |  79 ++--
 blas/unit_test/Test_Blas1_team_abs.hpp             | 130 +++----
 blas/unit_test/Test_Blas1_team_axpby.hpp           | 144 +++----
 blas/unit_test/Test_Blas1_team_axpy.hpp            | 142 +++----
 blas/unit_test/Test_Blas1_team_dot.hpp             | 153 +++-----
 blas/unit_test/Test_Blas1_team_mult.hpp            | 227 +++++------
 blas/unit_test/Test_Blas1_team_nrm2.hpp            |  27 +-
 blas/unit_test/Test_Blas1_team_scal.hpp            | 152 +++-----
 blas/unit_test/Test_Blas1_team_update.hpp          | 216 +++++------
 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  cf9f3862cec38d189b1e7d103fcb96319148c24f Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=649 run_time=195
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/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 3503
Running on machine: inouye
KokkosKernels Repository Status: 36ac140f6a661478d6344660ff9d7e344e6e7d3b Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=1810 run_time=1052
armpl-21.1.0-Serial-release build_time=1676 run_time=247
salloc: Relinquishing job allocation 3503
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110
Finished: SUCCESS

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

 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/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 3502
Running on machine: inouye
KokkosKernels Repository Status: e1825c5098790a7de2b52dde5f753d9e7aacb830 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=2499 run_time=2019
salloc: Relinquishing job allocation 3502
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020
Finished: SUCCESS

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

 blas/unit_test/Test_Blas1_nrm2_squared.hpp         |  57 +--
 blas/unit_test/Test_Blas1_nrm2w.hpp                |  90 ++---
 blas/unit_test/Test_Blas1_nrm2w_squared.hpp        |  91 ++---
 blas/unit_test/Test_Blas1_nrminf.hpp               |  80 ++--
 blas/unit_test/Test_Blas1_reciprocal.hpp           | 193 ++++------
 blas/unit_test/Test_Blas1_scal.hpp                 | 174 ++++-----
 blas/unit_test/Test_Blas1_sum.hpp                  |  79 ++--
 blas/unit_test/Test_Blas1_team_abs.hpp             | 130 +++----
 blas/unit_test/Test_Blas1_team_axpby.hpp           | 144 +++----
 blas/unit_test/Test_Blas1_team_axpy.hpp            | 142 +++----
 blas/unit_test/Test_Blas1_team_dot.hpp             | 153 +++-----
 blas/unit_test/Test_Blas1_team_mult.hpp            | 227 +++++------
 blas/unit_test/Test_Blas1_team_nrm2.hpp            |  27 +-
 blas/unit_test/Test_Blas1_team_scal.hpp            | 152 +++-----
 blas/unit_test/Test_Blas1_team_update.hpp          | 216 +++++------
 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  10e4874d993ce6ce94e7f901f3010058fc5408d2 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: e5490e1e11ece175ec16588c5a3062ece2fe1b33 Add support for Darwin 32-bit and PPC (#5916)

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=896 run_time=321
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@e10harvey e10harvey force-pushed the batched_gemm_eti branch from 3e28fe3 to 0a07ad1 Compare May 3, 2023 19:50
@e10harvey
Copy link
Contributor Author

Thanks for your feedback, @brian-kelley. Just changing the BatchLayout checks to compile-time checks further reduces the template instantiations.

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 180
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 210
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 480
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 441
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 530
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 583
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 384
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 379
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 381
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: batched_gemm_eti
  • SHA: 8a59816
  • Mode: TEST_REPO

Pull Request Author: e10harvey

@e10harvey e10harvey requested a review from vqd8a May 3, 2023 21:26
@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: 595
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 180
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 210
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 480
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 441
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 530
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 583
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 384
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 379
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 381
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH batched_gemm_eti
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a59816
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 311157f
PR_LABELS feature request
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 595 (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/jenkins9277661625996508996.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@28eaaa28: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 # 180 (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-OpenMP-release
kokkos devices: OpenMP
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/jenkins8707804460345102205.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@28eaaa28: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 # 210 (click to expand)

[ 92%] Linking CXX executable KokkosKernels_wiki_spadd
[ 92%] Built target KokkosKernels_wiki_spadd
[ 92%] Built target KokkosKernels_wiki_spgemm
Scanning dependencies of target KokkosKernels_wiki_spmv
[ 92%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_spmv.dir/KokkosSparse_wiki_spmv.cpp.o
Scanning dependencies of target KokkosKernels_wiki_crsmatrix
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 92%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_crsmatrix.dir/KokkosSparse_wiki_crsmatrix.cpp.o
[ 93%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 93%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 93%] Built target KokkosKernels_wiki_gauss_seidel
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Scanning dependencies of target KokkosKernels_wiki_coarsening
[ 93%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coarsening.dir/KokkosGraph_wiki_coarsening.cpp.o
[ 93%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 93%] Built target KokkosBlas3_gemm_perf_test
[ 93%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 93%] Linking CXX executable KokkosKernels_wiki_rcm
[ 94%] Linking CXX executable KokkosKernels_wiki_crsmatrix
[ 94%] Built target KokkosKernels_wiki_rcm
[ 94%] Built target KokkosBlas2_gemv_perf_test
[ 94%] Built target KokkosKernels_wiki_crsmatrix
[ 95%] Linking CXX executable sparse_kk_spmv
[ 95%] Linking CXX executable KokkosKernels_wiki_spmv
[ 95%] Built target sparse_kk_spmv
[ 95%] Built target KokkosKernels_wiki_spmv
[ 95%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 95%] Built target KokkosKernels_wiki_coarsening
[ 95%] Linking CXX executable KokkosKernels_blas_serial
[ 95%] Built target KokkosKernels_blas_serial
[ 96%] Linking CXX executable KokkosKernels_blas_threads
[ 96%] Built target KokkosKernels_blas_threads
[ 97%] Linking CXX executable KokkosKernels_sparse_threads
[ 97%] Built target KokkosKernels_sparse_threads
[ 97%] Linking CXX executable KokkosKernels_sparse_serial
[ 97%] 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.210/TestAll_2023-05-03_14.58.42/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
Finished: FAILURE

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

[ 89%] Built target KokkosKernels_graph_openmp
[ 89%] Linking CXX executable sparse_spmv_struct
[ 89%] Built target sparse_spmv_struct
[ 89%] Linking CXX executable KokkosKernels_blas_openmp
[ 90%] Linking CXX executable sparse_spmv_bsr
[ 90%] Built target KokkosKernels_blas_openmp
[ 90%] Built target sparse_spmv_bsr
[ 90%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 90%] Built target KokkosBlas3_gemm_perf_test
[ 90%] Linking CXX executable sparse_kk_spmv
[ 90%] Built target sparse_kk_spmv
[ 90%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 90%] Built target KokkosKernels_batched_dla_openmp
[ 90%] Linking CXX executable KokkosKernels_sparse_openmp
[ 90%] 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.480/TestAll_2023-05-03_14.58.57/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.480/TestAll_2023-05-03_14.58.57/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 # 441 (click to expand)

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:310:19: error: static assertion failed: LayoutLeft views require BatchLayout::Right
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp: In instantiation of static int KokkosBatched::Impl::BatchedGemmWrapperInner::run(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>; BViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>; CViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:590:46:   required from static int KokkosBatched::Impl::BatchedGemmWrapper::run(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>; BViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>; CViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/src/KokkosBatched_Gemm_Decl.hpp:172:68:   required from int KokkosBatched::BatchedGemm(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>; BViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>; CViewType = Kokkos::View, 8>***, Kokkos::LayoutLeft, Kokkos::OpenMP>]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:536:58:   required from void __do_gemm_parallel_batched_heuristic_template(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:564:74:   required from void __do_gemm_parallel_batched_heuristic(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:2246:71:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:310:19: error: static assertion failed: LayoutLeft views require BatchLayout::Right
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp: In instantiation of static int KokkosBatched::Impl::BatchedGemmWrapperInner::run(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View; BViewType = Kokkos::View; CViewType = Kokkos::View]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:590:46:   required from static int KokkosBatched::Impl::BatchedGemmWrapper::run(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View; BViewType = Kokkos::View; CViewType = Kokkos::View]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/src/KokkosBatched_Gemm_Decl.hpp:172:68:   required from int KokkosBatched::BatchedGemm(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View; BViewType = Kokkos::View; CViewType = Kokkos::View]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:540:58:   required from void __do_gemm_parallel_batched_heuristic_template(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:564:74:   required from void __do_gemm_parallel_batched_heuristic(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:2246:71:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:310:19: error: static assertion failed: LayoutLeft views require BatchLayout::Right
[ 91%] Linking CXX executable KokkosBlas_dot_perf_test
[ 92%] Linking CXX executable KokkosKernels_wiki_spgemm
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 92%] Built target KokkosBlas_dot_perf_test
[ 93%] Built target KokkosKernels_wiki_spgemm
[ 93%] Linking CXX executable KokkosBlas_perf_test
[ 93%] Linking CXX executable KokkosKernels_wiki_spadd
[ 93%] Built target KokkosBlas_perf_test
[ 93%] Built target KokkosKernels_wiki_spadd
[ 93%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 93%] Built target KokkosKernels_wiki_gauss_seidel
[ 93%] Linking CXX executable KokkosKernels_wiki_spmv
[ 93%] Built target KokkosKernels_wiki_spmv
[ 93%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 93%] Built target KokkosBlas2_gemv_perf_test
[ 94%] Linking CXX executable sparse_kk_spmv
[ 94%] Built target sparse_kk_spmv
[ 94%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 94%] Built target KokkosBlas3_gemm_perf_test
[ 95%] Linking CXX executable KokkosKernels_sparse_serial
[ 95%] Linking CXX executable KokkosKernels_sparse_openmp
[ 95%] Built target KokkosKernels_sparse_serial
[ 95%] 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.441/TestAll_2023-05-03_14.58.59/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 # 530 (click to expand)

 blas/unit_test/Test_Blas1_update.hpp               | 262 +++++--------
 blas/unit_test/Test_Blas2_gemv.hpp                 | 134 +++----
 blas/unit_test/Test_Blas3_gemm.hpp                 |  36 +-
 cmake/kokkoskernels_benchmarks.cmake               |   4 +-
 docs/developer/apidocs/blas1.rst                   |  25 +-
 docs/developer/apidocs/sparse.rst                  |  47 ++-
 docs/developer/build_doc.rst                       |   4 +-
 docs/developer/contrib.rst                         |  63 ++++
 perf_test/Benchmark_Context.hpp                    |  42 +++
 perf_test/CMakeLists.txt                           |   1 +
 perf_test/blas/blas2/CMakeLists.txt                |   7 +
 .../blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp | 223 +++++++++++
 perf_test/blas/blas3/CMakeLists.txt                |   6 +
 ...osBlas3_gemm_standalone_perf_test_benchmark.cpp | 215 +++++++++++
 perf_test/ode/CMakeLists.txt                       |  19 +-
 perf_test/ode/KokkosODE_RK.cpp                     |   3 +-
 scripts/cm_test_all_sandia                         |  41 ++
 sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp |  65 +++-
 sparse/src/KokkosKernels_Handle.hpp                |   2 +-
 sparse/src/KokkosSparse_gauss_seidel.hpp           | 279 ++++++++++++++
 sparse/src/KokkosSparse_gmres.hpp                  |  10 +
 sparse/src/KokkosSparse_par_ilut.hpp               |  50 +++
 sparse/src/KokkosSparse_par_ilut_handle.hpp        |   2 -
 sparse/src/KokkosSparse_spgemm.hpp                 |  69 +++-
 sparse/src/KokkosSparse_spgemm_handle.hpp          |  10 +
 test_common/KokkosKernels_TestUtils.hpp            | 111 ++++--
 118 files changed, 5654 insertions(+), 3807 deletions(-)
 create mode 100644 perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
 create mode 100644 perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test_benchmark.cpp
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  f32a9422ecfcbe44c43c0444003de9b3260d8c51 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 4b6d971dce856132961b1f178dcae1256b92b733 OpenMPTarget: Update hierarchical parallelism. (#6043)

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

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

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:540:22: note: in instantiation of function template specialization 'KokkosBatched::BatchedGemm, Kokkos::View, Kokkos::View >' requested here
      KokkosBatched::BatchedGemm(
                     ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:563:5: note: in instantiation of function template specialization '__do_gemm_parallel_batched_heuristic_template' requested here
    __do_gemm_parallel_batched_heuristic_template' requested here
      __do_gemm_parallel_batched_heuristic);
      ^
[ 91%] Built target KokkosBlas_dot_mv_perf_test
8 errors generated.
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o] Error 1
make[1]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Scanning dependencies of target KokkosKernels_wiki_spmv
[ 91%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_spmv.dir/KokkosSparse_wiki_spmv.cpp.o
Scanning dependencies of target KokkosKernels_wiki_crsmatrix
[ 91%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_crsmatrix.dir/KokkosSparse_wiki_crsmatrix.cpp.o
[ 92%] Linking CXX executable KokkosBlas_perf_test
[ 92%] Built target KokkosBlas_perf_test
[ 93%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 93%] Built target KokkosKernels_wiki_spgemm
[ 93%] Linking CXX executable KokkosKernels_wiki_spadd
[ 93%] Built target KokkosKernels_wiki_spadd
[ 93%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 93%] Built target KokkosKernels_wiki_gauss_seidel
[ 94%] Linking CXX executable KokkosKernels_wiki_crsmatrix
[ 94%] Built target KokkosKernels_wiki_crsmatrix
[ 94%] Linking CXX executable KokkosKernels_wiki_spmv
[ 94%] Built target KokkosKernels_wiki_spmv
[ 94%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 94%] Built target KokkosBlas3_gemm_perf_test
[ 94%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 94%] Built target KokkosBlas2_gemv_perf_test
[ 95%] Linking CXX executable sparse_kk_spmv
[ 95%] Built target sparse_kk_spmv
[ 96%] Linking CXX executable KokkosKernels_sparse_threads
[ 96%] Built target KokkosKernels_sparse_threads
[ 96%] Linking CXX executable KokkosKernels_sparse_serial
[ 96%] Built target KokkosKernels_sparse_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1
        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/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

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

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

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

[ 93%] Built target KokkosKernels_wiki_gauss_seidel
[ 93%] Linking CXX executable KokkosKernels_wiki_spmv
[ 93%] Built target KokkosKernels_wiki_spmv
[ 93%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 93%] Built target KokkosBlas3_gemm_perf_test
[ 93%] Linking CXX executable KokkosKernels_graph_serial
[ 93%] Built target KokkosKernels_graph_serial
[ 93%] Linking CXX executable sparse_kk_spmv
[ 93%] Built target sparse_kk_spmv
[ 93%] Linking CXX executable KokkosKernels_blas_serial
[ 93%] Built target KokkosKernels_blas_serial
[ 93%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 93%] Built target KokkosKernels_batched_dla_serial
[ 93%] Linking CXX executable KokkosKernels_sparse_serial
[ 93%] 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.384/TestAll_2023-05-03_14.59.44/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.384/TestAll_2023-05-03_14.59.44/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 3506
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:536:58:   required from 'void __do_gemm_parallel_batched_heuristic_template(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:564:74:   required from 'void __do_gemm_parallel_batched_heuristic(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:2246:71:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:310:19: error: static assertion failed: LayoutLeft views require BatchLayout::Right
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp: In instantiation of 'static int KokkosBatched::Impl::BatchedGemmWrapperInner::run(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View; BViewType = Kokkos::View; CViewType = Kokkos::View]':
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:590:46:   required from 'static int KokkosBatched::Impl::BatchedGemmWrapper::run(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View; BViewType = Kokkos::View; CViewType = Kokkos::View]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/batched/dense/src/KokkosBatched_Gemm_Decl.hpp:172:68:   required from 'int KokkosBatched::BatchedGemm(BatchedGemmHandleType*, ScalarType, const AViewType&, const BViewType&, ScalarType, const CViewType&) [with ArgTransA = KokkosBlas::Trans::Transpose; ArgTransB = KokkosBlas::Trans::Transpose; ArgBatchSzDim = KokkosBatched::BatchLayout::Left; BatchedGemmHandleType = KokkosBatched::BatchedGemmHandle; ScalarType = double; AViewType = Kokkos::View; BViewType = Kokkos::View; CViewType = Kokkos::View]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:540:58:   required from 'void __do_gemm_parallel_batched_heuristic_template(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:564:74:   required from 'void __do_gemm_parallel_batched_heuristic(options_t, gemm_args_t) [with algo_tag = void; blocking_type = void; device_type = Kokkos::OpenMP; algo_mode = void; options_t = perf_test_options; gemm_args_t = gemm_args]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:2246:71:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:310:19: error: static assertion failed: LayoutLeft views require BatchLayout::Right
[ 91%] Linking CXX executable KokkosBlas_perf_test
[ 91%] Built target KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_wiki_spmv
[ 91%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_spmv.dir/KokkosSparse_wiki_spmv.cpp.o
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/build.make:80: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2999: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 92%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 92%] Built target KokkosKernels_wiki_spgemm
[ 92%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 92%] Linking CXX executable KokkosKernels_wiki_spadd
[ 92%] Built target KokkosKernels_wiki_gauss_seidel
[ 92%] Built target KokkosKernels_wiki_spadd
[ 92%] Linking CXX executable KokkosKernels_wiki_spmv
[ 92%] Built target KokkosKernels_wiki_spmv
[ 92%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 92%] Built target KokkosBlas2_gemv_perf_test
[ 92%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 92%] Built target KokkosKernels_batched_dla_serial
[ 93%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 93%] Built target KokkosKernels_batched_dla_openmp
[ 94%] Linking CXX executable sparse_kk_spmv
[ 94%] Built target sparse_kk_spmv
[ 94%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 94%] Built target KokkosBlas3_gemm_perf_test
[ 94%] Linking CXX executable KokkosKernels_sparse_openmp
[ 94%] Built target KokkosKernels_sparse_openmp
[ 95%] Linking CXX executable KokkosKernels_sparse_serial
[ 95%] 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.379/TestAll_2023-05-03_14.59.54/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 3507
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

    ^             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:590:43: note: in instantiation of member function 'KokkosBatched::Impl::BatchedGemmWrapperInner, Kokkos::View, Kokkos::View>::run' requested here
        AViewType, BViewType, CViewType>::run(handle, alpha, A, B, beta, C);
                                          ^
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_Gemm_Decl.hpp:172:65: note: in instantiation of member function 'KokkosBatched::Impl::BatchedGemmWrapper, Kokkos::View, Kokkos::View, false>::run' requested here
                                  BViewType, CViewType, false>::run(handle,
                                                                ^
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:540:22: note: in instantiation of function template specialization 'KokkosBatched::BatchedGemm, Kokkos::View, Kokkos::View>' requested here
      KokkosBatched::BatchedGemm(
                     ^
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_gemm_perf_test.hpp:563:5: note: in instantiation of function template specialization '__do_gemm_parallel_batched_heuristic_template' requested here
    __do_gemm_parallel_batched_heuristic_template' requested here
      __do_gemm_parallel_batched_heuristic);
      ^
[ 92%] Linking CXX executable KokkosKernels_wiki_spmv
[ 93%] Linking CXX executable KokkosKernels_wiki_spgemm
8 errors generated when compiling for gfx908.
make[2]: *** [perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/build.make:82: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2974: perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 94%] Linking CXX executable KokkosKernels_wiki_crsmatrix
[ 94%] Built target KokkosKernels_wiki_spadd
[ 94%] Built target KokkosKernels_wiki_spmv
[ 94%] Built target KokkosKernels_wiki_spgemm
[ 94%] Built target KokkosKernels_wiki_crsmatrix
[ 94%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 94%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 94%] Built target KokkosBlas2_gemv_perf_test
[ 94%] Built target KokkosBlas3_gemm_perf_test
[ 94%] Linking CXX executable KokkosKernels_batched_sla_hip
[ 94%] Built target KokkosKernels_batched_sla_hip
[ 94%] Linking CXX executable KokkosBatched_Test_CG
[ 94%] Built target KokkosBatched_Test_CG
[ 95%] Linking CXX executable KokkosKernels_sparse_serial
[ 95%] Built target KokkosKernels_sparse_serial
[ 96%] Linking CXX executable sparse_kk_spmv
[ 96%] Built target sparse_kk_spmv
[ 96%] Linking CXX executable KokkosKernels_sparse_hip
[ 96%] Built target KokkosKernels_sparse_hip
make: *** [Makefile:160: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module load cmake/3.19.3 rocm/5.2.0
        export OMP_NUM_THREADS=8
        export OMP_PROC_BIND=spread
        export OMP_PLACES=cores

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

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

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.381/TestAll_2023-05-03_15.00.08/rocm/5.2.0/Hip_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

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

There seems to still be some work needed to clean things up a bit more

@@ -33,5 +33,7 @@ class Cuda : public ::testing::Test {

#define TestCategory Cuda
#define TestExecSpace Kokkos::Cuda
#define TestDeviceType \
Copy link
Contributor

Choose a reason for hiding this comment

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

Looks like a dangerous drive by change to the way things work by default in tests, please remove and implement in a different PR where you explain why we need this and if it changes how tests behave.

@@ -33,5 +33,7 @@ class hip : public ::testing::Test {

#define TestCategory hip
#define TestExecSpace Kokkos::Experimental::HIP
#define TestDeviceType \
Copy link
Contributor

Choose a reason for hiding this comment

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

Same as Cuda

@@ -33,5 +33,7 @@ class openmp : public ::testing::Test {

#define TestCategory openmp
#define TestExecSpace Kokkos::OpenMP
#define TestDeviceType \
Copy link
Contributor

Choose a reason for hiding this comment

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

Same as Cuda

@@ -33,5 +33,7 @@ class openmptarget : public ::testing::Test {

#define TestCategory openmptarget
#define TestExecSpace Kokkos::Experimental::OpenMPTarget
#define TestDeviceType \
Copy link
Contributor

Choose a reason for hiding this comment

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

Same as Cuda

@@ -30,3 +30,5 @@ class sycl_test : public ::testing::Test {

#define TestCategory sycl_test
#define TestExecSpace Kokkos::Experimental::SYCL
#define TestDeviceType \
Copy link
Contributor

Choose a reason for hiding this comment

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

Same as Cuda

batched/dense/src/KokkosBatched_Gemm_Decl.hpp Outdated Show resolved Hide resolved
batched/dense/src/KokkosBatched_Gemm_Decl.hpp Show resolved Hide resolved
batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp Outdated Show resolved Hide resolved
This was referenced May 10, 2023
@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 '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: 669
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 260
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 283
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 553
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 514
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 603
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 656
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 457
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 452
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 453
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: batched_gemm_eti
  • SHA: 87a3846
  • Mode: TEST_REPO

Pull Request Author: e10harvey

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 260
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 283
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 553
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 514
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 603
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 656
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 457
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 452
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 453
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 87a3846
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
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...

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.

Thanks for making those changes

@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

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 270
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 293
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 563
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 524
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 613
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 666
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 467
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 462
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 462
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: batched_gemm_eti
  • SHA: dec2bcb
  • Mode: TEST_REPO

Pull Request Author: e10harvey

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 270
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 293
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 563
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 524
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 613
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 666
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 467
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 462
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 462
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dec2bcb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 407e31a
PR_LABELS feature request;BlocksPromotion
PULLREQUESTNUM 1783
TEST_REPO_ALIAS KOKKOSKERNELS

@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

@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

2 similar comments
@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

@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

@e10harvey e10harvey merged commit 8fae080 into kokkos:develop Jun 12, 2023
@ndellingwood
Copy link
Contributor

The changes in the PR seem to be breaking with Trilinos builds, e.g.

11:29:12 /home/jenkins/weaver/workspace/KokkosEco_Trilinos_Weaver_CUDA112_Shared_Cplx/Trilinos/kokkos-kernels/sparse/src/KokkosSparse_BsrMatrix.hpp:643:11: error: expected unqualified-id before ‘[’ token
11:29:12    BsrMatrix([[maybe_unused]] const std::string& label, const OrdinalType nrows,
11:29:12            ^
11:29:12 /home/jenkins/weaver/workspace/KokkosEco_Trilinos_Weaver_CUDA112_Shared_Cplx/Trilinos/kokkos-kernels/sparse/src/KokkosSparse_BsrMatrix.hpp:643:11: error: expected ‘)’ before ‘[’ token
11:29:12    BsrMatrix([[maybe_unused]] const std::string& label, const OrdinalType nrows,

I'm not sure how the ETI updates interplay with the BsrMatrix code, but the other changes that merged since previous successful compilation were to the docs and benchmarks which would not affect this. I'll open an issue with reproducer details

@brian-kelley
Copy link
Contributor

brian-kelley commented Jun 12, 2023

@ndellingwood #1862 will take care of this

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

Successfully merging this pull request may close these issues.

6 participants