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

Test_ODE_Newton: Add template parameters for Kokkos::pair #1929

Merged
merged 1 commit into from
Aug 3, 2023

Conversation

ndellingwood
Copy link
Contributor

Attempt to resolve "error: ‘pair’ was not declared in this scope" in cuda/11.2+gcc/8.3.0 builds

@ndellingwood ndellingwood requested a review from lucbv August 2, 2023 17:06
@ndellingwood
Copy link
Contributor Author

Attempt to resolve errors in nightly cuda/11.2+gcc/8.3.0 builds, here is error snip for reference:

02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:51:39: error: ‘pair’ was not declared in this scope
02:16:49    51 |     auto local_x = Kokkos::subview(
02:16:49       |                                   ~   ^                                                   
02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:51:39: note: suggested alternatives:
02:16:49 /net/watson.sandia.gov/storage/fast/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/9.2.0/base/include/c++/9.2.0/bits/stl_pair.h:208:8: note:   ‘std::pair’
02:16:49   208 |     struct pair
02:16:49       |        ^~~~
02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/TestAll_2023-08-02_02.02.07/cuda/11.0/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Pair.hpp:43:8: note:   ‘Kokkos::pair’
02:16:49    43 | struct pair {
02:16:49       |        ^~~~
02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:53:43: error: ‘pair’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
02:16:49    53 |     auto local_rhs = Kokkos::subview(
02:16:49       |                                           ^                                                   
02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:55:49: error: ‘pair’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
02:16:49    55 |     auto local_update = Kokkos::subview(
02:16:49       |                                                 ^                                                   
02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:57:39: error: ‘pair’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
02:16:49    57 |     auto local_J = Kokkos::subview(
02:16:49       |                                   ~   ^                                                   
02:16:49 /home/jenkins/jenkins-new/workspace/KokkosKernels_KokkosDev2_CUDA110_GCC92_cpp17/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:60:43: error: ‘pair’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
02:16:49    60 |     auto local_tmp = Kokkos::subview(

@@ -49,16 +49,23 @@ struct NewtonSolve_wrapper {
void operator()(const int idx) const {
// Take subviews to create the local problem
auto local_x = Kokkos::subview(
x, Kokkos::pair(my_nls.neqs * idx, my_nls.neqs * (idx + 1)));
x, Kokkos::pair<decltype(my_nls.neqs), decltype(my_nls.neqs)>(
Copy link
Contributor

Choose a reason for hiding this comment

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

I am not very happy with decltype(my_nls.neqs), can we just assume int here and potentially static_cast the input parameter instead?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@lucbv sounds good, I'll update the PR with these changes

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

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

@kokkos-devops-admin
Copy link

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

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.

Thanks @ndellingwood for doing this PR, it's a bit annoying that the compiler would complain about that...

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 382
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 55
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 54
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 54
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 60
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 49
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 561
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 556
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 555
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 77
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (ndellingwood/kokkos-kernels)
  • Branch: fix-pair
  • SHA: fa0834b
  • Mode: TEST_REPO

Pull Request Author: ndellingwood

@ndellingwood
Copy link
Contributor Author

it's a bit annoying that the compiler would complain about that...

@lucbv yeah, it's unfortunate, we've hit some unexpected bumps with gcc/8.3 (this apparent ctad thing has shown a couple times but inconsistent, sometimes the order of attributes on args to functions is problematic when it shouldn't be...)

Attempt to resolve "error: ‘pair’ was not declared in this scope" in
cuda/11.2+gcc/8.3.0 builds
@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has pushed a change to the PR before testing completed. NEW EVENT 'committed', ID C_kwDOBK7s5toAKDhhN2E0OGFiZmM4YTQ4MzY0N2M0NTVlZTEyMzAzMWZkNWQ4MDFiNmQ... The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@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: 791
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 382
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 55
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 54
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 54
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 60
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 49
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 561
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 556
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 555
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 77
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa0834b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 791 (click to expand)

b'            instantiation of "void Test::test_simple_systems() [with execution_space=Kokkos::OpenMP, scalar_type=float]" '
b'(539): here'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp(73): error: no instance of function template "KokkosODE::Experimental::Newton::Solve" matches the argument list'
b'            argument types are: (const Test::CircleHyperbolaIntersection, const KokkosODE::Experimental::Newton_params, Kokkos::View, Kokkos::Device, Kokkos::MemoryTraits<0U>>, , Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>, Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>, Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>)'
b'          detected during:'
b'            instantiation of "void Test::NewtonSolve_wrapper::operator()(int) const [with system_type=Test::CircleHyperbolaIntersection, mat_type=Kokkos::View, vec_type=Kokkos::View, status_view=Kokkos::View]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(75): here'
b'            instantiation of "std::enable_if_t<, void> Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::exec_work(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=, Enable=Kokkos::Impl::WorkTagTrait::base_traits::work_tag]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(67): here'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::exec_range(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(121): here'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::execute() const [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel.hpp(144): here'
b'            instantiation of "void Kokkos::parallel_for(const std::__cxx11::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Enable=void]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel.hpp(153): here'
b'            instantiation of "void Kokkos::parallel_for(const ExecPolicy &, const FunctorType &, std::enable_if_t::value, void> *) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>]" '
b'(109): here'
b'            instantiation of "void Test::run_newton_test(const system_type &, KokkosODE::Experimental::Newton_params &, const scalar_type *, const scalar_type *) [with system_type=Test::CircleHyperbolaIntersection, execution_space=Kokkos::OpenMP, scalar_type=float]" '
b'(447): here'
b'            instantiation of "void Test::test_simple_systems() [with execution_space=Kokkos::OpenMP, scalar_type=float]" '
b'(539): here'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp(73): error: no instance of function template "KokkosODE::Experimental::Newton::Solve" matches the argument list'
b'            argument types are: (const Test::CirclesIntersections, const KokkosODE::Experimental::Newton_params, Kokkos::View, Kokkos::Device, Kokkos::MemoryTraits<0U>>, , Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>, Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>, Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>)'
b'          detected during:'
b'            instantiation of "void Test::NewtonSolve_wrapper::operator()(int) const [with system_type=Test::CirclesIntersections, mat_type=Kokkos::View, vec_type=Kokkos::View, status_view=Kokkos::View]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(75): here'
b'            instantiation of "std::enable_if_t<, void> Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::exec_work(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=, Enable=Kokkos::Impl::WorkTagTrait::base_traits::work_tag]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(67): here'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::exec_range(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(121): here'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::execute() const [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel.hpp(144): here'
b'            instantiation of "void Kokkos::parallel_for(const std::__cxx11::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Enable=void]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel.hpp(153): here'
b'            instantiation of "void Kokkos::parallel_for(const ExecPolicy &, const FunctorType &, std::enable_if_t::value, void> *) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>]" '
b'(109): here'
b'            instantiation of "void Test::run_newton_test(const system_type &, KokkosODE::Experimental::Newton_params &, const scalar_type *, const scalar_type *) [with system_type=Test::CirclesIntersections, execution_space=Kokkos::OpenMP, scalar_type=double]" '
b'(423): here'
b'            instantiation of "void Test::test_simple_systems() [with execution_space=Kokkos::OpenMP, scalar_type=double]" '
b'(542): here'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp(73): error: no instance of function template "KokkosODE::Experimental::Newton::Solve" matches the argument list'
b'            argument types are: (const Test::CircleHyperbolaIntersection, const KokkosODE::Experimental::Newton_params, Kokkos::View, Kokkos::Device, Kokkos::MemoryTraits<0U>>, , Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>, Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>, Kokkos::View, Kokkos::LayoutStride>, Kokkos::Device, std::conditional_t, Kokkos::MemoryManaged>>)'
b'          detected during:'
b'            instantiation of "void Test::NewtonSolve_wrapper::operator()(int) const [with system_type=Test::CircleHyperbolaIntersection, mat_type=Kokkos::View, vec_type=Kokkos::View, status_view=Kokkos::View]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(75): here'
b'            instantiation of "std::enable_if_t<, void> Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::exec_work(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=, Enable=Kokkos::Impl::WorkTagTrait::base_traits::work_tag]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(67): here'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::exec_range(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member, Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::Member) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp(121): here'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::OpenMP>::execute() const [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel.hpp(144): here'
b'            instantiation of "void Kokkos::parallel_for(const std::__cxx11::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Enable=void]" '
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.791/TestAll_2023-08-03_13.29.20/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel.hpp(153): here'
b'            instantiation of "void Kokkos::parallel_for(const ExecPolicy &, const FunctorType &, std::enable_if_t::value, void> *) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>]" '
b'(109): here'
b'            instantiation of "void Test::run_newton_test(const system_type &, KokkosODE::Experimental::Newton_params &, const scalar_type *, const scalar_type *) [with system_type=Test::CircleHyperbolaIntersection, execution_space=Kokkos::OpenMP, scalar_type=double]" '
b'(447): here'
b'            instantiation of "void Test::test_simple_systems() [with execution_space=Kokkos::OpenMP, scalar_type=double]" '
b'(542): here'
b''
b'12 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/backends/Test_OpenMP_ODE.cpp".'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'[ 81%] Linking CXX executable KokkosKernels_common_cuda'
b'[ 81%] Built target KokkosKernels_common_cuda'
b'make[1]: *** [CMakeFiles/Makefile2:1933: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'[ 81%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 81%] Built target KokkosKernels_blas_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 81%] Built target KokkosKernels_graph_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 81%] Built target KokkosKernels_batched_dla_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_cuda'
b'[ 81%] Built target KokkosKernels_blas_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_cuda'
b'[ 81%] Built target KokkosKernels_batched_dla_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_graph_cuda'
b'[ 81%] Built target KokkosKernels_graph_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 81%] 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.791/TestAll_2023-08-03_13.29.20/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 # 382 (click to expand)

b'[ 77%] Built target KokkosKernels_common_serial'
b'[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 77%] 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'[ 77%] Built target KokkosKernels_batched_sla_cuda'
b'[ 78%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o'
b'[ 78%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/backends/Test_Cuda_ODE.cpp.o'
b'[ 78%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'In file included from /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/backends/Test_Cuda_ODE.cpp:20:'
b'In file included from /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24:'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected expression'
b'        Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'                               ^'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected expression'
b'                               static_assert(my_nls.neqs * (idx + 1))),'
b'                               ^'
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'[ 78%] Built target KokkosKernels_batched_gemm_serial'
b'[ 78%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'2 errors generated when compiling for sm_70.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/backends/Test_Cuda_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1908: ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 78%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'In file included from /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24:'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected expression'
b'        Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'                               ^'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected expression'
b'                               static_assert(my_nls.neqs * (idx + 1))),'
b'                               ^'
b'2 errors generated when compiling for sm_70.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1935: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'[ 78%] 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'[ 78%] Built target KokkosKernels_common_cuda'
b'[ 78%] 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'[ 78%] Built target KokkosKernels_batched_gemm_cuda'
b'[ 78%] Linking CXX executable KokkosKernels_graph_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'[ 78%] Built target KokkosKernels_graph_serial'
b'[ 79%] 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'[ 79%] Built target KokkosKernels_blas_serial'
b'[ 79%] Linking CXX executable KokkosKernels_batched_dla_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'[ 79%] Built target KokkosKernels_batched_dla_serial'
b'[ 79%] 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'[ 79%] Built target KokkosKernels_blas_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_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'[ 80%] Built target KokkosKernels_batched_dla_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_graph_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'[ 80%] Built target KokkosKernels_graph_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_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'[ 81%] Built target KokkosKernels_sparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_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'[ 81%] Built target KokkosKernels_sparse_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''
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  '
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.382/TestAll_2023-08-03_13.29.21/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 # 55 (click to expand)

b'[ 67%] Building CXX object perf_test/graph/CMakeFiles/graph_color.dir/KokkosGraph_color.cpp.o'
b'[ 67%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o'
b'[ 67%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/backends/Test_OpenMP_Graph.cpp.o'
b'[ 67%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o'
b'[ 68%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/backends/Test_OpenMP_Blas.cpp.o'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/backends/Test_OpenMP_ODE.cpp:20:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function void Test::NewtonSolve_wrapper::operator()(int) const:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before ( token'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before static_assert'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before static_assert'
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1701: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 68%] Linking CXX executable KokkosBatched_Test_SPMV'
b'[ 68%] Built target KokkosBatched_Test_SPMV'
b'[ 68%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 68%] Built target KokkosBatched_Test_CG'
b'[ 69%] Linking CXX executable graph_color'
b'[ 69%] Built target graph_color'
b'[ 69%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 69%] Built target KokkosKernels_batched_sla_openmp'
b'[ 70%] Linking CXX executable KokkosBatched_Test_GMRES'
b'[ 70%] Built target KokkosBatched_Test_GMRES'
b'[ 70%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 70%] Built target KokkosKernels_common_openmp'
b'[ 70%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 70%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 71%] Built target KokkosKernels_graph_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 71%] Built target KokkosKernels_blas_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 71%] Built target KokkosKernels_batched_dla_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 72%] Built target KokkosKernels_sparse_openmp'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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  '
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_GNU1021/KokkosKernels_PullRequest_GNU1021.55/TestAll_2023-08-03_13.31.11/gnu/10.2.1/OpenMP-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'gnu-10.2.1-Threads_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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  '
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_GNU1021/KokkosKernels_PullRequest_GNU1021.55/TestAll_2023-08-03_13.31.11/gnu/10.2.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: solo241: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'[ 66%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o'
b'[ 67%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o'
b'[ 67%] Building CXX object perf_test/graph/CMakeFiles/graph_color.dir/KokkosGraph_color.cpp.o'
b'[ 68%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/backends/Test_OpenMP_Batched_Sparse.cpp.o'
b'[ 68%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/backends/Test_OpenMP_ODE.cpp:20:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function void Test::NewtonSolve_wrapper::operator()(int) const:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before ( token'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before static_assert'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before static_assert'
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1701: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 68%] Linking CXX executable KokkosBatched_Test_SPMV'
b'[ 68%] Built target KokkosBatched_Test_SPMV'
b'[ 68%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 68%] Built target KokkosBatched_Test_CG'
b'[ 69%] Linking CXX executable graph_color'
b'[ 69%] Built target graph_color'
b'[ 69%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 69%] Built target KokkosKernels_batched_sla_openmp'
b'[ 70%] Linking CXX executable KokkosBatched_Test_GMRES'
b'[ 70%] Built target KokkosBatched_Test_GMRES'
b'[ 70%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 70%] Built target KokkosKernels_common_openmp'
b'[ 70%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 70%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 71%] Built target KokkosKernels_graph_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 71%] Built target KokkosKernels_blas_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 71%] Built target KokkosKernels_batched_dla_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 72%] Built target KokkosKernels_sparse_openmp'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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'
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_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.54/TestAll_2023-08-03_13.31.22/gnu/10.2.1/OpenMP-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'gnu-10.2.1-Threads_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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'
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_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.54/TestAll_2023-08-03_13.31.22/gnu/10.2.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: solo326: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'[ 78%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/backends/Test_Serial_Blas.cpp.o'
b'[ 78%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 78%] Built target KokkosKernels_batched_sla_openmp'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'[ 79%] Built target KokkosKernels_batched_sla_serial'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 80%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o'
b'[ 80%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o'
b'[ 80%] Linking CXX executable KokkosKernels_common_serial'
b'[ 80%] Built target KokkosKernels_common_serial'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'[ 80%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 80%] Built target KokkosKernels_common_openmp'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function void Test::NewtonSolve_wrapper::operator()(int) const:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before ( token'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before static_assert'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before static_assert'
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1906: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/backends/Test_OpenMP_ODE.cpp:20:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function void Test::NewtonSolve_wrapper::operator()(int) const:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before ( token'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before static_assert'
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before static_assert'
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1933: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'[ 81%] Built target KokkosKernels_batched_gemm_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 81%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 81%] Built target KokkosKernels_graph_serial'
b'[ 81%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 81%] Built target KokkosKernels_graph_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 81%] Built target KokkosKernels_blas_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 81%] Built target KokkosKernels_blas_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 81%] Built target KokkosKernels_batched_dla_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 81%] Built target KokkosKernels_batched_dla_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 81%] Built target KokkosKernels_sparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 81%] Built target KokkosKernels_sparse_openmp'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1 openblas/0.3.21'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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    --with-options= --with-cuda-options=   --no-examples  '
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_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.54/TestAll_2023-08-03_13.31.28/gnu/10.2.1/OpenMP_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: solo349: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "std::enable_if_t::value, void> Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec_range(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::Threads>::Member, Kokkos::Impl::ParallelFor, Kokkos::Threads>::Member) [with'
b'                      FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=, TagType=Kokkos::Impl::WorkTagTrait::base_traits::work_tag]" at line 74 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "std::enable_if_t::value, void> Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec_schedule(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View,'
b'                      Kokkos::View>, Traits=, Schedule=Kokkos::Static]" at line 63 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" at line 111 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::Threads>::execute() const [with FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Traits=]" at line 144 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"'
b'            instantiation of "void Kokkos::parallel_for(const std::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>, Enable=void]" at line 153 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"'
b'            instantiation of "void Kokkos::parallel_for(const ExecPolicy &, const FunctorType &, std::enable_if_t::value, void> *) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::NewtonSolve_wrapper, Kokkos::View, Kokkos::View, Kokkos::View>]" at line 109'
b'            instantiation of "void Test::run_newton_test(const system_type &, KokkosODE::Experimental::Newton_params &, const scalar_type *, const scalar_type *) [with system_type=Test::CircleHyperbolaIntersection, execution_space=Kokkos::Threads, scalar_type=double]" at line 447'
b'            instantiation of "void Test::test_simple_systems() [with execution_space=Kokkos::Threads, scalar_type=double]" at line 542'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp (code 2)'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o] Error 2'
b'make[1]: *** [CMakeFiles/Makefile2:1375: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 86%] Linking CXX executable KokkosKernels_wiki_crsmatrix'
b'[ 87%] Linking CXX executable KokkosKernels_wiki_spgemm'
b'[ 87%] Built target KokkosKernels_wiki_crsmatrix'
b'[ 87%] Linking CXX executable KokkosKernels_wiki_spadd'
b'[ 87%] Built target KokkosKernels_wiki_spgemm'
b'[ 87%] Built target KokkosKernels_wiki_spadd'
b'[ 88%] Linking CXX executable KokkosKernels_wiki_spmv'
b'[ 88%] Built target KokkosKernels_wiki_spmv'
b'[ 88%] Linking CXX executable KokkosKernels_batched_sla_threads'
b'[ 88%] Built target KokkosKernels_batched_sla_threads'
b'[ 88%] Linking CXX executable KokkosKernels_batched_gemm_threads'
b'[ 88%] Built target KokkosKernels_batched_gemm_threads'
b'[ 89%] Linking CXX executable KokkosKernels_common_threads'
b'[ 89%] Built target KokkosKernels_common_threads'
b'[ 90%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 90%] Built target KokkosKernels_graph_threads'
b'[ 90%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 90%] Built target KokkosKernels_blas_threads'
b'[ 91%] Linking CXX executable KokkosKernels_batched_dla_threads'
b'[ 91%] Built target KokkosKernels_batched_dla_threads'
b'[ 91%] Linking CXX executable KokkosKernels_sparse_threads'
b'[ 91%] Built target KokkosKernels_sparse_threads'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
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_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/OpenMP-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'intel-19.0.5.281-Threads-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
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_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.60/TestAll_2023-08-03_13.31.37/intel/19.0.5.281/Threads-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: solo214: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'[ 78%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/backends/Test_Threads_Batched_Dense.cpp.o'
b'[ 79%] Linking CXX executable KokkosKernels_batched_sla_threads'
b'[ 79%] Built target KokkosKernels_batched_sla_threads'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'[ 79%] Built target KokkosKernels_batched_sla_serial'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o'
b'[ 80%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o'
b'[ 80%] Linking CXX executable KokkosKernels_common_threads'
b'[ 80%] Built target KokkosKernels_common_threads'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 81%] Linking CXX executable KokkosKernels_common_serial'
b'[ 81%] Built target KokkosKernels_common_serial'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_threads'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected expression'
b'        Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'                               ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected expression'
b'                               static_assert(my_nls.neqs * (idx + 1))),'
b'                               ^'
b'[ 81%] Built target KokkosKernels_batched_gemm_threads'
b'[ 81%] Building CXX object perf_test/batched/sparse/CG/CMakeFiles/KokkosBatched_Test_CG.dir/KokkosBatched_Test_CG.cpp.o'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp:20:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected expression'
b'        Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'                               ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected expression'
b'                               static_assert(my_nls.neqs * (idx + 1))),'
b'                               ^'
b'[ 81%] Built target KokkosKernels_batched_gemm_serial'
b'[ 81%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o'
b'2 errors generated.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1906: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'2 errors generated.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1933: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/all] Error 2'
b'[ 81%] Linking CXX executable KokkosBatched_Test_cusolverDn'
b'[ 81%] Built target KokkosBatched_Test_cusolverDn'
b'[ 81%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 81%] Built target KokkosBatched_Test_CG'
b'[ 81%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 81%] Built target KokkosKernels_graph_threads'
b'[ 81%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 81%] Built target KokkosKernels_blas_threads'
b'[ 81%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 81%] Built target KokkosKernels_graph_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 81%] Built target KokkosKernels_blas_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_threads'
b'[ 81%] Built target KokkosKernels_batched_dla_threads'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 81%] Built target KokkosKernels_batched_dla_serial'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_threads'
b'[ 81%] Built target KokkosKernels_sparse_threads'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 81%] Built target KokkosKernels_sparse_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/3.22.3 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''
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  '
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.49/TestAll_2023-08-03_13.47.48/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: solo108: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'[ 60%] Building CXX object CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 60%] Building CXX object CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 60%] Building CXX object CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 61%] Linking CXX static library libkokkoskernels.a'
b'[ 61%] Built target kokkoskernels'
b'Scanning dependencies of target KokkosKernels_common_openmp'
b'Scanning dependencies of target KokkosKernels_batched_gemm_openmp'
b'[ 61%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 61%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_openmp.dir/__/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosKernels_ode_openmp'
b'Scanning dependencies of target KokkosBatched_Test_CG'
b'Scanning dependencies of target KokkosKernels_batched_sla_openmp'
b'[ 61%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 61%] Building CXX object perf_test/batched/sparse/CG/CMakeFiles/KokkosBatched_Test_CG.dir/KokkosBatched_Test_CG.cpp.o'
b'[ 61%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosBatched_Test_GMRES'
b'[ 61%] Building CXX object perf_test/batched/sparse/GMRES/CMakeFiles/KokkosBatched_Test_GMRES.dir/KokkosBatched_Test_GMRES.cpp.o'
b'Scanning dependencies of target KokkosBatched_Test_cusolverSp'
b'Scanning dependencies of target KokkosBatched_Test_cusolverDn'
b'Scanning dependencies of target KokkosKernels_graph_openmp'
b'[ 61%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverSp.dir/KokkosBatched_Test_cusolverSp.cpp.o'
b'[ 62%] Building CXX object perf_test/batched/sparse/cusolver/CMakeFiles/KokkosBatched_Test_cusolverDn.dir/KokkosBatched_Test_cusolverDn.cpp.o'
b'[ 62%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosKernels_batched_dla_openmp'
b'[ 63%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosKernels_blas_openmp'
b'[ 63%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosKernels_sparse_openmp'
b'[ 63%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 63%] Linking CXX executable KokkosBatched_Test_cusolverDn'
b'[ 64%] Linking CXX executable KokkosBatched_Test_cusolverSp'
b'[ 64%] Built target KokkosBatched_Test_cusolverDn'
b'[ 65%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/backends/Test_OpenMP_Blas.cpp.o'
b'[ 65%] Built target KokkosBatched_Test_cusolverSp'
b'[ 66%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/backends/Test_OpenMP_Batched_Sparse.cpp.o'
b'[ 67%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_openmp.dir/backends/Test_OpenMP_Batched_GEMM.cpp.o'
b'[ 67%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o'
b'[ 68%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o'
b'[ 68%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o'
b'[ 68%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o'
b'[ 68%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/backends/Test_OpenMP_Graph.cpp.o'
b'Scanning dependencies of target KokkosBatched_Test_SPMV'
b'[ 68%] Building CXX object perf_test/batched/sparse/SPMV/CMakeFiles/KokkosBatched_Test_SPMV.dir/KokkosBatched_Test_SPMV.cpp.o'
b'Scanning dependencies of target graph_triangle'
b'[ 68%] Building CXX object perf_test/graph/CMakeFiles/graph_triangle.dir/KokkosGraph_triangle.cpp.o'
b'In file included from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/backends/Test_OpenMP_ODE.cpp:20:'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function 'void Test::NewtonSolve_wrapper::operator()(int) const':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before '(' token"
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before 'static_assert'"
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before 'static_assert'"
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:93: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1839: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 68%] Linking CXX executable KokkosBatched_Test_SPMV'
b'[ 68%] Built target KokkosBatched_Test_SPMV'
b'[ 68%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 68%] Built target KokkosBatched_Test_CG'
b'[ 68%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 68%] Built target KokkosKernels_batched_sla_openmp'
b'[ 69%] Linking CXX executable KokkosBatched_Test_GMRES'
b'[ 69%] Built target KokkosBatched_Test_GMRES'
b'[ 70%] Linking CXX executable graph_triangle'
b'[ 70%] Built target graph_triangle'
b'[ 70%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 70%] Built target KokkosKernels_common_openmp'
b'[ 70%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 70%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 71%] Built target KokkosKernels_graph_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 71%] Built target KokkosKernels_blas_openmp'
b'[ 71%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 71%] Built target KokkosKernels_batched_dla_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 72%] Built target KokkosKernels_sparse_openmp'
b'make: *** [Makefile:158: all] Error 2'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Built target KokkosKernels_batched_sla_serial'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o'
b'Scanning dependencies of target KokkosKernels_sparse_serial'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 80%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o'
b'[ 80%] Linking CXX executable KokkosKernels_common_serial'
b'[ 80%] Built target KokkosKernels_common_serial'
b'Scanning dependencies of target KokkosKernels_ode_openmp'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 81%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 81%] Built target KokkosKernels_common_openmp'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o'
b'Scanning dependencies of target KokkosKernels_ode_serial'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'In file included from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/backends/Test_OpenMP_ODE.cpp:20:'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function 'void Test::NewtonSolve_wrapper::operator()(int) const':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before '(' token"
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before 'static_assert'"
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before 'static_assert'"
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:93: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2051: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'In file included from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24,'
b'                 from /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp: In member function 'void Test::NewtonSolve_wrapper::operator()(int) const':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:31: error: expected primary-expression before '(' token"
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                               ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected primary-expression before 'static_assert'"
b'   68 |         Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'      |                                ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected primary-expression before 'static_assert'"
b'   69 |                                static_assert(my_nls.neqs * (idx + 1))),'
b'      |                                ^~~~~~~~~~~~~'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'[ 81%] Built target KokkosKernels_batched_gemm_serial'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:93: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2079: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'[ 81%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 81%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 81%] Built target KokkosKernels_graph_serial'
b'[ 81%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 81%] Built target KokkosKernels_graph_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 81%] Built target KokkosKernels_blas_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 81%] Built target KokkosKernels_blas_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 81%] Built target KokkosKernels_batched_dla_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 81%] Built target KokkosKernels_batched_dla_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 81%] Built target KokkosKernels_sparse_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 81%] Built target KokkosKernels_sparse_serial'
b'make: *** [Makefile:158: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $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  '
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/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.556/TestAll_2023-08-03_13.45.55/gcc/10.2.0/OpenMP_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'salloc: Relinquishing job allocation 3954'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'[ 74%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/__/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosKernels_blas_serial'
b'Scanning dependencies of target KokkosKernels_blas_hip'
b'[ 74%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_hip.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 74%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 74%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o'
b'[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_hip.dir/backends/Test_HIP_Batched_GEMM.cpp.o'
b'[ 75%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_hip.dir/backends/Test_HIP_Common.cpp.o'
b'[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_serial.dir/backends/Test_Serial_Batched_GEMM.cpp.o'
b'[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/backends/Test_Serial_Batched_Sparse.cpp.o'
b'[ 76%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_hip.dir/backends/Test_HIP_Graph.cpp.o'
b'[ 76%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/backends/Test_Serial_Graph.cpp.o'
b'[ 76%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_hip.dir/backends/Test_HIP_Batched_Sparse.cpp.o'
b'[ 76%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/backends/Test_Serial_Batched_Dense.cpp.o'
b'[ 77%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_hip.dir/backends/Test_HIP_Batched_Dense.cpp.o'
b'[ 77%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_hip.dir/backends/Test_HIP_Blas.cpp.o'
b'[ 78%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/backends/Test_Serial_Blas.cpp.o'
b'[ 79%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'[ 79%] Linking CXX executable KokkosKernels_common_serial'
b'[ 79%] Built target KokkosKernels_batched_sla_serial'
b'Scanning dependencies of target KokkosKernels_sparse_serial'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Built target KokkosKernels_common_serial'
b'Scanning dependencies of target KokkosKernels_sparse_hip'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_hip.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 80%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o'
b'[ 80%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_hip.dir/backends/Test_HIP_Sparse.cpp.o'
b'[ 80%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'[ 80%] Built target KokkosKernels_batched_gemm_serial'
b'Scanning dependencies of target KokkosKernels_ode_serial'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24:'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected expression'
b'        Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'                               ^'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected expression'
b'                               static_assert(my_nls.neqs * (idx + 1))),'
b'                               ^'
b'2 errors generated when compiling for gfx908.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:95: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2053: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 80%] Linking CXX executable KokkosKernels_batched_gemm_hip'
b'[ 80%] Built target KokkosKernels_batched_gemm_hip'
b'[ 80%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 80%] Linking CXX executable KokkosKernels_common_hip'
b'[ 80%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 80%] Built target KokkosKernels_graph_serial'
b'[ 80%] Built target KokkosKernels_common_hip'
b'[ 80%] Built target KokkosKernels_blas_serial'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 80%] Built target KokkosKernels_batched_dla_serial'
b'[ 80%] Linking CXX executable KokkosKernels_blas_hip'
b'[ 80%] Built target KokkosKernels_blas_hip'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_hip'
b'[ 80%] Built target KokkosKernels_batched_dla_hip'
b'[ 80%] Linking CXX executable KokkosKernels_graph_hip'
b'[ 80%] Built target KokkosKernels_graph_hip'
b'[ 80%] Linking CXX executable KokkosKernels_batched_sla_hip'
b'[ 80%] Built target KokkosKernels_batched_sla_hip'
b'[ 80%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 80%] Built target KokkosKernels_sparse_serial'
b'[ 80%] Linking CXX executable KokkosKernels_sparse_hip'
b'[ 80%] Built target KokkosKernels_sparse_hip'
b'make: *** [Makefile:160: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $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  '
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/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.555/TestAll_2023-08-03_13.47.13/rocm/5.2.0/Hip_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: caraway05: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520 # 77 (click to expand)

b'Scanning dependencies of target KokkosKernels_blas_hip'
b'Scanning dependencies of target KokkosKernels_blas_serial'
b'[ 73%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_hip.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 73%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 74%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_serial.dir/backends/Test_Serial_Batched_GEMM.cpp.o'
b'[ 74%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o'
b'[ 74%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_hip.dir/backends/Test_HIP_Common.cpp.o'
b'[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_hip.dir/backends/Test_HIP_Batched_GEMM.cpp.o'
b'[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/backends/Test_Serial_Batched_Sparse.cpp.o'
b'[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_hip.dir/backends/Test_HIP_Batched_Sparse.cpp.o'
b'[ 76%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_hip.dir/backends/Test_HIP_Graph.cpp.o'
b'[ 76%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/backends/Test_Serial_Graph.cpp.o'
b'[ 76%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_hip.dir/backends/Test_HIP_Batched_Dense.cpp.o'
b'[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_hip.dir/backends/Test_HIP_Blas.cpp.o'
b'[ 76%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/backends/Test_Serial_Batched_Dense.cpp.o'
b'[ 77%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/backends/Test_Serial_Blas.cpp.o'
b'[ 78%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'[ 78%] Linking CXX executable KokkosKernels_common_serial'
b'[ 78%] Built target KokkosKernels_batched_sla_serial'
b'Scanning dependencies of target KokkosKernels_sparse_serial'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 78%] Built target KokkosKernels_common_serial'
b'Scanning dependencies of target KokkosKernels_sparse_hip'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_hip.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o'
b'[ 79%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_hip.dir/backends/Test_HIP_Sparse.cpp.o'
b'[ 79%] Built target KokkosKernels_batched_gemm_serial'
b'Scanning dependencies of target KokkosKernels_ode_serial'
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE.hpp:24:'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:68:32: error: expected expression'
b'        Kokkos::pair(static_assert(my_nls.neqs * idx),'
b'                               ^'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_Newton.hpp:69:32: error: expected expression'
b'                               static_assert(my_nls.neqs * (idx + 1))),'
b'                               ^'
b'2 errors generated when compiling for gfx908.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:95: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2053: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 79%] Linking CXX executable KokkosKernels_batched_gemm_hip'
b'[ 79%] Built target KokkosKernels_batched_gemm_hip'
b'[ 79%] Linking CXX executable KokkosKernels_common_hip'
b'[ 79%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 79%] Built target KokkosKernels_common_hip'
b'[ 79%] Built target KokkosKernels_graph_serial'
b'[ 79%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 79%] Built target KokkosKernels_blas_serial'
b'[ 79%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 79%] Built target KokkosKernels_batched_dla_serial'
b'[ 79%] Linking CXX executable KokkosKernels_blas_hip'
b'[ 79%] Built target KokkosKernels_blas_hip'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_hip'
b'[ 80%] Built target KokkosKernels_batched_dla_hip'
b'[ 80%] Linking CXX executable KokkosKernels_graph_hip'
b'[ 80%] Built target KokkosKernels_graph_hip'
b'[ 80%] Linking CXX executable KokkosKernels_batched_sla_hip'
b'[ 80%] Built target KokkosKernels_batched_sla_hip'
b'[ 80%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 80%] Built target KokkosKernels_sparse_serial'
b'[ 80%] Linking CXX executable KokkosKernels_sparse_hip'
b'[ 80%] Built target KokkosKernels_sparse_hip'
b'make: *** [Makefile:160: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0 openblas/0.3.20/rocm/5.2.0'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $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=,blas,rocblas,rocsparse    --with-options= --with-cuda-options=   --no-examples  '
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/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.77/TestAll_2023-08-03_13.47.16/rocm/5.2.0/Hip_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: caraway06: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Sending e-mails to: cwpears@sandia.gov'
b'Finished: FAILURE'
b''

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 383
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 56
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 55
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 55
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 61
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 50
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 562
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 557
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 556
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 78
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (ndellingwood/kokkos-kernels)
  • Branch: fix-pair
  • SHA: 8a7a48a
  • Mode: TEST_REPO

Pull Request Author: ndellingwood

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 383
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 56
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 55
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 55
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 61
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 50
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 562
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 557
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 556
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 78
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/ndellingwood/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8a7a48a
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA fe9a5ac
PR_LABELS
PULLREQUESTNUM 1929
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...

@ndellingwood ndellingwood merged commit 1bca364 into kokkos:develop Aug 3, 2023
@ndellingwood ndellingwood deleted the fix-pair branch August 3, 2023 23:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants