Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add csr2csc #1446

Merged
merged 2 commits into from
Nov 16, 2022
Merged

Add csr2csc #1446

merged 2 commits into from
Nov 16, 2022

Conversation

e10harvey
Copy link
Contributor

@e10harvey e10harvey commented Jun 21, 2022

Related to #1164.

Summary of changes:

  • Adds KokkosSparse::crs2ccs
  • Adds KokkosSparse::CcsMatrix
  • Rewrite ccs2crs to call transpose_matrix

@e10harvey e10harvey requested review from jgfouca and lucbv June 21, 2022 12:55
@e10harvey e10harvey self-assigned this Jun 21, 2022
@e10harvey e10harvey marked this pull request as draft June 21, 2022 12:56
Copy link
Contributor

@jgfouca jgfouca left a comment

Choose a reason for hiding this comment

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

Thanks, Evan! Is the idea that this API is preferred over just transposing the original CSR?

@e10harvey
Copy link
Contributor Author

Thanks, Evan! Is the idea that this API is preferred over just transposing the original CSR?

No problem. This PR is just a code cleanup in csc2csr right now. I will take a look at the current CSR transpose and potentially add csr2csc as a wrapper to the transpose routine.

@e10harvey
Copy link
Contributor Author

Thanks, Evan! Is the idea that this API is preferred over just transposing the original CSR?

No problem. This PR is just a code cleanup in csc2csr right now. I will take a look at the current CSR transpose and potentially add csr2csc as a wrapper to the transpose routine.

@brian-kelley, @lucbv, @jgfouca: Is there already a CSC class for Kokkos or is CSR used instead?

@lucbv
Copy link
Contributor

lucbv commented Jun 21, 2022

We do not have a CscMatrix currently, realistically there is very minimal differences between a CrsMatrix and a CscMatrix since it is up to the user to understand what the data stored in the row_map and entries view means.
We could easily add a CscMatrix if that helps some algorithms, in practice we often compute the transpose of a matrix and use the result as a Csc version of the original matrix for fast column access.

@srajama1
Copy link
Contributor

The CSCMatrix will be exactly the CSRMatrix with name changed :)

@e10harvey
Copy link
Contributor Author

OK, thank you.

@brian-kelley
Copy link
Contributor

The data structure will be identical, but we have to change row_map -> column_map, and swap the meanings of numRows()/numCols() (e.g. column_map will be length numCols+1 instead of numRows+1, and entries must be between 0 and numRows).

@e10harvey
Copy link
Contributor Author

The data structure will be identical, but we have to change row_map -> column_map, and swap the meanings of numRows()/numCols() (e.g. column_map will be length numCols+1 instead of numRows+1, and entries must be between 0 and numRows).

Thanks, Brian! That's really helpful. I will try to do this in a manner that inherits from your existing CRS class.

@brian-kelley
Copy link
Contributor

Actually... the names row_map and row_map_type belong to StaticCrsGraph, so I'm not sure of the cleanest way to implement Csc. Maybe make StaticCcsGraph?

@e10harvey
Copy link
Contributor Author

Actually... the names row_map and row_map_type belong to StaticCrsGraph, so I'm not sure of the cleanest way to implement Csc. Maybe make StaticCcsGraph?

I'll take a look.

@e10harvey
Copy link
Contributor Author

We should also consider re-writting csc2csr as a wrapper around transpose_matrix from KokkosSparse_Utils.hpp since transpose_matrix supports copying the data to a new "vals" view....; @srajama1, @lucbv, @brian-kelley: Thoughts?

The Kokkos::Crs transpose function does not copy the values array which will result in poor spatial locality.

@e10harvey e10harvey removed the AT: WIP label Jun 23, 2022
@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_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740

  • Build Num: 269
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 262
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 1078
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 722
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 1066
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1053
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 458
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: csr2csc
  • SHA: ffdccb5
  • 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_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740

  • Build Num: 269
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 262
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 1078
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 722
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 1066
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1053
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 458
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ffdccb5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

Status Flag 'Pre-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_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740

  • Build Num: 270
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 263
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 1079
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 723
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 1067
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1054
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 459
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: csr2csc
  • SHA: c7b65d0
  • 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_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740

  • Build Num: 270
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 263
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 1079
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 723
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 1067
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1054
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 459
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c7b65d0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740 # 270 (click to expand)

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(114): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/dense/KokkosBatched_Gemm_Decl.hpp(442): warning: statement is unreachable
detected during:
instantiation of "int KokkosBatched::BatchedGemm<ArgTransA,ArgTransB,ArgBatchSzDim,BatchedGemmHandleType,ScalarType,AViewType,BViewType,CViewType>(BatchedGemmHandleType *, ScalarType, const AViewType &, const BViewType &, ScalarType, const CViewType &) [with ArgTransA=KokkosBatched::Trans::NoTranspose, ArgTransB=KokkosBatched::Trans::Transpose, ArgBatchSzDim=KokkosBatched::BatchLayout::Left, BatchedGemmHandleType=KokkosBatched::BatchedGemmHandle, ScalarType=double, AViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, BViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, CViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(278): here
instantiation of "void Test::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(306): here
instantiation of "void test_batched_gemm_with_layout<ViewType,DeviceType,ValueType,ScalarType,ParamTagType>(int) [with ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(369): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(114): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/dense/KokkosBatched_Gemm_Decl.hpp(442): warning: statement is unreachable
detected during:
instantiation of "int KokkosBatched::BatchedGemm<ArgTransA,ArgTransB,ArgBatchSzDim,BatchedGemmHandleType,ScalarType,AViewType,BViewType,CViewType>(BatchedGemmHandleType *, ScalarType, const AViewType &, const BViewType &, ScalarType, const CViewType &) [with ArgTransA=KokkosBatched::Trans::Transpose, ArgTransB=KokkosBatched::Trans::Transpose, ArgBatchSzDim=KokkosBatched::BatchLayout::Left, BatchedGemmHandleType=KokkosBatched::BatchedGemmHandle, ScalarType=Kokkos::complex, AViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, BViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, CViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(113): here
instantiation of "void Test::impl_test_batched_gemm_with_handle<DeviceType,ViewType,ScalarType,ParamTagType>(KokkosBatched::BatchedGemmHandle *, int, int, int, int, int, int, int, ScalarType, ScalarType) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(254): here
instantiation of "void Test::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(306): here
instantiation of "void test_batched_gemm_with_layout<ViewType,DeviceType,ValueType,ScalarType,ParamTagType>(int) [with ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(369): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(124): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/dense/KokkosBatched_Gemm_Decl.hpp(442): warning: statement is unreachable
detected during:
instantiation of "int KokkosBatched::BatchedGemm<ArgTransA,ArgTransB,ArgBatchSzDim,BatchedGemmHandleType,ScalarType,AViewType,BViewType,CViewType>(BatchedGemmHandleType *, ScalarType, const AViewType &, const BViewType &, ScalarType, const CViewType &) [with ArgTransA=KokkosBatched::Trans::Transpose, ArgTransB=KokkosBatched::Trans::Transpose, ArgBatchSzDim=KokkosBatched::BatchLayout::Left, BatchedGemmHandleType=KokkosBatched::BatchedGemmHandle, ScalarType=double, AViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, BViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, CViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(278): here
instantiation of "void Test::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(306): here
instantiation of "void test_batched_gemm_with_layout<ViewType,DeviceType,ValueType,ScalarType,ParamTagType>(int) [with ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(369): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(124): here

[ 85%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 85%] Built target KokkosBlas2_gemv_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 86%] Linking CXX executable KokkosKernels_batched_sla_cuda
[ 86%] Built target KokkosKernels_batched_sla_cuda
[ 86%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 86%] Built target KokkosBlas3_gemm_perf_test
[ 86%] Linking CXX executable KokkosKernels_graph_openmp
[ 86%] Built target KokkosKernels_graph_openmp
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_trmm_perf_test.hpp(104): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_trmm_perf_test.hpp(128): warning: statement is unreachable

[ 86%] Linking CXX executable KokkosKernels_blas_cuda
[ 86%] Built target KokkosKernels_blas_cuda
[ 86%] Linking CXX executable KokkosBlas3_perf_test
[ 86%] Built target KokkosBlas3_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

[ 86%] Linking CXX executable KokkosKernels_batched_dla_cuda
[ 86%] Built target KokkosKernels_batched_dla_cuda
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-9.2.88-Cuda_OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 cuda/9.2.88 gcc/7.2.0 netlib/3.8.0/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Power9,Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/9.2.88 --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,cublas,cusparse --user-blas-path=/home/projects/ppc64le-pwr9/netlib/3.8.0/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/netlib/3.8.0/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=force_uvm,enable_lambda --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740.270/TestAll_2022-06-23_17.18.15/cuda/9.2.88/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight # 263 (click to expand)

Scanning dependencies of target KokkosKernels_batched_dla_cuda
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/Test_Main.cpp.o
[ 85%] Linking CXX executable KokkosBlas_team_dot_perf_test
[ 85%] Built target KokkosBlas_team_dot_perf_test
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o
[ 85%] Linking CXX executable sparse_gs
Scanning dependencies of target KokkosKernels_batched_sla_cuda
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_cuda.dir/Test_Main.cpp.o
[ 85%] Linking CXX executable KokkosBlas_dot_perf_test
[ 85%] Built target sparse_gs
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_cuda.dir/cuda/Test_Cuda_Batched_Sparse.cpp.o
In file included from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:0,
                 from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25,
                 from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/serial/Test_Serial_Sparse.cpp:5:
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: std_algorithms/Kokkos_Numeric.hpp: No such file or directory
 #include 
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
[ 85%] Built target KokkosBlas_dot_perf_test
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/cuda/Test_Cuda_Batched_Dense.cpp.o
Scanning dependencies of target KokkosKernels_sparse_cuda
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/Test_Main.cpp.o
[ 85%] Linking CXX executable KokkosBlas_dot_mv_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 85%] Built target KokkosBlas_dot_mv_perf_test
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/cuda/Test_Cuda_Sparse.cpp.o
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
In file included from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:0,
from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25,
from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/cuda/Test_Cuda_Sparse.cpp:5:
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: std_algorithms/Kokkos_Numeric.hpp: No such file or directory
#include <std_algorithms/Kokkos_Numeric.hpp>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/cuda/Test_Cuda_Sparse.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/all] Error 2
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 86%] Linking CXX executable sparse_kk_spmv
[ 86%] Built target sparse_kk_spmv
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 86%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 86%] Built target KokkosBlas2_gemv_perf_test
[ 86%] Linking CXX executable KokkosKernels_common_serial
[ 86%] Built target KokkosKernels_common_serial
[ 87%] Linking CXX executable KokkosKernels_batched_sla_cuda
[ 87%] Built target KokkosKernels_batched_sla_cuda
[ 87%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 87%] Built target KokkosBlas3_gemm_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 87%] Linking CXX executable KokkosBlas3_perf_test
[ 87%] Built target KokkosBlas3_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 87%] Linking CXX executable KokkosKernels_batched_dla_cuda
[ 87%] Built target KokkosKernels_batched_dla_cuda
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 cuda/10.1.243 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,Serial --arch=Power9,Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --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=blas,cublas,cusparse --user-blas-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=,enable_lambda --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight.263/TestAll_2022-06-23_17.18.21/cuda/10.1.243/Cuda_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720 # 1079 (click to expand)

[ 80%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/Test_Main.cpp.o
[ 80%] Linking CXX executable KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 80%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/Test_Main.cpp.o
[ 80%] Built target KokkosBlas_perf_test
[ 80%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/openmp/Test_OpenMP_Common.cpp.o
[ 82%] Linking CXX executable sparse_spmv_bsr
Scanning dependencies of target KokkosKernels_graph_openmp
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/Test_Main.cpp.o
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/openmp/Test_OpenMP_Batched_Dense.cpp.o
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/openmp/Test_OpenMP_Batched_Sparse.cpp.o
[ 83%] Built target sparse_spmv_bsr
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/openmp/Test_OpenMP_Graph.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/unit_test/openmp/Test_OpenMP_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: std_algorithms/Kokkos_Numeric.hpp: No such file or directory
 #include 
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Scanning dependencies of target KokkosKernels_wiki_spmv
[ 83%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_spmv.dir/KokkosSparse_wiki_spmv.cpp.o
[ 83%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 83%] Built target KokkosBlas2_gemv_perf_test
[ 83%] Linking CXX executable KokkosKernels_wiki_spmv
[ 83%] Built target KokkosKernels_wiki_spmv
[ 83%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 83%] Built target KokkosBlas3_gemm_perf_test
[ 83%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 83%] Built target KokkosKernels_batched_sla_openmp
[ 83%] Linking CXX executable sparse_kk_spmv
[ 83%] Built target sparse_kk_spmv
[ 83%] Linking CXX executable KokkosKernels_common_openmp
[ 83%] Built target KokkosKernels_common_openmp
[ 84%] Linking CXX executable KokkosBlas3_perf_test
[ 84%] Built target KokkosBlas3_perf_test
[ 85%] Linking CXX executable KokkosKernels_graph_openmp
[ 85%] Built target KokkosKernels_graph_openmp
[ 85%] Linking CXX executable KokkosKernels_blas_openmp
[ 85%] Built target KokkosKernels_blas_openmp
[ 86%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 86%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1079/TestAll_2022-06-23_17.20.11/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-7.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1079/TestAll_2022-06-23_17.20.11/gcc/7.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light_LayoutRight # 723 (click to expand)

Scanning dependencies of target KokkosKernels_blas_openmp
[ 78%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/Test_Main.cpp.o
[ 78%] Linking CXX executable KokkosBlas_dot_mv_perf_test
Scanning dependencies of target KokkosKernels_batched_dla_openmp
[ 78%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/Test_Main.cpp.o
[ 78%] Built target KokkosBlas_dot_mv_perf_test
[ 78%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/openmp/Test_OpenMP_Batched_Dense.cpp.o
[ 78%] Linking CXX executable KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 78%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/Test_Main.cpp.o
[ 78%] Built target KokkosBlas_perf_test
[ 78%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o
[ 79%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/openmp/Test_OpenMP_Blas.cpp.o
Scanning dependencies of target KokkosKernels_common_openmp
[ 79%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/Test_Main.cpp.o
[ 80%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/openmp/Test_OpenMP_Common.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/unit_test/openmp/Test_OpenMP_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: std_algorithms/Kokkos_Numeric.hpp: No such file or directory
 #include 
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 80%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 80%] Built target KokkosBlas2_gemv_perf_test
[ 80%] Linking CXX executable sparse_spmv_struct
[ 80%] Built target sparse_spmv_struct
[ 81%] Linking CXX executable sparse_spmv_blockcrs
[ 81%] Built target sparse_spmv_blockcrs
[ 81%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 81%] Built target KokkosBlas3_gemm_perf_test
[ 81%] Linking CXX executable sparse_kk_spmv
[ 81%] Built target sparse_kk_spmv
[ 82%] Linking CXX executable sparse_spmv_bsr
[ 82%] Built target sparse_spmv_bsr
[ 82%] Linking CXX executable KokkosKernels_common_openmp
[ 82%] Built target KokkosKernels_common_openmp
[ 83%] Linking CXX executable KokkosBlas3_perf_test
[ 83%] Built target KokkosBlas3_perf_test
[ 83%] Linking CXX executable KokkosKernels_blas_openmp
[ 83%] Built target KokkosKernels_blas_openmp
[ 84%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 84%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.723/TestAll_2022-06-23_17.20.20/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-7.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.723/TestAll_2022-06-23_17.20.20/gcc/7.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

[ 82%] Building CXX object perf_test/blas/blas2/CMakeFiles/KokkosBlas2_gemv_perf_test.dir/KokkosBlas2_gemv_perf_test.cpp.o
Scanning dependencies of target KokkosBlas3_perf_test
[ 83%] Building CXX object perf_test/blas/blas3/CMakeFiles/KokkosBlas3_perf_test.dir/KokkosBlas3_perf_test.cpp.o
[ 83%] Built target sparse_spiluk
Scanning dependencies of target KokkosBlas3_gemm_perf_test
[ 83%] Building CXX object perf_test/blas/blas3/CMakeFiles/KokkosBlas3_gemm_perf_test.dir/KokkosBlas3_gemm_standalone_perf_test.cpp.o
[ 83%] Linking CXX executable KokkosBlas_dot_perf_test
[ 83%] Built target KokkosBlas_dot_perf_test
Scanning dependencies of target KokkosKernels_graph_openmp
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/Test_Main.cpp.o
[ 83%] Linking CXX executable sparse_spmv
[ 83%] Linking CXX executable sparse_block_pcg
[ 83%] Built target sparse_spmv
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/openmp/Test_OpenMP_Graph.cpp.o
[ 83%] Built target sparse_block_pcg
[ 83%] Linking CXX executable KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_sparse_serial
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/Test_Main.cpp.o
[ 83%] Built target KokkosBlas_perf_test
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/Test_Main.cpp.o
[ 85%] Linking CXX executable KokkosBlas_team_dot_perf_test
[ 85%] Linking CXX executable KokkosBlas_dot_mv_perf_test
Scanning dependencies of target KokkosKernels_common_serial
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/Test_Main.cpp.o
[ 86%] Built target KokkosBlas_team_dot_perf_test
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/serial/Test_Serial_Common.cpp.o
[ 86%] Built target KokkosBlas_dot_mv_perf_test
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o
[ 86%] Linking CXX executable sparse_spmv_bsr
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/serial/Test_Serial_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: std_algorithms/Kokkos_Numeric.hpp: No such file or directory
 #include 
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 86%] Built target sparse_spmv_bsr
Scanning dependencies of target KokkosKernels_blas_openmp
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/openmp/Test_OpenMP_Blas.cpp.o
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/Test_Main.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/openmp/Test_OpenMP_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: std_algorithms/Kokkos_Numeric.hpp: No such file or directory
 #include 
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
[ 87%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 87%] Built target KokkosBlas2_gemv_perf_test
[ 87%] Linking CXX executable sparse_kk_spmv
[ 87%] Linking CXX executable KokkosKernels_common_serial
[ 87%] Built target sparse_kk_spmv
[ 87%] Built target KokkosKernels_common_serial
[ 87%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 87%] Built target KokkosBlas3_gemm_perf_test
[ 88%] Linking CXX executable KokkosKernels_graph_openmp
[ 88%] Built target KokkosKernels_graph_openmp
[ 88%] Linking CXX executable KokkosBlas3_perf_test
[ 88%] Built target KokkosBlas3_perf_test
[ 88%] Linking CXX executable KokkosKernels_blas_openmp
[ 88%] Built target KokkosKernels_blas_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas --user-blas-path=/home/projects/x86-64-skylake/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/x86-64-skylake/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1067/TestAll_2022-06-23_17.20.31/gcc/7.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL18 # 1054 (click to expand)

[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_threads.dir/threads/Test_Threads_Blas.cpp.o
Scanning dependencies of target KokkosKernels_graph_threads
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_dla_threads
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_threads
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/Test_Main.cpp.o
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/threads/Test_Threads_Sparse.cpp.o
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/threads/Test_Threads_Graph.cpp.o
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/threads/Test_Threads_Batched_Dense.cpp.o
Scanning dependencies of target KokkosKernels_batched_sla_threads
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/Test_Main.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp(45),
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp(25),
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/unit_test/threads/Test_Threads_Sparse.cpp(5):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp(48): catastrophic error: cannot open source file "std_algorithms/Kokkos_Numeric.hpp"
  #include 
                                              ^

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/unit_test/threads/Test_Threads_Sparse.cpp (code 4)
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/threads/Test_Threads_Sparse.cpp.o] Error 4
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/threads/Test_Threads_Batched_Sparse.cpp.o
[ 82%] Linking CXX executable KokkosBlas_perf_test
[ 82%] Built target KokkosBlas_perf_test
[ 83%] Linking CXX executable sparse_spmv_bsr
[ 83%] Built target sparse_spmv_bsr
[ 83%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 83%] Built target KokkosBlas2_gemv_perf_test
[ 83%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 83%] Built target KokkosKernels_batched_sla_threads
[ 83%] Linking CXX executable sparse_kk_spmv
[ 83%] Built target sparse_kk_spmv
[ 83%] Linking CXX executable sparse_spmv_struct_tuning
[ 83%] Built target sparse_spmv_struct_tuning
[ 83%] Linking CXX executable KokkosKernels_common_threads
[ 83%] Built target KokkosKernels_common_threads
[ 84%] Linking CXX executable KokkosKernels_graph_threads
[ 84%] Built target KokkosKernels_graph_threads
[ 84%] Linking CXX executable KokkosKernels_blas_threads
[ 84%] Built target KokkosKernels_blas_threads
[ 85%] Linking CXX executable KokkosBlas3_perf_test
[ 85%] Built target KokkosBlas3_perf_test
[ 86%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 86%] Built target KokkosKernels_batched_dla_threads
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-18.1.163-OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.1054/TestAll_2022-06-23_17.20.41/intel/18.1.163/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
intel-18.1.163-Threads-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.1054/TestAll_2022-06-23_17.20.41/intel/18.1.163/Threads-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

[ 84%] Linking CXX executable sparse_spiluk
Scanning dependencies of target KokkosKernels_graph_threads
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/Test_Main.cpp.o
[ 84%] Built target sparse_spiluk
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/threads/Test_Threads_Graph.cpp.o
[ 84%] Linking CXX executable sparse_sptrsv
Scanning dependencies of target KokkosKernels_blas_serial
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/Test_Main.cpp.o
[ 85%] Built target sparse_sptrsv
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/serial/Test_Serial_Blas.cpp.o
[ 85%] Linking CXX executable KokkosBlas_dot_perf_test
[ 85%] Built target KokkosBlas_dot_perf_test
[ 85%] Linking CXX executable KokkosBlas_dot_mv_perf_test
Scanning dependencies of target KokkosKernels_batched_sla_serial
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/Test_Main.cpp.o
[ 85%] Built target KokkosBlas_dot_mv_perf_test
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/serial/Test_Serial_Batched_Sparse.cpp.o
[ 85%] Linking CXX executable sparse_spmv_blockcrs
Scanning dependencies of target KokkosKernels_sparse_serial
Scanning dependencies of target KokkosKernels_graph_serial
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/Test_Main.cpp.o
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/Test_Main.cpp.o
[ 86%] Linking CXX executable KokkosBlas_perf_test
[ 86%] Built target sparse_spmv_blockcrs
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o
[ 86%] Built target KokkosBlas_perf_test
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/serial/Test_Serial_Graph.cpp.o
Scanning dependencies of target KokkosKernels_common_serial
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_sla_threads
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_dla_threads
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/Test_Main.cpp.o
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/serial/Test_Serial_Common.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/unit_test/serial/Test_Serial_Sparse.cpp:5:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:25:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/unit_test/sparse/Test_Sparse_csc2csr.hpp:45:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/src/sparse/KokkosSparse_csc2csr.hpp:48:10: fatal error: 'std_algorithms/Kokkos_Numeric.hpp' file not found
#include 
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/threads/Test_Threads_Batched_Dense.cpp.o
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/threads/Test_Threads_Batched_Sparse.cpp.o
[ 87%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 87%] Built target KokkosBlas3_gemm_perf_test
[ 87%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 87%] Built target KokkosBlas2_gemv_perf_test
[ 88%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 88%] Built target KokkosKernels_batched_sla_serial
[ 88%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 88%] Built target KokkosKernels_batched_sla_threads
[ 88%] Linking CXX executable sparse_kk_spmv
[ 88%] Built target sparse_kk_spmv
[ 88%] Linking CXX executable KokkosKernels_common_serial
[ 88%] Built target KokkosKernels_common_serial
[ 88%] Linking CXX executable KokkosBlas3_perf_test
[ 88%] Linking CXX executable KokkosKernels_graph_threads
[ 88%] Built target KokkosBlas3_perf_test
[ 88%] Built target KokkosKernels_graph_threads
[ 89%] Linking CXX executable KokkosKernels_graph_serial
[ 89%] Built target KokkosKernels_graph_serial
[ 89%] Linking CXX executable KokkosKernels_blas_serial
[ 89%] Built target KokkosKernels_blas_serial
[ 89%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 89%] Built target KokkosKernels_batched_dla_threads
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/spack/opt/spack/linux-rhel7-x86_64/gcc-10.2.0/llvm-10.0.1-nldepabrxk2zcykcq7rlky5sr53hnm63/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.459/TestAll_2022-06-23_17.20.53/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

@kokkos-devops-admin
Copy link

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

@e10harvey
Copy link
Contributor Author

@brian-kelley, @lucbv, @jgfouca, @ndellingwood: CrsMatrix was already row/col (Csr/Csc) agnostic but the member names assumed Csr. Will f776fc7 break user's code? Would it be better to add back CrsMatrix as a wrapper around CompressedSparseMatrix and a new CscMatrix wrapper around CompressedSparseMatrix?

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

  • Build Num: 271
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 264
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 1080
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 724
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 1068
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1055
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 460
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: csr2csc
  • SHA: f776fc7
  • 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_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740

  • Build Num: 271
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 264
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 1080
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 724
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 1068
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1055
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 460
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f776fc7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 52b6d7f
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740 # 271 (click to expand)

(605): here
            instantiation of "void KokkosKernels::Experiment::experiment_driver(const D2Parameters &) [with size_type=kk_size_type, lno_t=kk_lno_t, exec_space=Kokkos::Cuda, mem_space=Kokkos::Cuda::memory_space]" 
(673): here

18 errors detected in the compilation of "/tmp/tmpxft_0000ee4b_00000000-6_KokkosGraph_color_d2.cpp1.ii".
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 1
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_aux.hpp(128): error: class "Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>" has no member "numVectors"
detected during:
instantiation of "__nv_bool KokkosSparse::PerfTest::Experimental::check_errors(mag_t, crsmat_t &, scalar_view_t, scalar_view_t) [with mag_t=double, crsmat_t=KokkosSparse::CompressedSparseMatrix<double, int, Kokkos::DefaultHostExecutionSpace, void, int>, scalar_view_t=Kokkos::View<double *, Kokkos::OpenMP::memory_space>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp(300): here
instantiation of "int test_sptrsv_perf<scalar_type>(std::vector<int, std::allocator>, __nv_bool, std::__cxx11::string &, std::__cxx11::string &, std::__cxx11::string &, __nv_bool, __nv_bool, __nv_bool, int) [with scalar_type=double]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp(439): here

2 errors detected in the compilation of "/tmp/tmpxft_0000ee48_00000000-6_KokkosSparse_sptrsv_supernode.cpp1.ii".
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/all] Error 2
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

[ 76%] Linking CXX executable sparse_spmv
[ 76%] Linking CXX executable sparse_spmv_struct
[ 76%] Built target sparse_spmv
[ 76%] Built target sparse_spmv_struct
[ 76%] Linking CXX executable sparse_pcg
[ 76%] Built target sparse_pcg
[ 76%] Linking CXX executable sparse_spmv_blockcrs
[ 76%] Linking CXX executable sparse_spadd
[ 76%] Built target sparse_spadd
[ 76%] Built target sparse_spmv_blockcrs
[ 76%] Linking CXX executable graph_mis_d2
[ 76%] Built target graph_mis_d2
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 76%] Linking CXX executable graph_color
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(860): warning: statement is unreachable

[ 76%] Built target graph_color
[ 76%] Linking CXX executable sparse_kk_spmv
[ 76%] Built target sparse_kk_spmv
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-9.2.88-Cuda_OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 cuda/9.2.88 gcc/7.2.0 netlib/3.8.0/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Power9,Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/9.2.88 --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,cublas,cusparse --user-blas-path=/home/projects/ppc64le-pwr9/netlib/3.8.0/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/netlib/3.8.0/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=force_uvm,enable_lambda --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740.271/TestAll_2022-06-23_18.27.07/cuda/9.2.88/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight # 264 (click to expand)

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp(483): error: class "Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>" has no member "numVectors"
detected during:
instantiation of "void KokkosKernels::Experiment::run_experiment(crsGraph_t, int, const D2Parameters &) [with crsGraph_t=Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>]"
(605): here
instantiation of "void KokkosKernels::Experiment::experiment_driver<size_type,lno_t,exec_space,mem_space>(const D2Parameters &) [with size_type=kk_size_type, lno_t=kk_lno_t, exec_space=Kokkos::Serial, mem_space=Kokkos::Serial::memory_space]"
(693): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp(547): error: class "Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>" has no member "numVectors"
detected during:
instantiation of "void KokkosKernels::Experiment::run_experiment(crsGraph_t, int, const D2Parameters &) [with crsGraph_t=Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>]"
(605): here
instantiation of "void KokkosKernels::Experiment::experiment_driver<size_type,lno_t,exec_space,mem_space>(const D2Parameters &) [with size_type=kk_size_type, lno_t=kk_lno_t, exec_space=Kokkos::Serial, mem_space=Kokkos::Serial::memory_space]"
(693): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_aux.hpp(128): error: class "Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>" has no member "numVectors"
detected during:
instantiation of "__nv_bool KokkosSparse::PerfTest::Experimental::check_errors(mag_t, crsmat_t &, scalar_view_t, scalar_view_t) [with mag_t=double, crsmat_t=KokkosSparse::CompressedSparseMatrix<double, int, Kokkos::DefaultHostExecutionSpace, void, int>, scalar_view_t=Kokkos::View<double *, Kokkos::Serial::memory_space>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp(300): here
instantiation of "int test_sptrsv_perf<scalar_type>(std::vector<int, std::allocator>, __nv_bool, std::__cxx11::string &, std::__cxx11::string &, std::__cxx11::string &, __nv_bool, __nv_bool, __nv_bool, int) [with scalar_type=double]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp(439): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp(581): error: class "Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>" has no member "numVectors"
detected during:
instantiation of "void KokkosKernels::Experiment::run_experiment(crsGraph_t, int, const D2Parameters &) [with crsGraph_t=Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>]"
(605): here
instantiation of "void KokkosKernels::Experiment::experiment_driver<size_type,lno_t,exec_space,mem_space>(const D2Parameters &) [with size_type=kk_size_type, lno_t=kk_lno_t, exec_space=Kokkos::Serial, mem_space=Kokkos::Serial::memory_space]"
(693): here

2 errors detected in the compilation of "/tmp/tmpxft_00004dc4_00000000-6_KokkosSparse_sptrsv_supernode.cpp1.ii".
18 errors detected in the compilation of "/tmp/tmpxft_00004daa_00000000-6_KokkosGraph_color_d2.cpp1.ii".
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/all] Error 2
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 1
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 75%] Linking CXX executable sparse_pcg
[ 76%] Linking CXX executable sparse_spmv
[ 76%] Built target sparse_pcg
[ 76%] Linking CXX executable sparse_spmv_struct
[ 76%] Built target sparse_spmv
[ 76%] Built target sparse_spmv_struct
[ 76%] Linking CXX executable sparse_spadd
[ 76%] Linking CXX executable sparse_spmv_blockcrs
[ 76%] Built target sparse_spadd
[ 76%] Built target sparse_spmv_blockcrs
[ 76%] Linking CXX executable graph_mis_d2
[ 76%] Built target graph_mis_d2
[ 76%] Linking CXX executable graph_color
[ 76%] Built target graph_color
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/src/common/Kokkos_ArithTraits.hpp(1662): warning: integer conversion resulted in a change of sign

[ 76%] Linking CXX executable sparse_kk_spmv
[ 76%] Built target sparse_kk_spmv
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 cuda/10.1.243 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,Serial --arch=Power9,Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --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=blas,cublas,cusparse --user-blas-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=,enable_lambda --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight.264/TestAll_2022-06-23_18.29.27/cuda/10.1.243/Cuda_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720 # 1080 (click to expand)

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:405:48:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:102:59: error: no type named row_map_type in class KokkosSparse::CompressedSparseMatrix
   typedef typename crsMat_t::row_map_type::non_const_type rowmap_view_t;
                                                           ^~~~~~~~~~~~~
In file included from /home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/unordered_map:47:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/impl/Kokkos_Profiling.hpp:51,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/impl/Kokkos_Tools.hpp:52,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/Kokkos_HostSpace.hpp:60,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/Kokkos_OpenMP.hpp:55,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/decl/Kokkos_Declare_OPENMP.hpp:49,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/KokkosCore_Config_DeclareBackend.hpp:47,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release/kokkos-install/include/Kokkos_Core.hpp:53,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:45:
/home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/bits/hashtable.h: In instantiation of class std::_Hashtable, std::__detail::_Identity, std::equal_to, std::hash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >:
/home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/bits/unordered_set.h:99:18:   required from class std::unordered_set, std::equal_to, std::allocator >
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:129:29:   required from crsMat_t generateLongRowMatrix(const GS_Parameters&) [with crsMat_t = KokkosSparse::CompressedSparseMatrix]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:211:40:   required from void runGS(const GS_Parameters&) [with device_t = Kokkos::OpenMP]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:405:48:   required from here
/home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/bits/hashtable.h:268:7: error: static assertion failed: Cache the hash code or qualify your functors involved in hash code and bucket index computation with noexcept
       static_assert(noexcept(declval()
       ^~~~~~~~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/all] Error 2
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 1
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/KokkosSparse_sptrsv.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/all] Error 2
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/KokkosSparse_gs.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/all] Error 2
[ 67%] Linking CXX executable sparse_pcg
[ 67%] Linking CXX executable sparse_spgemm
[ 67%] Built target sparse_spgemm
[ 67%] Built target sparse_pcg
[ 67%] Linking CXX executable graph_mis_d2
[ 67%] Linking CXX executable sparse_spadd
[ 67%] Built target graph_mis_d2
[ 67%] Built target sparse_spadd
[ 67%] Linking CXX executable sparse_spmv_struct
[ 67%] Built target sparse_spmv_struct
[ 68%] Linking CXX executable sparse_spmv_blockcrs
[ 69%] Linking CXX executable graph_color
[ 69%] Built target graph_color
[ 69%] Built target sparse_spmv_blockcrs
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-7.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.1080/TestAll_2022-06-23_18.27.35/gcc/7.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light_LayoutRight # 724 (click to expand)

                                             numRows
[ 66%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_spgemm_jacobi.cpp:48:0:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp: In instantiation of crsMat_t3 KokkosKernels::Experiment::run_experiment(crsMat_t, crsMat_t2, KokkosKernels::Experiment::Parameters) [with ExecSpace = Kokkos::OpenMP; crsMat_t = KokkosSparse::CompressedSparseMatrix, void, int>; crsMat_t2 = KokkosSparse::CompressedSparseMatrix, void, int>; crsMat_t3 = KokkosSparse::CompressedSparseMatrix, void, int>; TempMemSpace = Kokkos::HostSpace; PersistentMemSpace = Kokkos::HostSpace]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp:368:44:   required from void KokkosKernels::Experiment::run_spgemm_jacobi(KokkosKernels::Experiment::Parameters) [with size_type = int; lno_t = int; scalar_t = double; exec_space = Kokkos::OpenMP; hbm_mem_space = Kokkos::HostSpace; sbm_mem_space = Kokkos::HostSpace]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_spgemm_jacobi.cpp:275:75:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp:129:74: error: no type named row_map_type in class KokkosSparse::CompressedSparseMatrix, void, int>
   using lno_view_t     = typename crsMat_t3::row_map_type::non_const_type;
                                                                          ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp:135:79: error: no type named row_map_type in class KokkosSparse::CompressedSparseMatrix, void, int>
       size_type, lno_t, scalar_t, ExecSpace, TempMemSpace, PersistentMemSpace>;
                                                                               ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp:165:26: error: class KokkosSparse::CompressedSparseMatrix, void, int> has no member named numRows
   const lno_t m = crsMat.numRows();
                   ~~~~~~~^~~~~~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp:166:27: error: class KokkosSparse::CompressedSparseMatrix, void, int> has no member named numRows
   const lno_t n = crsMat2.numRows();
                   ~~~~~~~~^~~~~~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_run_spgemm_jacobi.hpp:176:49: error: class KokkosSparse::CompressedSparseMatrix, void, int> has no member named numRows
               << " right.numRows():" << crsMat2.numRows() << std::endl;
                                         ~~~~~~~~^~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/KokkosSparse_sptrsv.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 1
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/KokkosSparse_gs.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/all] Error 2
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/all] Error 2
[ 67%] Linking CXX executable sparse_pcg
[ 67%] Linking CXX executable sparse_spgemm
[ 67%] Built target sparse_pcg
[ 67%] Built target sparse_spgemm
[ 67%] Linking CXX executable graph_mis_d2
[ 67%] Linking CXX executable sparse_spadd
[ 67%] Built target graph_mis_d2
[ 67%] Built target sparse_spadd
[ 67%] Linking CXX executable sparse_block_pcg
[ 68%] Linking CXX executable graph_color
[ 68%] Built target sparse_block_pcg
[ 68%] Built target graph_color
[ 68%] Linking CXX executable sparse_spmv_struct
[ 68%] Built target sparse_spmv_struct
[ 69%] Linking CXX executable sparse_spmv_blockcrs
[ 69%] Built target sparse_spmv_blockcrs
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.724/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-7.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.724/TestAll_2022-06-23_18.28.05/gcc/7.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC720 # 1068 (click to expand)

               ~~~~~~~~~^~~~~~~~~~
               numRows
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:483:52: error: class Kokkos::StaticCrsGraph, void, int> has no member named numVectors; did you mean numRows?
             << "    Num Verts      : " << crsGraph.numVectors() << std::endl
                                           ~~~~~~~~~^~~~~~~~~~
                                           numRows
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:547:54: error: class Kokkos::StaticCrsGraph, void, int> has no member named numVectors; did you mean numRows?
             << currentDateTimeStr << "," << crsGraph.numVectors() << ","
                                             ~~~~~~~~~^~~~~~~~~~
                                             numRows
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:581:54: error: class Kokkos::StaticCrsGraph, void, int> has no member named numVectors; did you mean numRows?
             << currentDateTimeStr << "," << crsGraph.numVectors() << ","
                                             ~~~~~~~~~^~~~~~~~~~
                                             numRows
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp: In instantiation of crsMat_t generateLongRowMatrix(const GS_Parameters&) [with crsMat_t = KokkosSparse::CompressedSparseMatrix]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:211:40:   required from void runGS(const GS_Parameters&) [with device_t = Kokkos::OpenMP]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:405:48:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:102:59: error: no type named row_map_type in class KokkosSparse::CompressedSparseMatrix
   typedef typename crsMat_t::row_map_type::non_const_type rowmap_view_t;
                                                           ^~~~~~~~~~~~~
In file included from /home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/unordered_map:47:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/impl/Kokkos_Profiling.hpp:51,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/impl/Kokkos_Tools.hpp:52,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/Kokkos_HostSpace.hpp:60,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/Kokkos_OpenMP.hpp:55,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/decl/Kokkos_Declare_OPENMP.hpp:49,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/KokkosCore_Config_DeclareBackend.hpp:47,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release/kokkos-install/include/Kokkos_Core.hpp:53,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:45:
/home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/bits/hashtable.h: In instantiation of class std::_Hashtable, std::__detail::_Identity, std::equal_to, std::hash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >:
/home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/bits/unordered_set.h:99:18:   required from class std::unordered_set, std::equal_to, std::allocator >
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:129:29:   required from crsMat_t generateLongRowMatrix(const GS_Parameters&) [with crsMat_t = KokkosSparse::CompressedSparseMatrix]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:211:40:   required from void runGS(const GS_Parameters&) [with device_t = Kokkos::OpenMP]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:405:48:   required from here
/home/projects/x86-64/gcc/7.2.0/include/c++/7.2.0/bits/hashtable.h:268:7: error: static assertion failed: Cache the hash code or qualify your functors involved in hash code and bucket index computation with noexcept
       static_assert(noexcept(declval()
       ^~~~~~~~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp: In instantiation of crsMat_t generateLongRowMatrix(const GS_Parameters&) [with crsMat_t = KokkosSparse::CompressedSparseMatrix]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:211:40:   required from void runGS(const GS_Parameters&) [with device_t = Kokkos::Serial]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:410:33:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:102:59: error: no type named row_map_type in class KokkosSparse::CompressedSparseMatrix
   typedef typename crsMat_t::row_map_type::non_const_type rowmap_view_t;
                                                           ^~~~~~~~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/KokkosSparse_sptrsv.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/all] Error 2
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 1
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/all] Error 2
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/KokkosSparse_gs.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/all] Error 2
[ 75%] Linking CXX executable sparse_pcg
[ 75%] Built target sparse_pcg
[ 75%] Linking CXX executable sparse_spgemm
[ 75%] Linking CXX executable sparse_spmv_struct
[ 75%] Built target sparse_spgemm
[ 75%] Built target sparse_spmv_struct
[ 75%] Linking CXX executable sparse_spadd
[ 75%] Built target sparse_spadd
[ 75%] Linking CXX executable sparse_spmv_blockcrs
[ 75%] Built target sparse_spmv_blockcrs
[ 75%] Linking CXX executable graph_mis_d2
[ 75%] Built target graph_mis_d2
[ 75%] Linking CXX executable graph_color
[ 75%] Built target graph_color
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas --user-blas-path=/home/projects/x86-64-skylake/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/x86-64-skylake/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.1068/TestAll_2022-06-23_18.28.05/gcc/7.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL18 # 1055 (click to expand)

          detected during:
            instantiation of "void KokkosKernels::Experiment::run_experiment(crsGraph_t, int, const D2Parameters &) [with crsGraph_t=Kokkos::StaticCrsGraph, void, kk_size_type={default_size_type={int}}>]" at line 605
            instantiation of "void KokkosKernels::Experiment::experiment_driver(const D2Parameters &) [with size_type=kk_size_type={default_size_type={int}}, lno_t=kk_lno_t={default_lno_t={int}}, exec_space=Kokkos::Threads, mem_space=Kokkos::Threads::memory_space]" at line 663

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp(547): error: class "Kokkos::StaticCrsGraph<kk_lno_t={default_lno_t={int}}, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, kk_size_type={default_size_type={int}}>" has no member "numVectors"
<< currentDateTimeStr << "," << crsGraph.numVectors() << ","
^
detected during:
instantiation of "void KokkosKernels::Experiment::run_experiment(crsGraph_t, int, const D2Parameters &) [with crsGraph_t=Kokkos::StaticCrsGraph<kk_lno_t={default_lno_t={int}}, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, kk_size_type={default_size_type={int}}>]" at line 605
instantiation of "void KokkosKernels::Experiment::experiment_driver<size_type,lno_t,exec_space,mem_space>(const D2Parameters &) [with size_type=kk_size_type={default_size_type={int}}, lno_t=kk_lno_t={default_lno_t={int}}, exec_space=Kokkos::Threads, mem_space=Kokkos::Threads::memory_space]" at line 663

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp(581): error: class "Kokkos::StaticCrsGraph<kk_lno_t={default_lno_t={int}}, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, kk_size_type={default_size_type={int}}>" has no member "numVectors"
<< currentDateTimeStr << "," << crsGraph.numVectors() << ","
^
detected during:
instantiation of "void KokkosKernels::Experiment::run_experiment(crsGraph_t, int, const D2Parameters &) [with crsGraph_t=Kokkos::StaticCrsGraph<kk_lno_t={default_lno_t={int}}, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, kk_size_type={default_size_type={int}}>]" at line 605
instantiation of "void KokkosKernels::Experiment::experiment_driver<size_type,lno_t,exec_space,mem_space>(const D2Parameters &) [with size_type=kk_size_type={default_size_type={int}}, lno_t=kk_lno_t={default_lno_t={int}}, exec_space=Kokkos::Threads, mem_space=Kokkos::Threads::memory_space]" at line 663

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp (code 2)
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/KokkosSparse_gs.cpp.o] Error 2
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/all] Error 2
compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp (code 2)
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 2
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_aux.hpp(128): error: class "Kokkos::StaticCrsGraph<int, default_layout, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, void, int>" has no member "numVectors"
const int nrows = Mtx.graph.numVectors();
^
detected during:
instantiation of "bool KokkosSparse::PerfTest::Experimental::check_errors(mag_t, crsmat_t &, scalar_view_t, scalar_view_t) [with mag_t=double, crsmat_t=KokkosSparse::CompressedSparseMatrix<double, int, Kokkos::DefaultHostExecutionSpace, void, int>, scalar_view_t=Kokkos::View<double *, Kokkos::HostSpace::memory_space>]" at line 300 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp"
instantiation of "int test_sptrsv_perf<scalar_type>(std::vector<int, std::allocator>, bool, std::__cxx11::string &, std::__cxx11::string &, std::__cxx11::string &, bool, bool, bool, int) [with scalar_type=double]" at line 439 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp"

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp (code 2)
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o] Error 2
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/all] Error 2
[ 67%] Built target sparse_spadd
[ 67%] Built target graph_color
[ 68%] Linking CXX executable sparse_pcg
[ 68%] Linking CXX executable sparse_spgemm
[ 68%] Built target sparse_pcg
[ 68%] Built target sparse_spgemm
[ 68%] Linking CXX executable graph_mis_d2
[ 68%] Built target graph_mis_d2
[ 68%] Linking CXX executable sparse_spmv_struct
[ 68%] Built target sparse_spmv_struct
[ 69%] Linking CXX executable sparse_spmv_blockcrs
[ 69%] Built target sparse_spmv_blockcrs
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-18.1.163-OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.1055/TestAll_2022-06-23_18.28.05/intel/18.1.163/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
intel-18.1.163-Threads-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.1055/TestAll_2022-06-23_18.28.05/intel/18.1.163/Threads-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:341:47: error: no member named 'numVectors' in 'Kokkos::StaticCrsGraph, void, int>'
        bipartite_color_columns(&kh, crsGraph.numVectors(), num_cols,
                                     ~~~~~~~~ ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:366:48: error: no member named 'numVectors' in 'Kokkos::StaticCrsGraph, void, int>'
    if (verbose && repeat == i + 1 && crsGraph.numVectors() < 1500) {
                                      ~~~~~~~~ ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:483:52: error: no member named 'numVectors' in 'Kokkos::StaticCrsGraph, void, int>'
            << "    Num Verts      : " << crsGraph.numVectors() << std::endl
                                          ~~~~~~~~ ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:547:54: error: no member named 'numVectors' in 'Kokkos::StaticCrsGraph, void, int>'
            << currentDateTimeStr << "," << crsGraph.numVectors() << ","
                                            ~~~~~~~~ ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:581:54: error: no member named 'numVectors' in 'Kokkos::StaticCrsGraph, void, int>'
            << currentDateTimeStr << "," << crsGraph.numVectors() << ","
                                            ~~~~~~~~ ^
16 errors generated.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:102:30: error: no member named 'row_map_type' in 'KokkosSparse::CompressedSparseMatrix'
  typedef typename crsMat_t::row_map_type::non_const_type rowmap_view_t;
                   ~~~~~~~~~~^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:211:9: note: in instantiation of function template specialization 'generateLongRowMatrix >' requested here
    A = generateLongRowMatrix(params);
        ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:405:5: note: in instantiation of function template specialization 'runGS' requested here
    runGS(params);
    ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:171:17: error: excess elements in scalar initializer
  rowmap_view_t rowmapView(
                ^
make[2]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o] Error 1
make[1]: *** [perf_test/graph/CMakeFiles/graph_color_d2.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
9 errors generated.
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/all] Error 2
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:102:30: error: no member named 'row_map_type' in 'KokkosSparse::CompressedSparseMatrix'
  typedef typename crsMat_t::row_map_type::non_const_type rowmap_view_t;
                   ~~~~~~~~~~^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:211:9: note: in instantiation of function template specialization 'generateLongRowMatrix >' requested here
    A = generateLongRowMatrix(params);
        ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:410:5: note: in instantiation of function template specialization 'runGS' requested here
    runGS(params);
    ^
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_gs.cpp:171:17: error: excess elements in scalar initializer
  rowmap_view_t rowmapView(
                ^
1 error generated.
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/all] Error 2
4 errors generated.
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/KokkosSparse_gs.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_gs.dir/all] Error 2
[ 76%] Linking CXX executable sparse_pcg
[ 76%] Built target sparse_pcg
[ 76%] Linking CXX executable sparse_spadd
[ 76%] Built target sparse_spadd
[ 76%] Linking CXX executable sparse_spmv_struct
[ 76%] Linking CXX executable sparse_spgemm
[ 76%] Built target sparse_spmv_struct
[ 76%] Built target sparse_spgemm
[ 76%] Linking CXX executable graph_mis_d2
[ 76%] Built target graph_mis_d2
[ 76%] Linking CXX executable sparse_spmv_bsr
[ 76%] Linking CXX executable graph_color
[ 76%] Built target graph_color
[ 76%] Built target sparse_spmv_bsr
[ 76%] Linking CXX executable sparse_block_pcg
[ 76%] Built target sparse_block_pcg
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/spack/opt/spack/linux-rhel7-x86_64/gcc-10.2.0/llvm-10.0.1-nldepabrxk2zcykcq7rlky5sr53hnm63/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.460/TestAll_2022-06-23_18.33.04/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 150
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 158
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 111
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 110
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 73
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 160
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 209
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 95
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 99
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: csr2csc
  • SHA: ef774bb
  • Mode: TEST_REPO

Pull Request Author: e10harvey

  - Adds KokkosSparse::crs2ccs
  - Adds KokkosSparse::CcsMatrix
  - Rewrite ccs2crs to call transpose_matrix
@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has commited a change to the PR before testing completed. The original testing SHA = ef774bb Does not match the current commit SHA = 9c0b52d. The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 150
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 158
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 111
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 110
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 73
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 160
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 209
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 95
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 99
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA ef774bb
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 150 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930] $ /bin/bash -el /tmp/jenkins7996891283464667405.sh
***Forced exclusive execution
Job <47371> is submitted to queue .
<>
<>
Running on machine: weaver
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: gcc/9.3.0
Testing compiler gcc/9.3.0
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 158 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/csr2csc^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (refs/remotes/origin/csr2csc)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 5a0e0b83e026784b97ff6418160885535bd8b06c # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins3254033232059409396.sh
***Forced exclusive execution
Job <47372> is submitted to queue .
<>
<>
Running on machine: weaver
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins91194593162717362.sh
Running on machine: blake
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins8575325264231566949.sh
Running on machine: blake
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins2127075845938781450.sh
Running on machine: blake
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins8848803808151062045.sh
Running on machine: blake
KokkosKernels Repository Status:  ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins6599290461937952414.sh
Running on machine: blake
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG13CUDA10 # 95 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_CLANG13CUDA10] $ /bin/bash -el /tmp/jenkins14338950530839530669.sh
***Forced exclusive execution
Job <47373> is submitted to default queue .
<>
<>
Running on machine: weaver
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020 # 99 (click to expand)

Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse ef774bb30270aad1d2aa0e422dae0491c8ed5739^{commit} # timeout=10
Checking out Revision ef774bb30270aad1d2aa0e422dae0491c8ed5739 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
Commit message: "Fix typos and formatting"
 > git rev-list --no-walk 31a041fbe5bd59654a8b6138d7eae1372cd3d4a8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020] $ /bin/bash -el /tmp/jenkins1059669705082514247.sh

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2542
Running on machine: inouye
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: ef774bb30270aad1d2aa0e422dae0491c8ed5739 Fix typos and formatting

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

Going to test compilers: armpl/21.1.0
Testing compiler armpl/21.1.0
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

@e10harvey
Copy link
Contributor Author

I squashed everything down into a single commit, rebased on top of develop and then checked the generated docs.

@e10harvey
Copy link
Contributor Author

Also added and tested the convenience wrappers that accept a CcsMatrix or a CrsMatrix.

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

  • Build Num: 151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 159
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 112
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 111
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 74
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 161
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 210
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 96
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 100
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

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

Pull Request Author: e10harvey

@e10harvey e10harvey added AT: WIP and removed AT: WIP labels Nov 10, 2022
@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_GCC930_Light_Tpls_GCC930

  • Build Num: 151
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 159
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 112
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 111
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 74
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 161
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 210
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 96
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 100
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9c0b52d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 151 (click to expand)

Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (test failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.151/TestAll_2022-11-10_15.54.47/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.151/TestAll_2022-11-10_15.54.47/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.151/TestAll_2022-11-10_15.54.47/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 159 (click to expand)

22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test CGS2 Passed!
22: =======================================
22: 
22: 
22: Testing GMRES with MGS ortho:
22: Ending relative residual is: 5.003e-11
22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test MGS Passed!
22: =======================================
22: 
22: 
22: Both tests have passed!!
22/23 Test #22: gmres_test_real_A ................   Passed    0.59 sec
test 23
      Start 23: gmres_test_prec

23: Test command: /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.159/TestAll_2022-11-10_15.55.02/cuda/11.2.2/Cuda_OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec
23: Test timeout computed to be: 2500
23: Convergence tolerance is: 1e-10
23: Ending relative residual is: 3.48957e-14
23: =========================================
23: Verify from main: Ending residual is 3.48957e-14
23: Number of iterations is: 1
23: Diff of residual from main - residual from solver: 0
23: Convergence flag is : Converged
23: Test passed!
23/23 Test #23: gmres_test_prec .................. Passed 0.53 sec

91% tests passed, 2 tests failed out of 23

Total Test time (real) = 654.22 sec

The following tests FAILED:
11 - sparse_cuda (Failed)
12 - sparse_openmp (Failed)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.21.2 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.159/TestAll_2022-11-10_15.55.02/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

22: Test MGS Passed!
22: =======================================
22: 
22: 
22: Both tests have passed!!
22/23 Test #22: gmres_test_real_A ................   Passed    0.04 sec
test 23
      Start 23: gmres_test_prec

23: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.112/TestAll_2022-11-10_15.55.07/gcc/10.2.0/Threads_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
23: Test timeout computed to be: 2500
23: Convergence tolerance is: 1e-10
23: Ending relative residual is: 3.4657e-14
23: =========================================
23: Verify from main: Ending residual is 3.4657e-14
23: Number of iterations is: 1
23: Diff of residual from main - residual from solver: 0
23: Convergence flag is : Converged
23: Test passed!
23/23 Test #23: gmres_test_prec .................. Passed 0.02 sec

96% tests passed, 1 tests failed out of 23

Total Test time (real) = 195.19 sec

The following tests FAILED:
11 - sparse_serial (Failed)
Errors while running CTest
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=427 run_time=90
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.112/TestAll_2022-11-10_15.55.07/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

test 17
      Start 17: gmres_test_prec

17: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.111/TestAll_2022-11-10_15.55.16/gcc/10.2.0/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec
17: Test timeout computed to be: 2500
17: Convergence tolerance is: 1e-10
17: Ending relative residual is: 3.48957e-14
17: =========================================
17: Verify from main: Ending residual is 3.48957e-14
17: Number of iterations is: 1
17: Diff of residual from main - residual from solver: 0
17: Convergence flag is : Converged
17: Test passed!
17/17 Test #17: gmres_test_prec .................. Passed 0.01 sec

94% tests passed, 1 tests failed out of 17

Total Test time (real) = 88.17 sec

The following tests FAILED:
6 - sparse_openmp (Failed)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.111/TestAll_2022-11-10_15.55.16/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.111/TestAll_2022-11-10_15.55.16/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 9c0b52daa95ff44cfc57d66eabedf106ba23141c^{commit} # timeout=10
Checking out Revision 9c0b52daa95ff44cfc57d66eabedf106ba23141c (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
Commit message: "src/sparse: Add crs2ccs   - Adds KokkosSparse::crs2ccs   - Adds KokkosSparse::CcsMatrix   - Rewrite ccs2crs to call transpose_matrix"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins833769419040470264.sh
Running on machine: blake
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: 9c0b52daa95ff44cfc57d66eabedf106ba23141c src/sparse: Add crs2ccs - Adds KokkosSparse::crs2ccs - Adds KokkosSparse::CcsMatrix - Rewrite ccs2crs to call transpose_matrix

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

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

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

16: Verify from main: Ending residual is 5.003e-11
16: Number of iterations is: 30
16: Diff of residual from main - residual from solver: 0
16: Convergence flag is : Converged
16: Test CGS2 Passed!
16: =======================================
16: 
16: 
16: Testing GMRES with MGS ortho:
16: Ending relative residual is: 5.003e-11
16: =======================================
16: Verify from main: Ending residual is 5.003e-11
16: Number of iterations is: 30
16: Diff of residual from main - residual from solver: 0
16: Convergence flag is : Converged
16: Test MGS Passed!
16: =======================================
16: 
16: 
16: Both tests have passed!!
16/17 Test #16: gmres_test_real_A ................   Passed    0.05 sec
test 17
      Start 17: gmres_test_prec

17: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.161/TestAll_2022-11-10_15.55.38/intel/19.5.281/Threads-release/example/gmres/KokkosKernels_gmres_test_prec
17: Test timeout computed to be: 2500
17: Convergence tolerance is: 1e-10
17: Ending relative residual is: 4.25123e-14
17: =========================================
17: Verify from main: Ending residual is 4.25123e-14
17: Number of iterations is: 1
17: Diff of residual from main - residual from solver: 0
17: Convergence flag is : Converged
17: Test passed!
17/17 Test #17: gmres_test_prec .................. Passed 0.04 sec

94% tests passed, 1 tests failed out of 17

Total Test time (real) = 125.32 sec

The following tests FAILED:
6 - sparse_threads (Failed)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1103 run_time=98
#######################################################
FAILED TESTS
#######################################################
intel-19.5.281-Threads-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/19.5.281

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.161/TestAll_2022-11-10_15.55.38/intel/19.5.281/Threads-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 9c0b52daa95ff44cfc57d66eabedf106ba23141c^{commit} # timeout=10
Checking out Revision 9c0b52daa95ff44cfc57d66eabedf106ba23141c (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
Commit message: "src/sparse: Add crs2ccs   - Adds KokkosSparse::crs2ccs   - Adds KokkosSparse::CcsMatrix   - Rewrite ccs2crs to call transpose_matrix"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ef774bb30270aad1d2aa0e422dae0491c8ed5739 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 95167003bcebd27a643677cf664c64e1269a1e07 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
Commit message: "Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins5356825245148682099.sh
Running on machine: blake
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: 9c0b52daa95ff44cfc57d66eabedf106ba23141c src/sparse: Add crs2ccs - Adds KokkosSparse::crs2ccs - Adds KokkosSparse::CcsMatrix - Rewrite ccs2crs to call transpose_matrix

Kokkos Repository Status: 95167003bcebd27a643677cf664c64e1269a1e07 Update CUDA occupancy calculation to reflect register allocation granularity of 256 registers per warp (#5624)

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG13CUDA10 # 96 (click to expand)

22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test CGS2 Passed!
22: =======================================
22: 
22: 
22: Testing GMRES with MGS ortho:
22: Ending relative residual is: 5.003e-11
22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test MGS Passed!
22: =======================================
22: 
22: 
22: Both tests have passed!!
22/23 Test #22: gmres_test_real_A ................   Passed    0.54 sec
test 23
      Start 23: gmres_test_prec

23: Test command: /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/KokkosKernels_PullRequest_CLANG13CUDA10.96/TestAll_2022-11-10_15.56.00/clang/13.0.0/Cuda-release/example/gmres/KokkosKernels_gmres_test_prec
23: Test timeout computed to be: 2500
23: Convergence tolerance is: 1e-10
23: Ending relative residual is: 3.48957e-14
23: =========================================
23: Verify from main: Ending residual is 3.48957e-14
23: Number of iterations is: 1
23: Diff of residual from main - residual from solver: 0
23: Convergence flag is : Converged
23: Test passed!
23/23 Test #23: gmres_test_prec .................. Passed 0.54 sec

91% tests passed, 2 tests failed out of 23

Total Test time (real) = 705.56 sec

The following tests FAILED:
11 - sparse_cuda (Failed)
12 - sparse_serial (Failed)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-13.0.0-Cuda-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.21.2 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243

$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=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

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/KokkosKernels_PullRequest_CLANG13CUDA10.96/TestAll_2022-11-10_15.56.00/clang/13.0.0/Cuda-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

16: Test MGS Passed!
16: =======================================
16: 
16: 
16: Both tests have passed!!
16/17 Test #16: gmres_test_real_A ................   Passed    0.93 sec
test 17
      Start 17: gmres_test_prec

17: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020.100/TestAll_2022-11-10_17.01.57/armpl/20.3.0/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec
17: Test timeout computed to be: 2500
17: Convergence tolerance is: 1e-10
17: Ending relative residual is: 3.27945e-14
17: =========================================
17: Verify from main: Ending residual is 3.27945e-14
17: Number of iterations is: 1
17: Diff of residual from main - residual from solver: 0
17: Convergence flag is : Converged
17: Test passed!
17/17 Test #17: gmres_test_prec .................. Passed 0.04 sec

94% tests passed, 1 tests failed out of 17

Total Test time (real) = 253.07 sec

The following tests FAILED:
6 - sparse_openmp (Failed)
Errors while running CTest
Unrecognized compiler armpl/20.3.0 when looking for Spack variants
Unrecognized compiler armpl/20.3.0 when looking for Spack variants
Unrecognized compiler armpl/20.3.0 when looking for Spack variants
Starting job armpl-20.3.0-Serial-release
kokkos devices: Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
salloc: Job 2543 has exceeded its time limit and its allocation has been revoked.
PASSED armpl-20.3.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
armpl-20.3.0-Serial-release build_time=1545 run_time=268
#######################################################
FAILED TESTS
#######################################################
armpl-20.3.0-OpenMP-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/20.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020.100/TestAll_2022-11-10_17.01.57/armpl/20.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

@e10harvey
Copy link
Contributor Author

e10harvey commented Nov 14, 2022

There are at least 2 errors:

  • cmake libraries in the gcc 9.3.0 build are missing
  • there is a random failure when using the convenience wrapper that accepts a single parameter of type: CrsMatrix or CcsMatrix

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

  • Build Num: 152
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 160
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 113
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 112
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 75
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 162
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 211
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 97
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 101
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: csr2csc
  • SHA: 4460069
  • 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_GCC930_Light_Tpls_GCC930

  • Build Num: 152
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 160
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 113
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 112
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 75
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 162
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 211
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 97
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 101
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 4460069
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ad1a51d
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 152 (click to expand)

Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (test failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.152/TestAll_2022-11-14_15.05.52/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.152/TestAll_2022-11-14_15.05.52/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.152/TestAll_2022-11-14_15.05.52/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 160 (click to expand)

22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test CGS2 Passed!
22: =======================================
22: 
22: 
22: Testing GMRES with MGS ortho:
22: Ending relative residual is: 5.003e-11
22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test MGS Passed!
22: =======================================
22: 
22: 
22: Both tests have passed!!
22/23 Test #22: gmres_test_real_A ................   Passed    0.60 sec
test 23
      Start 23: gmres_test_prec

23: Test command: /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.160/TestAll_2022-11-14_15.05.57/cuda/11.2.2/Cuda_OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec
23: Test timeout computed to be: 2500
23: Convergence tolerance is: 1e-10
23: Ending relative residual is: 3.48957e-14
23: =========================================
23: Verify from main: Ending residual is 3.48957e-14
23: Number of iterations is: 1
23: Diff of residual from main - residual from solver: 0
23: Convergence flag is : Converged
23: Test passed!
23/23 Test #23: gmres_test_prec .................. Passed 0.59 sec

91% tests passed, 2 tests failed out of 23

Total Test time (real) = 654.74 sec

The following tests FAILED:
11 - sparse_cuda (Failed)
12 - sparse_openmp (SEGFAULT)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.21.2 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.160/TestAll_2022-11-14_15.05.57/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 44600692c574dfe81d3e21e5780b1edc7f840670^{commit} # timeout=10
Checking out Revision 44600692c574dfe81d3e21e5780b1edc7f840670 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 44600692c574dfe81d3e21e5780b1edc7f840670 # timeout=10
Commit message: "scripts/cm_test_all_sandia:   - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 # timeout=10
Commit message: "Merge pull request #5629 from arghdos/xnack_warn_msg"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins73281728486270259.sh
Running on machine: blake
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: 44600692c574dfe81d3e21e5780b1edc7f840670 scripts/cm_test_all_sandia: - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries

Kokkos Repository Status: e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 Merge pull request #5629 from arghdos/xnack_warn_msg

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
FAILED gcc-10.2.0-Threads_Serial-release
SETUP_ENV: compiler=gcc/10.2.0 modules=cmake/3.23.1 gcc/10.2.0
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
FAILED gcc-10.2.0-OpenMP-release
SETUP_ENV: compiler=gcc/10.2.0 modules=cmake/3.23.1 gcc/10.2.0
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/10.2.0

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.113/TestAll_2022-11-14_15.08.19/gcc/10.2.0/OpenMP-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake19: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 44600692c574dfe81d3e21e5780b1edc7f840670^{commit} # timeout=10
Checking out Revision 44600692c574dfe81d3e21e5780b1edc7f840670 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 44600692c574dfe81d3e21e5780b1edc7f840670 # timeout=10
Commit message: "scripts/cm_test_all_sandia:   - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 # timeout=10
Commit message: "Merge pull request #5629 from arghdos/xnack_warn_msg"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins8844194129320007531.sh
Running on machine: blake
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: 44600692c574dfe81d3e21e5780b1edc7f840670 scripts/cm_test_all_sandia: - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries

Kokkos Repository Status: e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 Merge pull request #5629 from arghdos/xnack_warn_msg

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
FAILED gcc-10.2.0-Threads_Serial-release
SETUP_ENV: compiler=gcc/10.2.0 modules=cmake/3.23.1 gcc/10.2.0
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
FAILED gcc-10.2.0-OpenMP-release
SETUP_ENV: compiler=gcc/10.2.0 modules=cmake/3.23.1 gcc/10.2.0
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/10.2.0

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.112/TestAll_2022-11-14_15.08.20/gcc/10.2.0/OpenMP-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake20: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 44600692c574dfe81d3e21e5780b1edc7f840670^{commit} # timeout=10
Checking out Revision 44600692c574dfe81d3e21e5780b1edc7f840670 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 44600692c574dfe81d3e21e5780b1edc7f840670 # timeout=10
Commit message: "scripts/cm_test_all_sandia:   - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 # timeout=10
Commit message: "Merge pull request #5629 from arghdos/xnack_warn_msg"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins6889210729636154368.sh
Running on machine: blake
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: 44600692c574dfe81d3e21e5780b1edc7f840670 scripts/cm_test_all_sandia: - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries

Kokkos Repository Status: e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 Merge pull request #5629 from arghdos/xnack_warn_msg

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
FAILED gcc-10.2.0-OpenMP_Serial-release
SETUP_ENV: compiler=gcc/10.2.0 modules=cmake/3.23.1 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.75/TestAll_2022-11-14_15.08.26/gcc/10.2.0/OpenMP_Serial-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake19: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 44600692c574dfe81d3e21e5780b1edc7f840670^{commit} # timeout=10
Checking out Revision 44600692c574dfe81d3e21e5780b1edc7f840670 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 44600692c574dfe81d3e21e5780b1edc7f840670 # timeout=10
Commit message: "scripts/cm_test_all_sandia:   - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 # timeout=10
Commit message: "Merge pull request #5629 from arghdos/xnack_warn_msg"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins8453557848202309843.sh
Running on machine: blake
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
KokkosKernels Repository Status:  44600692c574dfe81d3e21e5780b1edc7f840670 scripts/cm_test_all_sandia: - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries

Kokkos Repository Status: e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 Merge pull request #5629 from arghdos/xnack_warn_msg

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
FAILED intel-19.5.281-OpenMP-release
SETUP_ENV: compiler=intel/19.5.281 modules=cmake/3.23.1 intel/compilers/19.5.281
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
FAILED intel-19.5.281-Threads-release
SETUP_ENV: compiler=intel/19.5.281 modules=cmake/3.23.1 intel/compilers/19.5.281
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-19.5.281-OpenMP-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 intel/compilers/19.5.281

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.162/TestAll_2022-11-14_15.08.31/intel/19.5.281/OpenMP-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake19: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 44600692c574dfe81d3e21e5780b1edc7f840670^{commit} # timeout=10
Checking out Revision 44600692c574dfe81d3e21e5780b1edc7f840670 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 44600692c574dfe81d3e21e5780b1edc7f840670 # timeout=10
Commit message: "scripts/cm_test_all_sandia:   - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 9c0b52daa95ff44cfc57d66eabedf106ba23141c # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 # timeout=10
Commit message: "Merge pull request #5629 from arghdos/xnack_warn_msg"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 95167003bcebd27a643677cf664c64e1269a1e07 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins822639908770324641.sh
Running on machine: blake
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? perf_test/batched/sparse/

KokkosKernels Repository Status: 44600692c574dfe81d3e21e5780b1edc7f840670 scripts/cm_test_all_sandia: - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries

Kokkos Repository Status: e78d6a53a21da68a61cf1fd9dcefcb98fc161ad4 Merge pull request #5629 from arghdos/xnack_warn_msg

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
FAILED clang-10.0.1-Threads_Serial-release
SETUP_ENV: compiler=clang/10.0.1 modules=cmake/3.23.1 clang/10.0.1
cmake(3):ERROR:105: Unable to locate a modulefile for 'cmake/3.23.1'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 clang/10.0.1

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.211/TestAll_2022-11-14_15.08.35/clang/10.0.1/Threads_Serial-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake20: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG13CUDA10 # 97 (click to expand)

22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test CGS2 Passed!
22: =======================================
22: 
22: 
22: Testing GMRES with MGS ortho:
22: Ending relative residual is: 5.003e-11
22: =======================================
22: Verify from main: Ending residual is 5.003e-11
22: Number of iterations is: 30
22: Diff of residual from main - residual from solver: 0
22: Convergence flag is : Converged
22: Test MGS Passed!
22: =======================================
22: 
22: 
22: Both tests have passed!!
22/23 Test #22: gmres_test_real_A ................   Passed    0.58 sec
test 23
      Start 23: gmres_test_prec

23: Test command: /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/KokkosKernels_PullRequest_CLANG13CUDA10.97/TestAll_2022-11-14_15.08.43/clang/13.0.0/Cuda-release/example/gmres/KokkosKernels_gmres_test_prec
23: Test timeout computed to be: 2500
23: Convergence tolerance is: 1e-10
23: Ending relative residual is: 3.48957e-14
23: =========================================
23: Verify from main: Ending residual is 3.48957e-14
23: Number of iterations is: 1
23: Diff of residual from main - residual from solver: 0
23: Convergence flag is : Converged
23: Test passed!
23/23 Test #23: gmres_test_prec .................. Passed 0.55 sec

91% tests passed, 2 tests failed out of 23

Total Test time (real) = 709.49 sec

The following tests FAILED:
11 - sparse_cuda (SEGFAULT)
12 - sparse_serial (SEGFAULT)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-13.0.0-Cuda-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.21.2 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243

$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=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

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/KokkosKernels_PullRequest_CLANG13CUDA10.97/TestAll_2022-11-14_15.08.43/clang/13.0.0/Cuda-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020 # 101 (click to expand)

test 17
      Start 17: gmres_test_prec

17: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020.101/TestAll_2022-11-14_15.10.02/armpl/21.1.0/Serial-release/example/gmres/KokkosKernels_gmres_test_prec
17: Test timeout computed to be: 2500
17: Convergence tolerance is: 1e-10
17: Ending relative residual is: 3.35095e-14
17: =========================================
17: Verify from main: Ending residual is 3.35095e-14
17: Number of iterations is: 1
17: Diff of residual from main - residual from solver: 0
17: Convergence flag is : Converged
17: Test passed!
17/17 Test #17: gmres_test_prec .................. Passed 0.02 sec

94% tests passed, 1 tests failed out of 17

Total Test time (real) = 262.56 sec

The following tests FAILED:
6 - sparse_serial (SEGFAULT)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020.101/TestAll_2022-11-14_15.10.02/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020/KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020.101/TestAll_2022-11-14_15.10.02/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

  - Switch from cmake 3.19 to cmake 3.23.1 due to missing system libraries

sparse/unit_test:
  - Pass in matrix members to check_crs_matrix and check_ccs_matrix so that
  the transposed rows/cols are indexed correctly.
@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_GCC930_Light_Tpls_GCC930

  • Build Num: 153
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 161
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 114
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 113
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 76
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 163
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 212
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 98
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 102
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: csr2csc
  • SHA: 8bff4c1
  • 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_GCC930_Light_Tpls_GCC930

  • Build Num: 153
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 161
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 114
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 113
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 76
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 163
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 212
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 98
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_ARMPL2110_Tpls_ARMPL2030_GCC1020

  • Build Num: 102
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH csr2csc
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 8bff4c1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f3556c5
PR_LABELS feature request
PULLREQUESTNUM 1446
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

@brian-kelley brian-kelley left a comment

Choose a reason for hiding this comment

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

Thanks for making all those changes.

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@e10harvey e10harvey merged commit 63b15ad into kokkos:develop Nov 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants