Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add batched serial tbsv #2202

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

yasahi-hpc
Copy link

@yasahi-hpc yasahi-hpc commented May 10, 2024

Redo PR #2020 from develop branch.
This PR implements tbsv function.

Following files are added:

  1. KokkosBatched_Tbsv_Serial_Impl.hpp: Internal interfaces
  2. KokkosBatched_Tbsv_Serial_Internal.hpp: Implementation details
  3. KokkosBatched_Tbsv.hpp: APIs
  4. Test_Batched_SerialTbsv.hpp: Unit tests for that

Detailed description

It solves the equation Ax = b.
Here, the matrix has the following shape.

  • A: (batch_count, lda, n)
    n by n unit or non-unit, upper or lower triangular band matrix with (k+1) diagonals.
  • x: (batch_count, n)
    Before entry, the incremented array x must contain the n element right-hand side vector b.

Example of a single batch of matrix A with n = 10 and k = 3.

upper
1 1 1 1 0 0 0 0 0 0 
0 1 1 1 1 0 0 0 0 0 
0 0 1 1 1 1 0 0 0 0 
0 0 0 1 1 1 1 0 0 0 
0 0 0 0 1 1 1 1 0 0 
0 0 0 0 0 1 1 1 1 0 
0 0 0 0 0 0 1 1 1 1 
0 0 0 0 0 0 0 1 1 1 
0 0 0 0 0 0 0 0 1 1 
0 0 0 0 0 0 0 0 0 1 

lower
1 0 0 0 0 0 0 0 0 0 
1 1 0 0 0 0 0 0 0 0 
1 1 1 0 0 0 0 0 0 0 
1 1 1 1 0 0 0 0 0 0 
0 1 1 1 1 0 0 0 0 0 
0 0 1 1 1 1 0 0 0 0 
0 0 0 1 1 1 1 0 0 0 
0 0 0 0 1 1 1 1 0 0 
0 0 0 0 0 1 1 1 1 0 
0 0 0 0 0 0 1 1 1 1 

upper_banded
0 0 0 1 1 1 1 1 1 1 
0 0 1 1 1 1 1 1 1 1 
0 1 1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 1 1 

lower_banded
1 1 1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 1 0 
1 1 1 1 1 1 1 1 0 0 
1 1 1 1 1 1 1 0 0 0 

Parallelization would be made in the following manner. This is efficient only when
A is given in LayoutLeft for GPUs and LayoutRight for CPUs (parallelized over batch direction).

Kokkos::parallel_for('tbsv', 
    Kokkos::RangePolicy<execution_space, ParamTagType> policy(0, n),
    [=](const ParamTagType &, const int k) {
        auto aa = Kokkos::subview(_a, k, Kokkos::ALL(), Kokkos::ALL());
        auto bb = Kokkos::subview(_b, k, Kokkos::ALL());

        KokkosBatched::SerialTbsv<
            typename ParamTagType::uplo, typename ParamTagType::trans,
            typename ParamTagType::diag, AlgoTagType>::invoke(aa, bb, k);
    });

Tests

  1. Firstly, construct an Upper or Lower banded diagonal matrix A. Then, convert it to the banded storage Ab. Solving Ax = b with trsv and (Ab)x = b with tbsv. tbsv result is compared with trsv result.
  2. Simple and small analytical test, i.e. chose A and b and compute by hand x, then check that it matches with your routine.

Tasks

  • Add a simple and small analytical test, i.e. chose A and b and compute by hand x, then check that it matches with your routine.
  • Do some corner cases, what happens when you have an empty matrix? Zero upper/lower diagonals, zeros on the diagonal, etc... (testing zero on diagonals must be improved)
  • Generate random matrices for A and x, compute b with a matvec and then check that solving Ax=b returns the original x vector. (This is partially done. Tbsv is compared with Trsv)
  • Ideally if you have any assertions/runtime checks that can be done, you want to check that they are catching what they are supposed to catch
  • Finally you want the test to cover all backends for which the algorithms is supposed to run. (Serial, OpenMP, Thread, CUDA, HIP can be tested)

@yasahi-hpc yasahi-hpc mentioned this pull request May 10, 2024
5 tasks
@yasahi-hpc yasahi-hpc marked this pull request as draft May 10, 2024 04:29
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO INSPECTION HAS BEEN PERFORMED ON THIS PULL REQUEST! - This PR must be inspected by setting label 'AT: PRE-TEST INSPECTED'.

@yasahi-hpc yasahi-hpc force-pushed the develop-implement-batched-serial-tbsv branch from fe210eb to fbeea38 Compare May 28, 2024 06:42
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO INSPECTION HAS BEEN PERFORMED ON THIS PULL REQUEST! - This PR must be inspected by setting label 'AT: PRE-TEST INSPECTED'.

@yasahi-hpc yasahi-hpc marked this pull request as ready for review May 28, 2024 07:03
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.

Mostly small changes, this looks good overall


} // namespace KokkosBatched

#endif // KOKKOSBATCHED_TBSV_SERIAL_IMPL_HPP_
Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe add a new line here.

std::string name = name_region + name_value_type;
Kokkos::Profiling::pushRegion(name.c_str());
Kokkos::RangePolicy<execution_space, ParamTagType> policy(0, _b.extent(0));
Kokkos::parallel_for(name.c_str(), policy, *this);
Copy link
Contributor

Choose a reason for hiding this comment

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

I would argue that you only need the region or the parallel_for to but not both in this case, not a problem though, just a comment


Kokkos::Random_XorShift64_Pool<execution_space> random(13718);
Kokkos::fill_random(Ref, random, ScalarType(1.0));
Kokkos::fill_random(x0, random, ScalarType(1.0));
Copy link
Contributor

Choose a reason for hiding this comment

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

This might not do exactly what you think in the case of complex numbers, we usually use KokkosKernels::Impl::getRandomBounds from common/src/KokkosKernels_IOUtils.hpp to generate inputs for random numbers

Functor_BatchedSerialTbsv<DeviceType, View3DType, View2DType, ParamTagType,
AlgoTagType>(Ab, x1, k)
.run();

Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe fence after launching the kernel to be sure it has completed by the time you perform the check? parallel_for is non-blocking in general

#include "KokkosBatched_Util.hpp"

template <typename ExecutionSpace, typename AViewType, typename BViewType>
bool allclose(const AViewType& a, const BViewType& b, double rtol = 1.e-5,
Copy link
Contributor

Choose a reason for hiding this comment

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

Did you check in the test_common and common directories for these utilities? If we already have them there we don't want to re-implement this

@lucbv lucbv added feature request AT: PRE-TEST INSPECTED Mark this PR as approved for testing. labels Jun 12, 2024
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jun 12, 2024
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED by label AT: PRE-TEST INSPECTED! Autotester is Removing Label; this inspection will remain valid until a new commit to source branch is performed.

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 964
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 621
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 608
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 609
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 613
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 585
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1067
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 583
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (yasahi-hpc/kokkos-kernels)
  • Branch: develop-implement-batched-serial-tbsv
  • SHA: fbeea38
  • Mode: TEST_REPO

Pull Request Author: yasahi-hpc

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 964
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 621
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 608
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 609
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 613
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 585
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1067
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 583
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/yasahi-hpc/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fbeea38
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 2d913f8
PR_LABELS feature request
PULLREQUESTNUM 2202
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1375 (click to expand)

b'[ 78%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_cuda.dir/backends/Test_Cuda_BlockSparse.cpp.o'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/impl/KokkosKernels_NaN.hpp(40): warning: missing return statement at end of non-void function "KokkosKernels::Impl::quiet_NaN() [with T=std::remove_const_t>]"'
b'          detected during:'
b'            instantiation of "T KokkosKernels::Impl::quiet_NaN() [with T=std::remove_const_t>]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(357): here'
b'            instantiation of "auto Test_Spmv_Bsr::random_vecs_for_spmv(const char *, const Bsr &, __nv_bool)->std::tuple::type, Test_Spmv_Bsr::VectorTypeFor::type> [with Bsr=KokkosSparse::Experimental::BsrMatrix, int, Kokkos::Device, void, int>]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(380): here'
b'            instantiation of "void Test_Spmv_Bsr::test_spmv_combos(const char *, const Bsr &, const Crs &, size_t) [with Bsr=KokkosSparse::Experimental::BsrMatrix, int, Kokkos::Device, void, int>, Crs=KokkosSparse::CrsMatrix, int, Kokkos::Device, void, int>]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(435): here'
b'            instantiation of "void Test_Spmv_Bsr::test_spmv_corner_cases() [with Scalar=kokkos_complex_double, Ordinal=int, Offset=int, Device=CudaSpaceDevice]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(491): here'
b'            instantiation of "void Test_Spmv_Bsr::test_spmv() [with Scalar=kokkos_complex_double, Ordinal=int, Offset=int, Device=CudaSpaceDevice]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/test_common/Test_Common_Test_All_Type_Combos.hpp(113): here'
b''
b'[ 79%] Linking CXX executable KokkosKernels_common_cuda'
b'[ 79%] Built target KokkosKernels_common_cuda'
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_openmp.dir/backends/Test_OpenMP_BlockSparse.cpp.o'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/impl/KokkosKernels_NaN.hpp(40): warning: missing return statement at end of non-void function "KokkosKernels::Impl::quiet_NaN() [with T=kokkos_complex_double]"'
b'          detected during:'
b'            instantiation of "T KokkosKernels::Impl::quiet_NaN() [with T=kokkos_complex_double]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv.hpp(455): here'
b'            instantiation of "void test_spmv(KokkosSparse::SPMVAlgorithm, lno_t, size_type, lno_t, lno_t, __nv_bool) [with scalar_t=kokkos_complex_double, lno_t=int, size_type=int, Device=CudaSpaceDevice]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv.hpp(527): here'
b'            instantiation of "void test_spmv_algorithms(lno_t, size_type, lno_t, lno_t, __nv_bool) [with scalar_t=kokkos_complex_double, lno_t=int, size_type=int, Device=CudaSpaceDevice]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/test_common/Test_Common_Test_All_Type_Combos.hpp(113): here'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/impl/KokkosKernels_NaN.hpp(40): warning: missing return statement at end of non-void function "KokkosKernels::Impl::quiet_NaN() [with T=kokkos_complex_double]"'
b'          detected during:'
b'            instantiation of "T KokkosKernels::Impl::quiet_NaN() [with T=kokkos_complex_double]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv.hpp(455): here'
b'            instantiation of "void test_spmv(KokkosSparse::SPMVAlgorithm, lno_t, size_type, lno_t, lno_t, __nv_bool) [with scalar_t=kokkos_complex_double, lno_t=int, size_type=int, Device=Kokkos::OpenMP]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv.hpp(527): here'
b'            instantiation of "void test_spmv_algorithms(lno_t, size_type, lno_t, lno_t, __nv_bool) [with scalar_t=kokkos_complex_double, lno_t=int, size_type=int, Device=Kokkos::OpenMP]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/test_common/Test_Common_Test_All_Type_Combos.hpp(113): here'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/impl/KokkosKernels_NaN.hpp(40): warning: missing return statement at end of non-void function "KokkosKernels::Impl::quiet_NaN() [with T=std::remove_const_t]"'
b'          detected during:'
b'            instantiation of "T KokkosKernels::Impl::quiet_NaN() [with T=std::remove_const_t]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(357): here'
b'            instantiation of "auto Test_Spmv_Bsr::random_vecs_for_spmv(const char *, const Bsr &, __nv_bool)->std::tuple::type, Test_Spmv_Bsr::VectorTypeFor::type> [with Bsr=KokkosSparse::Experimental::BsrMatrix]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(380): here'
b'            instantiation of "void Test_Spmv_Bsr::test_spmv_combos(const char *, const Bsr &, const Crs &, size_t) [with Bsr=KokkosSparse::Experimental::BsrMatrix, Crs=KokkosSparse::CrsMatrix]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(435): here'
b'            instantiation of "void Test_Spmv_Bsr::test_spmv_corner_cases() [with Scalar=kokkos_complex_double, Ordinal=int, Offset=int, Device=Kokkos::OpenMP]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/sparse/unit_test/Test_Sparse_spmv_bsr.hpp(491): here'
b'            instantiation of "void Test_Spmv_Bsr::test_spmv() [with Scalar=kokkos_complex_double, Ordinal=int, Offset=int, Device=Kokkos::OpenMP]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/test_common/Test_Common_Test_All_Type_Combos.hpp(113): here'
b''
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/backends/Test_Cuda_ODE.cpp.o'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(605): warning: variable "mySys" was set but never used'
b''
b'[ 79%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 79%] Built target KokkosKernels_blas_openmp'
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'cc1plus: all warnings being treated as errors'
b'make[2]: *** [batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/build.make:90: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1700: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o'
b'[ 80%] Linking CXX executable KokkosKernels_ode_cuda'
b'[ 80%] Built target KokkosKernels_ode_cuda'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(605): warning: variable "mySys" was set but never used'
b''
b'[ 80%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 80%] Built target KokkosKernels_graph_openmp'
b'[ 80%] Linking CXX executable KokkosKernels_blocksparse_openmp'
b'[ 80%] Linking CXX executable KokkosKernels_blocksparse_cuda'
b'[ 80%] Built target KokkosKernels_blocksparse_openmp'
b'[ 80%] Built target KokkosKernels_blocksparse_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_blas_cuda'
b'[ 80%] Built target KokkosKernels_blas_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_ode_openmp'
b'[ 80%] Built target KokkosKernels_ode_openmp'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_cuda'
b'[ 80%] Built target KokkosKernels_batched_dla_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_graph_cuda'
b'[ 80%] Built target KokkosKernels_graph_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 80%] Built target KokkosKernels_sparse_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_cuda'
b'[ 81%] Built target KokkosKernels_batched_gemm_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_cuda'
b'[ 81%] Built target KokkosKernels_sparse_cuda'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'cat: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.1375/TestAll_2024-06-12_09.47.36/cuda-11.2.2-gcc/8.3.1/Cuda_OpenMP-release/reload_modules.sh: No such file or directory'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/src/KokkosBatched_Tbsv.hppIn file included from :/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/src/KokkosBatched_Tbsv.hpp54::'
b'54In file included from :'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Impl.hppIn file included from :/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Impl.hpp23::'
b'23/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:'
b":/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp49::4955::55 :error:  unused parameter 'xn' [-Werror,-Wunused-parameter]error: "
b"unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const int an, const int xn,'
b'                                                      ^'
b'    const bool use_unit_diag, const int an, const int xn,'
b'                                                      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:89/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp::7589:: 75error: :unused parameter 'xn' [-Werror,-Wunused-parameter] "
b"error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b'                                                                          ^    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b''
b'                                                                          ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp143::14355::55 :error:  unused parameter 'xn' [-Werror,-Wunused-parameter]error: "
b"unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const int an, const int xn,'
b'    const bool use_unit_diag, const int an, const int xn,                                                      ^'
b''
b'                                                      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp::183183::7575::  error: error: unused parameter 'xn' [-Werror,-Wunused-parameter]unused parameter 'xn' [-Werror,-Wunused-parameter]"
b''
b'    const bool use_unit_diag, const bool do_conj, const int an, const int xn,    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b''
b'                                                                          ^                                                                          ^'
b''
b'4 errors generated when compiling for sm_70.'
b'make[2]: *** [batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/build.make:90: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/backends/Test_Serial_Batched_Dense.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1702: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'4 errors generated when compiling for sm_70.'
b'make[2]: *** [batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/build.make:90: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/backends/Test_Cuda_Batched_Dense.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1648: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/all] Error 2'
b'[ 75%] Linking CXX executable KokkosKernels_lapack_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 75%] Built target KokkosKernels_lapack_cuda'
b'[ 75%] Linking CXX executable KokkosKernels_lapack_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 75%] Built target KokkosKernels_lapack_serial'
b'[ 75%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 75%] Built target KokkosKernels_batched_sla_serial'
b'[ 75%] Linking CXX executable KokkosKernels_common_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 75%] Built target KokkosKernels_common_serial'
b'[ 76%] Linking CXX executable KokkosKernels_batched_sla_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 76%] Built target KokkosKernels_batched_sla_cuda'
b'[ 76%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 76%] Built target KokkosKernels_batched_gemm_serial'
b'[ 76%] Linking CXX executable KokkosKernels_common_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 76%] Built target KokkosKernels_common_cuda'
b'[ 77%] Linking CXX executable KokkosKernels_batched_gemm_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 77%] Built target KokkosKernels_batched_gemm_cuda'
b'[ 77%] Linking CXX executable KokkosKernels_blas_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 77%] Built target KokkosKernels_blas_serial'
b'[ 77%] Linking CXX executable KokkosKernels_blas_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 77%] Built target KokkosKernels_blas_cuda'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-13.0.0-Cuda-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /projects/ppc64le-pwr9-rhel8/legacy-env.sh'
b'        module purge'
b'        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b'        export KOKKOS_NUM_THREADS=8'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda --arch=Power9,Volta70 --compiler=/home/projects/ppc64le-pwr9-nvidia/spack/opt/spack/linux-rhel7-power9le/gcc-7.4.0/llvm-13.0.0-t6hzufjroylzhs7hg3dvmhrrcsvhygzv/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/10.1.243  --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=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  --cmake-flags= --kokkos-cmake-flags= '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.964/TestAll_2024-06-12_09.47.42/clang/13.0.0/Cuda-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021 # 621 (click to expand)

b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -l /tmp/jenkins8540957054129256290.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/SECURITY.md                                |  14 ++'
b' .github/workflows/bdw.yml                          |   4 +-'
b' .github/workflows/codeql.yml                       |  10 +-'
b' .github/workflows/dependency-review.yml            |   6 +-'
b' .github/workflows/docs.yml                         |   4 +-'
b' .github/workflows/format.yml                       |   2 +-'
b' .github/workflows/h100.yml                         |   4 +-'
b' .github/workflows/mi210.yml                        |   4 +-'
b' .github/workflows/osx.yml                          |   6 +-'
b' .github/workflows/scorecards.yml                   |  10 +-'
b' .github/workflows/spr.yml                          |   4 +-'
b' README.md                                          |   1 +'
b' common/src/KokkosKernels_SimpleUtils.hpp           |   4 +-'
b' example/graph/PartitioningExample                  | Bin 21536 -> 0 bytes'
b' scripts/docker/Dockerfile.hip                      |   3 +-'
b' scripts/docker/Dockerfile.sycl                     |   3 +-'
b' sparse/impl/KokkosSparse_spmv_impl.hpp             |   8 +-'
b' sparse/src/KokkosSparse_spmv.hpp                   |  54 +++---'
b' sparse/src/KokkosSparse_spmv_handle.hpp            |  12 +-'
b' .../KokkosSparse_spgemm_symbolic_tpl_spec_decl.hpp |  11 ++'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |  22 +--'
b' .../tpls/KokkosSparse_spmv_mv_tpl_spec_avail.hpp   |  45 +++++'
b' sparse/tpls/KokkosSparse_spmv_mv_tpl_spec_decl.hpp | 205 ++++++++++++++++++++-'
b' sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp    |  14 +-'
b' sparse/unit_test/Test_Sparse_Transpose.hpp         |  13 +-'
b' sparse/unit_test/Test_Sparse_spgemm.hpp            |   7 +-'
b' sparse/unit_test/Test_Sparse_spmv.hpp              |   6 +-'
b' 27 files changed, 381 insertions(+), 95 deletions(-)'
b' create mode 100644 .github/SECURITY.md'
b' delete mode 100755 example/graph/PartitioningExample'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3051483 queued and waiting for resources'
b'srun: job 3051483 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  b7217d5ca200ea810a757ff7ead22366db616ba5 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: '
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: '
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=511 run_time=135'
b'gnu-10.2.1-Threads_Serial-release build_time=686 run_time=222'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021_Light_LayoutRight # 608 (click to expand)

b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -l /tmp/jenkins14822847141081359371.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/SECURITY.md                                |  14 ++'
b' .github/workflows/bdw.yml                          |   4 +-'
b' .github/workflows/codeql.yml                       |  10 +-'
b' .github/workflows/dependency-review.yml            |   6 +-'
b' .github/workflows/docs.yml                         |   4 +-'
b' .github/workflows/format.yml                       |   2 +-'
b' .github/workflows/h100.yml                         |   4 +-'
b' .github/workflows/mi210.yml                        |   4 +-'
b' .github/workflows/osx.yml                          |   6 +-'
b' .github/workflows/scorecards.yml                   |  10 +-'
b' .github/workflows/spr.yml                          |   4 +-'
b' README.md                                          |   1 +'
b' common/src/KokkosKernels_SimpleUtils.hpp           |   4 +-'
b' example/graph/PartitioningExample                  | Bin 21536 -> 0 bytes'
b' scripts/docker/Dockerfile.hip                      |   3 +-'
b' scripts/docker/Dockerfile.sycl                     |   3 +-'
b' sparse/impl/KokkosSparse_spmv_impl.hpp             |   8 +-'
b' sparse/src/KokkosSparse_spmv.hpp                   |  54 +++---'
b' sparse/src/KokkosSparse_spmv_handle.hpp            |  12 +-'
b' .../KokkosSparse_spgemm_symbolic_tpl_spec_decl.hpp |  11 ++'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |  22 +--'
b' .../tpls/KokkosSparse_spmv_mv_tpl_spec_avail.hpp   |  45 +++++'
b' sparse/tpls/KokkosSparse_spmv_mv_tpl_spec_decl.hpp | 205 ++++++++++++++++++++-'
b' sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp    |  14 +-'
b' sparse/unit_test/Test_Sparse_Transpose.hpp         |  13 +-'
b' sparse/unit_test/Test_Sparse_spgemm.hpp            |   7 +-'
b' sparse/unit_test/Test_Sparse_spmv.hpp              |   6 +-'
b' 27 files changed, 381 insertions(+), 95 deletions(-)'
b' create mode 100644 .github/SECURITY.md'
b' delete mode 100755 example/graph/PartitioningExample'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3051484 queued and waiting for resources'
b'srun: job 3051484 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  4fa93951c33bfc3672b2ed883777f6d39edddaf1 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'kokkoskernels tpls list: '
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'kokkoskernels tpls list: '
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=461 run_time=126'
b'gnu-10.2.1-Threads_Serial-release build_time=637 run_time=194'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 609 (click to expand)

b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/yasahi-hpc/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/yasahi-hpc/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse fbeea3850795dbe31d4177c18224b44bb8d1ca95^{commit} # timeout=10'
b'Checking out Revision fbeea3850795dbe31d4177c18224b44bb8d1ca95 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f fbeea3850795dbe31d4177c18224b44bb8d1ca95 # timeout=10'
b'Commit message: "remove incx argument and use strided views instead"'
b' > git rev-list --no-walk be44c05a352f75c9f6b551ebac6e29eff8a2a258 # timeout=10'
b'First time build. Skipping changelog.'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -l /tmp/jenkins12171754266902416733.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/SECURITY.md                                |  14 ++'
b' .github/workflows/bdw.yml                          |   4 +-'
b' .github/workflows/codeql.yml                       |  10 +-'
b' .github/workflows/dependency-review.yml            |   6 +-'
b' .github/workflows/docs.yml                         |   4 +-'
b' .github/workflows/format.yml                       |   2 +-'
b' .github/workflows/h100.yml                         |   4 +-'
b' .github/workflows/mi210.yml                        |   4 +-'
b' .github/workflows/osx.yml                          |   6 +-'
b' .github/workflows/scorecards.yml                   |  10 +-'
b' .github/workflows/spr.yml                          |   4 +-'
b' README.md                                          |   1 +'
b' common/src/KokkosKernels_SimpleUtils.hpp           |   4 +-'
b' example/graph/PartitioningExample                  | Bin 21536 -> 0 bytes'
b' scripts/docker/Dockerfile.hip                      |   3 +-'
b' scripts/docker/Dockerfile.sycl                     |   3 +-'
b' sparse/impl/KokkosSparse_spmv_impl.hpp             |   8 +-'
b' sparse/src/KokkosSparse_spmv.hpp                   |  54 +++---'
b' sparse/src/KokkosSparse_spmv_handle.hpp            |  12 +-'
b' .../KokkosSparse_spgemm_symbolic_tpl_spec_decl.hpp |  11 ++'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |  22 +--'
b' .../tpls/KokkosSparse_spmv_mv_tpl_spec_avail.hpp   |  45 +++++'
b' sparse/tpls/KokkosSparse_spmv_mv_tpl_spec_decl.hpp | 205 ++++++++++++++++++++-'
b' sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp    |  14 +-'
b' sparse/unit_test/Test_Sparse_Transpose.hpp         |  13 +-'
b' sparse/unit_test/Test_Sparse_spgemm.hpp            |   7 +-'
b' sparse/unit_test/Test_Sparse_spmv.hpp              |   6 +-'
b' 27 files changed, 381 insertions(+), 95 deletions(-)'
b' create mode 100644 .github/SECURITY.md'
b' delete mode 100755 example/graph/PartitioningExample'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3051485 queued and waiting for resources'
b'srun: job 3051485 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  4dfaf2dc5f23cbf2fb0b39d923514653ab750cd6 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: ,blas'
b'  PASSED gnu-10.2.1-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release build_time=730 run_time=250'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19_solo # 613 (click to expand)

b'--num=N: Number of jobs to run in parallel'
b'--spot-check: Minimal test set to issue pull request'
b'--spot-check-tpls: Minimal test set enabling blas and lapack tpls'
b'--timeout: Max time before ctest timeout (in seconds)'
b'--dry-run: Just print what would be executed'
b"--build-only: Just do builds, don't run anything"
b'--opt-flag=FLAG: Optimization flag (default: -O3)'
b'--cxxflags-extra=FLAGS: Extra flags to be added to CXX_FLAGS'
b'--ldflags-extra=FLAGS: Extra flags to be added to LD_FLAGS'
b''
b'--arch=ARCHITECTURE: overwrite architecture flags'
b'                     Provide a comma-separated list of arch codes (see available at link below):'
b'                       https://github.com/kokkos/kokkos/wiki/Compiling#table-43-architecture-variables'
b''
b'--with-cuda-options=OPT: set KOKKOS_CUDA_OPTIONS'
b'                         Provide a comma-separated list from the following valid items:'
b'                           force_uvm,use_ldg,enable_lambda,rdc'
b''
b'--with-options=OPT: set KOKKOS_OPTIONS'
b'                    Provide a comma-separated list from the following valid items:'
b'                      compiler_warnings'
b'                      aggressive_vectorization = add ivdep on loops'
b'                      disable_profiling = do not compile with profiling hooks'
b''
b'--build-list=BUILD,BUILD,BUILD...'
b'    Provide a comma-separated list of builds instead of running all builds'
b'    Valid items:'
b'      OpenMP, Threads, Serial, OpenMP_Serial, Threads_Serial'
b'      Cuda_OpenMP, Cuda_Threads, Cuda_Serial'
b''
b'--with-scalars=SCALARS: set KOKKOSKERNELS_SCALARS'
b'    Provide a comma-separated list scalar types'
b'    Valid items:'
b'      float, complex_float, double, complex_double'
b'        Example: SCALARS=double,complex_double'
b''
b'--with-ordinals=ORDS: set KOKKOSKERNELS_ORDINALS'
b'    Provide a comma-separated list ordinal types'
b'    Valid items:'
b'      int, int64_t'
b''
b'--with-offsets=OFFS: set KOKKOSKERNELS_OFFSETS'
b'    Provide a comma-separated list offset types'
b'    Valid items:'
b'      int, size_t'
b''
b'--with-layouts=LAYOUTS: set KOKKOSKERNELS_LAYOUTS'
b'    Provide a comma-separated list layouts'
b'    Valid items:'
b'      LayoutLeft,LayoutRight'
b''
b'--no-default-eti:  Do not include default ETI types for Kokkos Kernels'
b''
b'--disable-test-eti-only:  Do not restrict testing to ETI types for Kokkos Kernels'
b''
b'--with-spaces=SPACES:       Set spaces to be instantiated.'
b'                                Options: hostspace, cudaspace, cudauvmspace'
b''
b'--disable-perftests:  Do not build perftests for Kokkos Kernels'
b''
b'--enable-perftests:  build perftests for Kokkos Kernels (default)'
b''
b'--make-par-level=N:  Set parallelism level for builds (default: N=12)'
b''
b'--with-tpls=TPLS: set KOKKOSKERNELS_ENABLE_TPLS'
b'    Provide a comma-separated list of TPLs'
b'    Valid items:'
b'      blas, mkl, cublas, cusparse, cusolver, magma, armpl, rocblas, rocsparse, rocsolver'
b''
b'--cmake-flags=[CMAKE Command options]:  Set Kokkos Kernels cmake options not handled by script'
b'--kokkos-cmake-flags=[CMAKE Command options]:  Set Kokkos cmake options not handled by script'
b''
b'ARGS: list of expressions matching compilers to test'
b'  supported compilers sems'
b'    intel/19.1'
b'    gnu/10.2.1'
b''
b'Examples:'
b'  Run all tests'
b'  % test_all_sandia'
b''
b'  Run all gcc tests'
b'  % test_all_sandia gcc'
b''
b'  Run all gcc/4.8.4 and all intel tests'
b'  % test_all_sandia gcc/4.8.4 intel'
b''
b'  Run all tests in debug'
b'  % test_all_sandia --debug'
b''
b'  Run gcc/4.8.4 and only do OpenMP and OpenMP_Serial builds'
b'  % test_all_sandia gcc/4.8.4 --build-list=OpenMP,OpenMP_Serial'
b''
b'If you want to kill the tests, do:'
b'  hit ctrl-z'
b'  % kill -9 %1'
b''
b'srun: error: solo95: task 0: Exited with exit code 1'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 585 (click to expand)

b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Impl.hpp:23:'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:49:55: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const int an, const int xn,'
b'                                                      ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:89:75: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b'                                                                          ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:143:55: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const int an, const int xn,'
b'                                                      ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:183:75: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b'                                                                          ^'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/unit_test/backends/Test_Serial_Batched_Dense.cpp:20:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/unit_test/Test_Batched_Dense.hpp:45:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/unit_test/Test_Batched_SerialTbsv.hpp:22:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/src/KokkosBatched_Tbsv.hpp:54:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Impl.hpp:23:'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:49:55: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const int an, const int xn,'
b'                                                      ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:89:75: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b'                                                                          ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:143:55: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const int an, const int xn,'
b'                                                      ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_Tbsv_Serial_Internal.hpp:183:75: error: unused parameter 'xn' [-Werror,-Wunused-parameter]"
b'    const bool use_unit_diag, const bool do_conj, const int an, const int xn,'
b'                                                                          ^'
b'[ 73%] Linking CXX executable KokkosKernels_lapack_threads'
b'[ 73%] Built target KokkosKernels_lapack_threads'
b'[ 73%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 73%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/backends/Test_Serial_Graph.cpp.o'
b'[ 74%] Linking CXX executable KokkosKernels_lapack_serial'
b'[ 74%] Built target KokkosKernels_lapack_serial'
b'[ 75%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/__/__/test_common/Test_Main.cpp.o'
b'4 errors generated.'
b'make[2]: *** [batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/build.make:90: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/backends/Test_Threads_Batched_Dense.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1700: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 75%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/backends/Test_Threads_Graph.cpp.o'
b'4 errors generated.'
b'make[2]: *** [batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/build.make:90: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/backends/Test_Serial_Batched_Dense.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1646: batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/all] Error 2'
b'[ 75%] Linking CXX executable KokkosKernels_batched_sla_threads'
b'[ 75%] Built target KokkosKernels_batched_sla_threads'
b'[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'[ 76%] Built target KokkosKernels_batched_sla_serial'
b'[ 76%] Linking CXX executable KokkosKernels_common_serial'
b'[ 76%] Built target KokkosKernels_common_serial'
b'[ 77%] Linking CXX executable KokkosKernels_common_threads'
b'[ 77%] Built target KokkosKernels_common_threads'
b'[ 77%] Linking CXX executable KokkosKernels_batched_gemm_threads'
b'[ 77%] Built target KokkosKernels_batched_gemm_threads'
b'[ 78%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'[ 78%] Built target KokkosKernels_batched_gemm_serial'
b'[ 78%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 78%] Built target KokkosKernels_graph_threads'
b'[ 78%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 78%] Built target KokkosKernels_graph_serial'
b'[ 78%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 78%] Built target KokkosKernels_blas_threads'
b'[ 78%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 78%] Built target KokkosKernels_blas_serial'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake llvm/10.0.1 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b'        export KOKKOS_NUM_THREADS=8'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/projects/netpub/sems/llvm/10.0.1/gcc/10.2.1/b4rc6cw/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  --cmake-flags= --kokkos-cmake-flags= '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.585/TestAll_2024-06-12_10.00.16/llvm/10.0.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo95: task 0: Exited with exit code 1'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_ROCM561 # 1067 (click to expand)

b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:35454]: Insane message length'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (1935765607 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpack_header: protocol_version 515 not supported'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:41854]: Unspecified error'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (1951163745 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpackmem_xmalloc: Buffer to be unpacked is too large (1684369920 > 100000000)'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:38264]: Unspecified error'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:45142]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:45146]: Transport endpoint is not connected'
b'srun: error: unpack_header: protocol_version 515 not supported'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:49816]: Unspecified error'
b'srun: error: unpackmem_xmalloc: Buffer to be unpacked is too large (1684369920 > 100000000)'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:34600]: Unspecified error'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (2112418674 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:32970]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:53284]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:32974]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:53276]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:48798]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:42944]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:42946]: Insane message length'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (218777711 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (1741172816 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51944]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51958]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:47672]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:47688]: Insane message length'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (218776431 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (1681731632 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:39140]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:43268]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:43284]: Transport endpoint is not connected'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:46632]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:45160]: Socket timed out on send/recv operation'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (218777711 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:49354]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:49370]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:48290]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:48296]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:55698]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:55710]: Transport endpoint is not connected'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (555419848 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:39770]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:60188]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:33178]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:52108]: Transport endpoint is not connected'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:45952]: Transport endpoint is not connected'
b'  PASSED rocm-5.6.1-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.1-Hip_Serial-release build_time=5129 run_time=490'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561'
b'Finished: SUCCESS'
b''

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

b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:56638]: Unspecified error'
b'srun: error: unpack_header: protocol_version 515 not supported'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:42140]: Unspecified error'
b'srun: error: unpackmem_xmalloc: Buffer to be unpacked is too large (1684369920 > 100000000)'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:42146]: Unspecified error'
b'srun: error: unpack_header: protocol_version 515 not supported'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:58654]: Unspecified error'
b'srun: error: unpackmem_xmalloc: Buffer to be unpacked is too large (1684369920 > 100000000)'
b'srun: error: unpacking header'
b'srun: error: destroy_forward: no init'
b'srun: error: slurm_unpack_received_msg: Message receive failure'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:58656]: Unspecified error'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (3946591879 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:44352]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:44362]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:50280]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:59368]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:50306]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:45030]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:48386]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:35934]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:36390]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:36400]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:52362]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:52366]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:55756]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:60142]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:38682]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:35508]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:35524]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:36338]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:42694]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:36354]: Transport endpoint is not connected'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (218777711 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (2726164211 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (218776431 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (1681731632 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:54162]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:54168]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:47592]: Insane message length'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:47608]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:33682]: Socket timed out on send/recv operation'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:33424]: Transport endpoint is not connected'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (218777711 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:49108]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51142]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51144]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51156]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51396]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:51410]: Transport endpoint is not connected'
b'srun: error: unpackmem_ptr: Buffer to be unpacked is too large (555419848 > 100000000)'
b'srun: error: unpack error in io_init_msg_unpack'
b'srun: error: Invalid IO init header version'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:60824]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:60838]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:54006]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:54016]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:50178]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:50180]: Transport endpoint is not connected'
b'srun: error: io_init_msg_read too small'
b'srun: error: failed reading io init message'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:37482]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:37064]: Transport endpoint is not connected'
b'srun: error: eio_message_socket_accept: slurm_receive_msg[10.253.48.76:59294]: Transport endpoint is not connected'
b'  PASSED rocm-5.6.1-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.1-Hip_Serial-release build_time=5373 run_time=485'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561'
b'Finished: SUCCESS'
b''

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.

None yet

3 participants