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

Stream support for Gauss-Seidel: Symbolic, Numeric, Apply (PSGS and Team_PSGS) #1906

Merged
merged 30 commits into from
Aug 29, 2023

Conversation

e10harvey
Copy link
Contributor

@e10harvey e10harvey commented Jul 18, 2023

  • Add execution space inst member to GS handle
  • Added execution space overloads for:
    • Symbolic (graph coloring runs in default execution space until Add KokkosGraph stream support #1879 is resolved)
    • Numeric
    • Apply (PSGS and Team_PSGS under the GS_DEFAULT algorithm are supported)

TODOs:

  • Update GS impl to use execution_space inst member.
  • Address BSR GS regressions for the non-stream interfaces.

Related to #1860

// std::cout << "num_big_rows:" << num_big_rows << std::endl;

if (KokkosKernels::Impl::kk_is_gpu_exec_space<MyExecSpace>()) {
// check if we have enough memory for this. lower the concurrency if
// we do not have enugh memory.
// TODO: Need to account for number of streams here?
Copy link
Contributor Author

Choose a reason for hiding this comment

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

For the shared memory byte calculations, we may need to update the kk routines that query the exe space. If we can do that, I think the implementation can remain stream-agnostic.

Copy link
Contributor

Choose a reason for hiding this comment

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

Actually the memory queries are independent of streams since the GPU memory is not split and allocated to each stream.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks for confirming

void set_execution_space(const HandleExecSpace exec_space) {
static bool is_exec_space_set = false;
if (!is_exec_space_set) {
this->execution_space = exec_space;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

If the user wants to change the execution space, this can only be done once per handle instantiation.

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.

Some changes are needed for consistency with the rest of the library.
I am okay with the execution space instance being stored in the handle if that is something done consistently for all sparse algorithms.

@@ -151,10 +151,10 @@ inline void kk_exclusive_parallel_prefix_sum(
template <typename forward_array_type, typename MyExecSpace>
void kk_inclusive_parallel_prefix_sum(
typename forward_array_type::value_type num_elements,
forward_array_type arr) {
typedef Kokkos::RangePolicy<MyExecSpace> my_exec_space;
forward_array_type arr, MyExecSpace my_exec_space = MyExecSpace()) {
Copy link
Contributor

Choose a reason for hiding this comment

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

The normal pattern when allowing an execution space instance in a kernel is to do the following:

// Add a new overload with the execution space instance as first parameter
// this follows the patter of Kokkos Core and makes our library uniform, i.e.
// user friendly
template <typename forward_array_type, typename MyExecSpace>
void kk_inclusive_parallel_prefix_sum(MyExecSpace space, ...) {}

// Replace the old implementation with a simple wrapper that
// creates an instance of the execution space and passes it to
// the new overload, this is for backward compatibility
template <typename forward_array_type, typename MyExecSpace>
void kk_inclusive_parallel_prefix_sum(...) {
  MyExecSpace space{};
  kk_inclusive_parallel_prefix_sum(pace, ...);
}

In the case of kk_inclusive_parallel_prefix_sum since the function is in the impl namespace we can be a bit more lose and we can remove backward compatibility since it should only be used in the library but you might want to check for any usage in Trilinos...

@@ -457,9 +457,9 @@ struct Fill_Reverse_Map {
template <typename forward_array_type, typename MyExecSpace>
void inclusive_parallel_prefix_sum(
typename forward_array_type::value_type num_elements,
forward_array_type arr) {
forward_array_type arr, MyExecSpace my_exec_space = MyExecSpace()) {
Copy link
Contributor

Choose a reason for hiding this comment

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

See comment about kk_inclusive_parallel_prefix_sum


typedef typename reverse_array_type::value_type lno_t;
typedef typename forward_array_type::value_type reverse_lno_t;

const lno_t MINIMUM_TO_ATOMIC = 64;

typedef Kokkos::RangePolicy<MyExecSpace> my_exec_space;
typedef Kokkos::RangePolicy<MyExecSpace> range_policy_t;
Copy link
Contributor

Choose a reason for hiding this comment

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

Ugh, that previous name was really poor thanks for catching that...

size_type &max_row_size) {
typedef Kokkos::RangePolicy<MyExecSpace> my_exec_space;
size_type &max_row_size,
MyExecSpace my_exec_space = MyExecSpace()) {
Copy link
Contributor

Choose a reason for hiding this comment

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

See previous comment about kk_inclusive_parallel_prefix_sum

// std::cout << "num_big_rows:" << num_big_rows << std::endl;

if (KokkosKernels::Impl::kk_is_gpu_exec_space<MyExecSpace>()) {
// check if we have enough memory for this. lower the concurrency if
// we do not have enugh memory.
// TODO: Need to account for number of streams here?
Copy link
Contributor

Choose a reason for hiding this comment

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

Actually the memory queries are independent of streams since the GPU memory is not split and allocated to each stream.

@@ -1591,8 +1600,8 @@ class PointGaussSeidel {
this->IterativePSGS(gs, numColors, h_color_xadj, numIter, apply_forward,
apply_backward);

// Kokkos::parallel_for( range_pol(0,nr), PermuteVector(x_lhs_output_vec,
// Permuted_Xvector, color_adj));
// Kokkos::parallel_for( range_policy_t(0,nr),
Copy link
Contributor

Choose a reason for hiding this comment

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

Should this just be removed?

@@ -1673,8 +1682,8 @@ class PointGaussSeidel {
apply_backward);
}

// Kokkos::parallel_for( range_pol(0,nr), PermuteVector(x_lhs_output_vec,
// Permuted_Xvector, color_adj));
// Kokkos::parallel_for( range_policy_t(0,nr),
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we remove this?

typename view_type::non_const_value_type &sum_reduction) {
typedef Kokkos::RangePolicy<MyExecSpace> my_exec_space;
typename view_type::non_const_value_type &sum_reduction,
MyExecSpace my_exec_space = MyExecSpace()) {
Copy link
Contributor

Choose a reason for hiding this comment

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

See comment about kk_inclusive_parallel_prefix_sum

@lucbv lucbv requested review from brian-kelley and vqd8a July 19, 2023 16:13
@e10harvey
Copy link
Contributor Author

Some changes are needed for consistency with the rest of the library.
I am okay with the execution space instance being stored in the handle if that is something done consistently for all sparse algorithms.

Thanks for the early feedback, @lucbv. It's a big help. I read through all your comments. Why don't we take the same overload approach via the user-facing sparse handle creation overload but store a private reference in the kernel handle to the user's execution space? In this way, we avoid passing the execution space instance as a new parameter deep into the internal sparse call stacks while also providing a similar look and feel to the blas interfaces.

For spiluk, sptrsv and GS we will have that new interleaving interface as well. But, if user's want to launch a sparse kernel in a serial for-loop instead, that would also be supported under-the-hood via this handle creation overload.

@e10harvey e10harvey removed the AT: WIP label Aug 9, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 799
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 390
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 63
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 62
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 62
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 68
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 57
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 568
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 563
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 562
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 84
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: issue1860
  • SHA: 9d958a9
  • Mode: TEST_REPO

Pull Request Author: e10harvey

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 799
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 390
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 63
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 62
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 62
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 68
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 57
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 568
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 563
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 562
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 84
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d958a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 799 (click to expand)

b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(176): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(184): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(185): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(189): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(190): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(176): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(184): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(185): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(189): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(190): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(176): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(184): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(185): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(189): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(190): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(176): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(184): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(185): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(189): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(190): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(176): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(184): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(185): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(189): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(190): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(176): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(184): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(185): error: identifier "CudaSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(189): error: default argument is not allowed'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp(190): error: identifier "CudaSpace" is undefined'
b''
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:104: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:188: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp".'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:160: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:90: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp".'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp".'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:146: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:118: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:174: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:132: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:202: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'5 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.799/TestAll_2023-08-09_12.30.01/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp".'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:216: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1475: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[  2%] Linking CXX static library libkokkoskernels_gtest.a'
b'[  2%] Linking CXX static library libkokkoskernelsperf_gtest.a'
b'[  2%] Built target kokkoskernels_gtest'
b'[  2%] Built target kokkoskernelsperf_gtest'
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.799/TestAll_2023-08-09_12.30.01/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 # 390 (click to expand)

b'                           Kokkos::CudaSpace'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.390/TestAll_2023-08-09_12.30.02/clang/13.0.0/Cuda-release/kokkos-install/include/Cuda/Kokkos_CudaSpace.hpp:59:7: note: 'Kokkos::CudaSpace' declared here"
b'class CudaSpace {'
b'      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:190:28: error: unknown type name 'CudaSpace'; did you mean 'Kokkos::CudaSpace'?"
b'  kk_get_free_total_memory(free_mem, total_mem, n_streams);'
b'                           ^~~~~~~~~'
b'                           Kokkos::CudaSpace'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.390/TestAll_2023-08-09_12.30.02/clang/13.0.0/Cuda-release/kokkos-install/include/Cuda/Kokkos_CudaSpace.hpp:59:7: note: 'Kokkos::CudaSpace' declared here"
b'class CudaSpace {'
b'      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:190:28: error: unknown type name 'CudaSpace'; did you mean 'Kokkos::CudaSpace'?"
b'  kk_get_free_total_memory(free_mem, total_mem, n_streams);'
b'                           ^~~~~~~~~'
b'                           Kokkos::CudaSpace'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.390/TestAll_2023-08-09_12.30.02/clang/13.0.0/Cuda-release/kokkos-install/include/Cuda/Kokkos_CudaSpace.hpp:59:7: note: 'Kokkos::CudaSpace' declared here"
b'class CudaSpace {'
b'      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:190:28: error: unknown type name 'CudaSpace'; did you mean 'Kokkos::CudaSpace'?"
b'  kk_get_free_total_memory(free_mem, total_mem, n_streams);'
b'                           ^~~~~~~~~'
b'                           Kokkos::CudaSpace'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.390/TestAll_2023-08-09_12.30.02/clang/13.0.0/Cuda-release/kokkos-install/include/Cuda/Kokkos_CudaSpace.hpp:59:7: note: 'Kokkos::CudaSpace' declared here"
b'class CudaSpace {'
b'      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:190:28: error: unknown type name 'CudaSpace'; did you mean 'Kokkos::CudaSpace'?"
b'  kk_get_free_total_memory(free_mem, total_mem, n_streams);'
b'                           ^~~~~~~~~'
b'                           Kokkos::CudaSpace'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.390/TestAll_2023-08-09_12.30.02/clang/13.0.0/Cuda-release/kokkos-install/include/Cuda/Kokkos_CudaSpace.hpp:59:7: note: 'Kokkos::CudaSpace' declared here"
b'class CudaSpace {'
b'      ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:190:28: error: unknown type name 'CudaSpace'; did you mean 'Kokkos::CudaSpace'?"
b'  kk_get_free_total_memory(free_mem, total_mem, n_streams);'
b'                           ^~~~~~~~~'
b'                           Kokkos::CudaSpace'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.390/TestAll_2023-08-09_12.30.02/clang/13.0.0/Cuda-release/kokkos-install/include/Cuda/Kokkos_CudaSpace.hpp:59:7: note: 'Kokkos::CudaSpace' declared here"
b'class CudaSpace {'
b'      ^'
b'7 errors generated when compiling for sm_70.'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:160: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:216: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:104: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:132: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:188: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:90: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:146: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:202: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:174: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'7 errors generated when compiling for sm_70.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:118: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1477: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[  3%] Linking CXX static library libkokkoskernels_gtest.a'
b'[  3%] Linking CXX static library libkokkoskernelsperf_gtest.a'
b'[  3%] Built target kokkoskernels_gtest'
b'[  3%] Built target kokkoskernelsperf_gtest'
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.390/TestAll_2023-08-09_12.30.02/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 # 63 (click to expand)

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021@2/KokkosKernels_PullRequest_GNU1021.63/TestAll_2023-08-09_12.47.18/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) =  40.70 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test 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@2/KokkosKernels_PullRequest_GNU1021.63/TestAll_2023-08-09_12.47.18/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 (test 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@2/KokkosKernels_PullRequest_GNU1021.63/TestAll_2023-08-09_12.47.18/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: solo52: 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 # 62 (click to expand)

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.62/TestAll_2023-08-09_12.55.08/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) =  38.40 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test 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.62/TestAll_2023-08-09_12.55.08/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 (test 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.62/TestAll_2023-08-09_12.55.08/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: solo308: 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 # 62 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.01 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.62/TestAll_2023-08-09_12.55.33/gnu/10.2.1/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.10 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.62/TestAll_2023-08-09_12.55.33/gnu/10.2.1/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) =  96.55 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (SEGFAULT)'
b'\t 14 - sparse_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (test 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.62/TestAll_2023-08-09_12.55.33/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: solo167: 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 # 68 (click to expand)

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.01 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo@2/KokkosKernels_PullRequest_Tpls_INTEL19_solo.68/TestAll_2023-08-09_13.15.52/intel/19.0.5.281/Threads-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 4.25123e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) =  53.26 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_threads (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release (test 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@2/KokkosKernels_PullRequest_Tpls_INTEL19_solo.68/TestAll_2023-08-09_13.15.52/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 (test 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@2/KokkosKernels_PullRequest_Tpls_INTEL19_solo.68/TestAll_2023-08-09_13.15.52/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: solo308: 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 # 57 (click to expand)

b'In file included from :/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp39:void kk_inclusive_parallel_prefix_sum(MyExecSpace my_exec_space,::'
b'146'
b'24/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp:                                                  ^:'
b':51'
b'In file included from 146:/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp: ::51error19147:: :'
b": unused parameter 'my_exec_space' [-Werror,-Wunused-parameter]In file included from 58error"
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/KokkosBatched_Util.hpp:: : unused parameter 'my_exec_space' [-Werror,-Wunused-parameter]39void kk_inclusive_parallel_prefix_sum(MyExecSpace my_exec_space,error"
b':'
b''
b": /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp                                                  ^unused parameter 'arr' [-Werror,-Wunused-parameter]:void kk_inclusive_parallel_prefix_sum(MyExecSpace my_exec_space,"
b''
b'146'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp:                                                  ^                                      forward_array_type arr) {}:51'
b''
b'147:/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp                                                         ^: :'
b"58error147:: : unused parameter 'my_exec_space' [-Werror,-Wunused-parameter]58error"
b"::  unused parameter 'arr' [-Werror,-Wunused-parameter]error"
b": void kk_inclusive_parallel_prefix_sum(MyExecSpace my_exec_space,unused parameter 'arr' [-Werror,-Wunused-parameter]"
b'                                      forward_array_type arr) {}'
b'                                                  ^'
b''
b'                                                         ^                                      forward_array_type arr) {}/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp'
b''
b':                                                         ^147'
b":58: error: unused parameter 'arr' [-Werror,-Wunused-parameter]"
b'In file included from                                       forward_array_type arr) {}/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.57/TestAll_2023-08-09_13.34.47/llvm/10.0.1/Threads_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp'
b':                                                         ^17'
b':'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:'
b'23:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:19:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/batched/KokkosBatched_Util.hpp:39:'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp:146:51: error: unused parameter 'my_exec_space' [-Werror,-Wunused-parameter]"
b'void kk_inclusive_parallel_prefix_sum(MyExecSpace my_exec_space,'
b'                                                  ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/common/src/KokkosKernels_SimpleUtils.hpp:147:58: error: unused parameter 'arr' [-Werror,-Wunused-parameter]"
b'                                      forward_array_type arr) {}'
b'                                                         ^'
b'2 errors generated.'
b'2 errors generated.'
b'2 errors generated.'
b'2 errors generated.'
b'2 errors generated.'
b'2 errors generated.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:160: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:104: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:90: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:202: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:146: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:216: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'2 errors generated.'
b'2 errors generated.'
b'2 errors generated.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:118: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:132: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:174: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'2 errors generated.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:188: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1475: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[  2%] Linking CXX static library libkokkoskernelsperf_gtest.a'
b'[  2%] Built target kokkoskernelsperf_gtest'
b'[  2%] Linking CXX static library libkokkoskernels_gtest.a'
b'[  2%] Built target kokkoskernels_gtest'
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.57/TestAll_2023-08-09_13.34.47/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: solo81: 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 # 568 (click to expand)

b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.09 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.568/TestAll_2023-08-09_13.11.03/armpl/21.1.0/Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.35095e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.09 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 171.38 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_serial (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release (test 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 armpl/21.1.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 --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
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_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.568/TestAll_2023-08-09_13.11.03/armpl/21.1.0/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'armpl-21.1.0-Serial-release (test 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 armpl/21.1.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=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
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_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.568/TestAll_2023-08-09_13.11.03/armpl/21.1.0/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 3974'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.563/TestAll_2023-08-09_13.11.03/gcc/10.2.0/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.10 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.563/TestAll_2023-08-09_13.11.03/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.10 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 1262.20 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (SEGFAULT)'
b'\t 14 - sparse_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (test 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.563/TestAll_2023-08-09_13.11.03/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 3975'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.562/TestAll_2023-08-09_13.12.11/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.562/TestAll_2023-08-09_13.12.11/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:197::46: 17error: :'
b"In file included from default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.562/TestAll_2023-08-09_13.12.11/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.562/TestAll_2023-08-09_13.12.11/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:186: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:134: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:212: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:160: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:108: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:95: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:147: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:225: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:199: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:121: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:173: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.562/TestAll_2023-08-09_13.12.11/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:238: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1120: CMakeFiles/kokkoskernels.dir/all] Error 2'
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.562/TestAll_2023-08-09_13.12.11/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 # 84 (click to expand)

b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.84/TestAll_2023-08-09_13.12.14/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.84/TestAll_2023-08-09_13.12.14/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.84/TestAll_2023-08-09_13.12.14/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.84/TestAll_2023-08-09_13.12.14/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:160: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:108: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:212: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:134: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:186: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:121: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:95: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:147: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.84/TestAll_2023-08-09_13.12.14/rocm/5.2.0/Hip_Serial-release/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:17:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/src/KokkosBatched_HostLevel_Gemm.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Spec.hpp:24:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/batched/dense/impl/KokkosBatched_HostLevel_Gemm_Impl.hpp:20:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/common/src/KokkosKernels_ExecSpaceUtils.hpp:197:46: error: default argument not permitted on an explicit specialization of function 'kk_get_free_total_memory'"
b'    size_t& free_mem, size_t& total_mem, int n_streams = 1) {'
b'                                             ^           ~'
b'1 error generated when compiling for gfx908.'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:199: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'1make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:225: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b' error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:173: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_nt_t_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'1 error generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:238: CMakeFiles/kokkoskernels.dir/batched/eti/generated_specializations_cpp/Gemm/Batched_Gemm_t_nt_blr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1120: CMakeFiles/kokkoskernels.dir/all] Error 2'
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.84/TestAll_2023-08-09_13.12.14/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: [email protected]'
b'Finished: FAILURE'
b''

@e10harvey e10harvey added the AT: RETEST Have this PR retested. label Aug 9, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

Status Flag '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: 857
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 448
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 121
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 120
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 120
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 108
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 619
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 614
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 612
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 134
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

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

Pull Request Author: e10harvey

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 857
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 448
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 121
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 120
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 120
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 126
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 108
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 619
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 614
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 612
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 134
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3af7aac
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
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...

@e10harvey e10harvey requested a review from lucbv August 23, 2023 17:05
sparse/impl/KokkosSparse_gauss_seidel_impl.hpp Outdated Show resolved Hide resolved
sparse/impl/KokkosSparse_gauss_seidel_impl.hpp Outdated Show resolved Hide resolved
sparse/src/KokkosSparse_gauss_seidel.hpp Outdated Show resolved Hide resolved
sparse/unit_test/Test_Sparse_gauss_seidel.hpp Outdated Show resolved Hide resolved
sparse/unit_test/Test_Sparse_gauss_seidel.hpp Outdated Show resolved Hide resolved
sparse/unit_test/Test_Sparse_gauss_seidel.hpp Outdated Show resolved Hide resolved
@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 BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES!

@kokkos-devops-admin
Copy link

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

Remove a couple fences from the unit tests.
@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: 862
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 453
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 125
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 125
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 131
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 113
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 624
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 619
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 617
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 139
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: issue1860
  • SHA: d398cd9
  • Mode: TEST_REPO

Pull Request Author: e10harvey

@kokkos-devops-admin
Copy link

NOTICE: The AutoTester has encountered an internal error (usually a Communications Timeout), testing will be restarted, previous tests may still be running but will be ignored by the AutoTester...

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 454
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 127
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 132
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 114
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 625
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 620
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 618
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 140
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: issue1860
  • SHA: d398cd9
  • Mode: TEST_REPO

Pull Request Author: e10harvey

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 863
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 454
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 127
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 126
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 126
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 132
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 114
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 625
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 620
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 618
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 140
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d398cd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 61efa26
PR_LABELS
PULLREQUESTNUM 1906
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...

3 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

* @param gs_algorithm Specifies which algorithm to use:
*
* KokkosSpace::GS_DEFAULT PointGaussSeidel
* KokkosSpace::GS_PERMUTED ??
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@brian-kelley or @lucbv: Can you help me complete in this documentation please?

Copy link
Contributor

Choose a reason for hiding this comment

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

GS_DEFAULT is actually for both point and block. It turns into GS_PERMUTED for CPUs and GS_TEAM for GPUs. PERMUTED and TEAM are the same basic algorithm, the difference is that PERMUTED uses a RangePolicy over rows, but TEAM uses a TeamPolicy over batches of rows and ThreadVector parallelism within rows.

"PERMUTED" refers to the fact that rows/columns of the matrix are reordered into colors for better locality.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks, @brian-kelley. I'll update these docs in a follow-on PR.

@brian-kelley, @lucbv: I've addressed all your feedback. Are you ready to merge?

Copy link
Contributor

Choose a reason for hiding this comment

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

Sounds good, I'm reviewing this now then

@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 BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES!

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@e10harvey e10harvey merged commit 3c86b5b into kokkos:develop Aug 29, 2023
7 checks passed
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.

4 participants