kokkos-kernels
kokkos-kernels copied to clipboard
Add csr2csc
Related to #1164.
Summary of changes:
- Add CompressedSparseMatrix
- Add CscMatrix
- Move SparseVectorView and SparseVectorViewConst inside of CompressedSparseMatrix
- Add csr2csc
- Rewrite csc2csr to use the
transpose_matrixutility
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.
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?
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.
The CSCMatrix will be exactly the CSRMatrix with name changed :)
OK, thank you.
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).
The data structure will be identical, but we have to change
row_map->column_map, and swap the meanings ofnumRows()/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.
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?
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.
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.
Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.
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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Using Repos:
- Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
- Branch: csr2csc
- SHA: ffdccb5ed25129c3259c3c7549ed20392c17a0e9
- Mode: TEST_REPO
Pull Request Author: e10harvey
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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | ffdccb5ed25129c3259c3c7549ed20392c17a0e9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
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!
All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...
Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.
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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Using Repos:
- Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
- Branch: csr2csc
- SHA: c7b65d0f6511f235b80c37bb70777c080283e6d4
- Mode: TEST_REPO
Pull Request Author: e10harvey
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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | c7b65d0f6511f235b80c37bb70777c080283e6d4 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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
Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.
@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?
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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Using Repos:
- Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
- Branch: csr2csc
- SHA: f776fc79b459fb3a13a4b5f5887fb559ae744dd9
- Mode: TEST_REPO
Pull Request Author: e10harvey
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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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 | f776fc79b459fb3a13a4b5f5887fb559ae744dd9 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | 52b6d7f9f50aa0c9d2a072a090279b704067747a |
| 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
$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?
, void, int> has no member named numVectors; did you mean numRows?
, void, int> has no member named numVectors; did you mean numRows?
]:
/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() , void, int>'
, void, int>'
, void, int>'
'
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<:compressedsparsematrix int kokkos::threads void> >' 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<:threads>' requested here
runGS<:defaultexecutionspace>(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<:compressedsparsematrix int kokkos::serial void> >' 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<:serial>' requested here
runGS<:serial>(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
As part of this PR, I would like to make some changes to Kokkos_Crs.hpp. I propose that we restructure CrsMatrix as follows:
CrsMatrixrenamed toCompressedSparseMatrixand moved intoKokkos_CompressedSparseMatrix.hppclass CrsMatrix : CompressedSparseMatrixusing row_map_type = CompressedSparseMatrix::map_typenumRows() { return numVectors(); }- ...
class CsrMatrix : CrsMatrixclass CscMatrix : CompressedSparseMatrixusing col_map_type = CompressedSparseMatrix::map_typenumCols() { return numVectors(); }- ...
This restructuring will entail reverting all changes made via https://github.com/kokkos/kokkos-kernels/pull/1446/commits/f776fc79b459fb3a13a4b5f5887fb559ae744dd9 and will restore the existing interface provided by CrsMatrix.
CC: @jennloe, @srajama1, @lucbv, @brian-kelley, @ndellingwood, @jgfouca, @cwpearson, @kliegeois
Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.
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: 274
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight
- Build Num: 267
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC720
- Build Num: 1083
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight
- Build Num: 727
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_GCC720
- Build Num: 1071
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_INTEL18
- Build Num: 1058
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CLANG1001
- Build Num: 463
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Using Repos:
- Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
- Branch: csr2csc
- SHA: 900af60a4dcf9f38aee5c633f6aba377314c6768
- Mode: TEST_REPO
Pull Request Author: e10harvey
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: 274
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight
- Build Num: 267
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC720
- Build Num: 1083
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight
- Build Num: 727
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_GCC720
- Build Num: 1071
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_INTEL18
- Build Num: 1058
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CLANG1001
- Build Num: 463
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | 900af60a4dcf9f38aee5c633f6aba377314c6768 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | af7bf3cbfd04744295049ea14de9679798191617 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740 # 274 (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_0001950f_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_0001951c_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%] Built target sparse_spmv
[ 76%] Linking CXX executable sparse_spmv_struct
[ 76%] Linking CXX executable sparse_pcg
[ 76%] Built target sparse_spmv_struct
[ 76%] Linking CXX executable sparse_spadd
[ 76%] Built target sparse_pcg
[ 76%] Built target sparse_spadd
[ 76%] Linking CXX executable sparse_spmv_blockcrs
[ 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_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_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.274/TestAll_2022-06-24_13.58.12/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 # 267 (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/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
18 errors detected in the compilation of "/tmp/tmpxft_00008179_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_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
2 errors detected in the compilation of "/tmp/tmpxft_0000813a_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_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
[ 75%] Built target sparse_pcg
[ 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_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
[ 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.267/TestAll_2022-06-24_13.58.19/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 # 1083 (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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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 graph_color
[ 68%] Built target graph_color
[ 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=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.1083/TestAll_2022-06-24_13.59.10/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.1083/TestAll_2022-06-24_13.59.10/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 # 727 (click to expand)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp:366:48: error: class Kokkos::StaticCrsGraph, void, int> has no member named numVectors; did you mean numRows?
if (verbose && repeat == i + 1 && crsGraph.numVectors() , void, int> has no member named numVectors; did you mean numRows?
os, crsGraph.numVectors(), crsGraph.row_map, crsGraph.entries,
~~~~~~~~~^~~~~~~~~~
numRows
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/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?
, void, int> has no member named numVectors; did you mean numRows?
, void, int> has no member named numVectors; did you mean numRows?
$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.727/TestAll_2022-06-24_13.59.17/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.727/TestAll_2022-06-24_13.59.17/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 # 1071 (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?
, void, int> has no member named numVectors; did you mean numRows?
, void, int> has no member named numVectors; did you mean numRows?
]:
/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.1071/TestAll_2022-06-24_13.59.27/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.1071/TestAll_2022-06-24_13.59.27/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.1071/TestAll_2022-06-24_13.59.27/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.1071/TestAll_2022-06-24_13.59.27/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.1071/TestAll_2022-06-24_13.59.27/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.1071/TestAll_2022-06-24_13.59.27/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.1071/TestAll_2022-06-24_13.59.27/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/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_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%] Linking CXX executable graph_mis_d2
[ 75%] Built target sparse_spmv_blockcrs
[ 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.1071/TestAll_2022-06-24_13.59.27/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 # 1058 (click to expand)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/perf_test/graph/KokkosGraph_color_d2.cpp(483): error: class "Kokkos::StaticCrsGraph, void, kk_size_type={default_size_type={int}}>" has no member "numVectors"
, 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/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.1058/TestAll_2022-06-24_13.59.39/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.1058/TestAll_2022-06-24_13.59.39/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 # 463 (click to expand)
/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() , void, int>'
, void, int>'
, void, int>'
'
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<:compressedsparsematrix int kokkos::threads void> >' 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<:threads>' requested here
runGS<:defaultexecutionspace>(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(
^
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<:compressedsparsematrix int kokkos::serial void> >' 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<:serial>' requested here
runGS<:serial>(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_spgemm
[ 76%] Linking CXX executable sparse_spmv_struct
[ 76%] Built target sparse_spgemm
[ 76%] Built target sparse_spmv_struct
[ 76%] Linking CXX executable graph_mis_d2
[ 76%] Built target graph_mis_d2
[ 76%] Linking CXX executable graph_color
[ 76%] Linking CXX executable sparse_spmv_bsr
[ 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.463/TestAll_2022-06-24_13.59.50/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
As part of this PR, I would like to make some changes to
Kokkos_Crs.hpp. I propose that we restructureCrsMatrixas follows:* `CrsMatrix` renamed to `CompressedSparseMatrix` and moved into `Kokkos_CompressedSparseMatrix.hpp` * `class CrsMatrix : CompressedSparseMatrix` * `using row_map_type = CompressedSparseMatrix::map_type` * `numRows() { return numVectors(); }` * ... * `class CsrMatrix : CrsMatrix` * `class CscMatrix : CompressedSparseMatrix` * `using col_map_type = CompressedSparseMatrix::map_type` * `numCols() { return numVectors(); }` * ...This restructuring will entail reverting all changes made via f776fc7 and will restore the existing interface provided by
CrsMatrix.CC: @jennloe, @srajama1, @lucbv, @brian-kelley, @ndellingwood, @jgfouca, @cwpearson, @kliegeois
I will prototype this change for the team to review here.
Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.
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: 71
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
- Build Num: 80
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC1020
- Build Num: 33
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
- Build Num: 32
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_GCC720
- Build Num: 131
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_INTEL19
- Build Num: 82
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CLANG1001
- Build Num: 131
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CLANG13CUDA10
- Build Num: 23
- Status: STARTED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Using Repos:
- Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
- Branch: csr2csc
- SHA: c4a159ad42609df62432673b5c90bcd307416c86
- Mode: TEST_REPO
Pull Request Author: e10harvey
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: 71
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
- Build Num: 80
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC1020
- Build Num: 33
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
- Build Num: 32
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_GCC720
- Build Num: 131
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_Tpls_INTEL19
- Build Num: 82
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CLANG1001
- Build Num: 131
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Build Information
Test Name: KokkosKernels_PullRequest_CLANG13CUDA10
- Build Num: 23
- Status: FAILED
Jenkins Parameters
| Parameter Name | Value |
|---|---|
| KOKKOSKERNELS_SOURCE_BRANCH | csr2csc |
| KOKKOSKERNELS_SOURCE_REPO | https://github.com/e10harvey/kokkos-kernels |
| KOKKOSKERNELS_SOURCE_SHA | c4a159ad42609df62432673b5c90bcd307416c86 |
| KOKKOSKERNELS_TARGET_BRANCH | develop |
| KOKKOSKERNELS_TARGET_REPO | https://github.com/kokkos/kokkos-kernels |
| KOKKOSKERNELS_TARGET_SHA | ee0f695fea2ca5c483532c54056dfe987327e969 |
| PR_LABELS | feature request |
| PULLREQUESTNUM | 1446 |
| TEST_REPO_ALIAS | KOKKOSKERNELS |
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 71 (click to expand)
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 81%] Linking CXX executable sparse_gs
[ 81%] Built target sparse_gs
[ 81%] Linking CXX executable sparse_sptrsv_supernode
[ 81%] Built target sparse_sptrsv_supernode
[ 81%] Linking CXX executable sparse_spgemm_jacobi
[ 81%] Built target sparse_spgemm_jacobi
[ 82%] Linking CXX executable KokkosKernels_graph_serial
[ 82%] Built target KokkosKernels_graph_serial
[ 82%] Linking CXX executable KokkosKernels_blas_serial
[ 82%] Linking CXX executable KokkosKernels_graph_openmp
[ 82%] Linking CXX executable KokkosKernels_blas_openmp
[ 82%] Built target KokkosKernels_blas_serial
[ 82%] Built target KokkosKernels_graph_openmp
[ 82%] Built target KokkosKernels_blas_openmp
[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 82%] Built target KokkosKernels_batched_dla_serial
[ 82%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 82%] Built target KokkosKernels_batched_dla_openmp
[ 82%] Linking CXX executable KokkosKernels_sparse_openmp
[ 82%] Built target KokkosKernels_sparse_openmp
[ 82%] Linking CXX executable KokkosKernels_sparse_serial
[ 82%] Built target KokkosKernels_sparse_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build 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.71/TestAll_2022-09-28_17.56.19/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 (build 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.71/TestAll_2022-09-28_17.56.19/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 (build 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.71/TestAll_2022-09-28_17.56.19/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 # 80 (click to expand)
[ 77%] Built target KokkosKernels_batched_sla_cuda
[ 77%] Building CXX object perf_test/graph/CMakeFiles/graph_mis_d2.dir/KokkosGraph_mis_d2.cpp.o
[ 77%] Linking CXX executable KokkosKernels_common_openmp
[ 77%] Built target KokkosKernels_common_openmp
[ 77%] Building CXX object perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o
[ 78%] Linking CXX executable KokkosKernels_graph_openmp
[ 78%] Built target KokkosKernels_graph_openmp
[ 78%] Building CXX object perf_test/sparse/CMakeFiles/sparse_pcg.dir/KokkosSparse_pcg.cpp.o
[ 79%] Linking CXX executable KokkosKernels_common_cuda
[ 79%] Built target KokkosKernels_common_cuda
[ 79%] Building CXX object perf_test/sparse/CMakeFiles/sparse_gs.dir/KokkosSparse_gs.cpp.o
[ 80%] Linking CXX executable graph_mis_d2
[ 80%] Built target graph_mis_d2
[ 80%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
[ 81%] Linking CXX executable graph_color
[ 81%] Built target graph_color
[ 81%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spgemm.dir/KokkosSparse_spgemm.cpp.o
[ 81%] Linking CXX executable graph_color_d2
[ 81%] Built target graph_color_d2
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
[ 82%] Linking CXX executable sparse_pcg
[ 82%] Built target sparse_pcg
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o
[ 83%] Linking CXX executable sparse_spadd
[ 83%] Linking CXX executable KokkosKernels_graph_cuda
[ 83%] Built target sparse_spadd
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/KokkosSparse_sptrsv.cpp.o
[ 83%] Built target KokkosKernels_graph_cuda
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o
[ 83%] Linking CXX executable KokkosKernels_blas_openmp
[ 83%] Linking CXX executable KokkosKernels_blas_cuda
[ 83%] Built target KokkosKernels_blas_openmp
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
[ 83%] Linking CXX executable sparse_spgemm
[ 83%] Built target KokkosKernels_blas_cuda
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct_tuning.dir/KokkosSparse_spmv_struct_tuning.cpp.o
[ 83%] Built target sparse_spgemm
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_kk_spmv.dir/KokkosSparse_kk_spmv.cpp.o
[ 83%] Linking CXX executable sparse_gs
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp(325): error: namespace "KokkosKernels::Impl" has no member "kk_create_blockcrs_formated_point_crsmatrix"
[ 83%] Built target sparse_gs
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
1 error detected in the compilation of "/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp".
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/build.make:76: perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2018: perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 84%] Linking CXX executable sparse_sptrsv
[ 84%] Built target sparse_sptrsv
[ 84%] Linking CXX executable sparse_sptrsv_supernode
[ 84%] Built target sparse_sptrsv_supernode
[ 84%] Linking CXX executable sparse_spmv_struct
[ 84%] Built target sparse_spmv_struct
[ 84%] Linking CXX executable sparse_spgemm_jacobi
[ 84%] Built target sparse_spgemm_jacobi
[ 84%] Linking CXX executable sparse_spmv_struct_tuning
[ 84%] Built target sparse_spmv_struct_tuning
[ 84%] Linking CXX executable sparse_spmv_bsr
[ 84%] Built target sparse_spmv_bsr
[ 85%] Linking CXX executable sparse_kk_spmv
[ 85%] Built target sparse_kk_spmv
[ 85%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 85%] Built target KokkosKernels_batched_dla_openmp
[ 85%] Linking CXX executable KokkosKernels_sparse_openmp
[ 85%] Built target KokkosKernels_sparse_openmp
[ 85%] Linking CXX executable KokkosKernels_sparse_cuda
[ 85%] Built target KokkosKernels_sparse_cuda
[ 85%] Linking CXX executable KokkosKernels_batched_dla_cuda
[ 85%] Built target KokkosKernels_batched_dla_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build 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.18/gcc/8.3.1
$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.80/TestAll_2022-09-28_17.56.26/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 # 33 (click to expand)
[ 63%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o
Scanning dependencies of target sparse_pcg
Scanning dependencies of target sparse_block_pcg
[ 65%] Building CXX object perf_test/sparse/CMakeFiles/sparse_pcg.dir/KokkosSparse_pcg.cpp.o
[ 65%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
Scanning dependencies of target KokkosKernels_batched_dla_openmp
Scanning dependencies of target KokkosKernels_blas_openmp
[ 65%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o
[ 66%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/__/__/test_common/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 67%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o
[ 67%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o
[ 68%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/backends/Test_OpenMP_Batched_Sparse.cpp.o
[ 69%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/backends/Test_OpenMP_Graph.cpp.o
[ 70%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o
[ 70%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/backends/Test_OpenMP_Blas.cpp.o
[ 70%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp: In function void run_experiment(crsMat_t, typename crsMat_t::values_type::non_const_type, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp:325:24: error: kk_create_blockcrs_formated_point_crsmatrix is not a member of KokkosKernels::Impl
325 | KokkosKernels::Impl::kk_create_blockcrs_formated_point_crsmatrix(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 71%] Linking CXX executable sparse_spgemm
[ 71%] Linking CXX executable sparse_pcg
[ 71%] Built target sparse_spgemm
[ 71%] Built target sparse_pcg
[ 71%] Linking CXX executable graph_mis_d2
[ 71%] Built target graph_mis_d2
[ 71%] Linking CXX executable graph_color_d2
[ 71%] Linking CXX executable graph_color
[ 71%] Built target graph_color_d2
[ 71%] Built target graph_color
[ 71%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 71%] Built target KokkosKernels_batched_sla_openmp
[ 71%] Linking CXX executable KokkosKernels_common_openmp
[ 71%] Built target KokkosKernels_common_openmp
[ 71%] Linking CXX executable KokkosKernels_graph_openmp
[ 71%] Built target KokkosKernels_graph_openmp
[ 71%] Linking CXX executable KokkosKernels_blas_openmp
[ 71%] Built target KokkosKernels_blas_openmp
[ 71%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 71%] Built target KokkosKernels_batched_dla_openmp
[ 71%] Linking CXX executable KokkosKernels_sparse_openmp
[ 71%] Built target KokkosKernels_sparse_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
# Reproducer instructions:
# Load modules:
source /etc/profile.d/modules.sh
module purge
module load cmake/3.19.3 gcc/10.2.0
$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=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.33/TestAll_2022-09-28_17.58.15/gcc/10.2.0/OpenMP-release
# To reload modules
source ./reload_modules.sh
# To reconfigure
./call_generate_makefile.sh
# To rebuild
make -j
# To retest
ctest -V
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
Reproducer instructions:
Load modules:
source /etc/profile.d/modules.sh
module purge
module load cmake/3.19.3 gcc/10.2.0
$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.33/TestAll_2022-09-28_17.58.15/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: 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_GCC1020_Light_LayoutRight # 32 (click to expand)
[ 63%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/__/__/test_common/Test_Main.cpp.o
Scanning dependencies of target sparse_block_pcg
Scanning dependencies of target sparse_pcg
[ 64%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
[ 65%] Building CXX object perf_test/sparse/CMakeFiles/sparse_pcg.dir/KokkosSparse_pcg.cpp.o
Scanning dependencies of target KokkosKernels_batched_dla_openmp
[ 65%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_blas_openmp
[ 66%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/__/__/test_common/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 67%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o
[ 67%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o
[ 68%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/backends/Test_OpenMP_Batched_Sparse.cpp.o
[ 69%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/backends/Test_OpenMP_Graph.cpp.o
[ 70%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o
[ 70%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/backends/Test_OpenMP_Blas.cpp.o
[ 70%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp: In function void run_experiment(crsMat_t, typename crsMat_t::values_type::non_const_type, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp:325:24: error: kk_create_blockcrs_formated_point_crsmatrix is not a member of KokkosKernels::Impl
325 | KokkosKernels::Impl::kk_create_blockcrs_formated_point_crsmatrix(
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 71%] Linking CXX executable sparse_spgemm
[ 71%] Linking CXX executable sparse_pcg
[ 71%] Built target sparse_spgemm
[ 71%] Built target sparse_pcg
[ 71%] Linking CXX executable graph_mis_d2
[ 71%] Built target graph_mis_d2
[ 71%] Linking CXX executable graph_color_d2
[ 71%] Linking CXX executable graph_color
[ 71%] Built target graph_color_d2
[ 71%] Built target graph_color
[ 71%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 71%] Built target KokkosKernels_batched_sla_openmp
[ 71%] Linking CXX executable KokkosKernels_common_openmp
[ 71%] Built target KokkosKernels_common_openmp
[ 71%] Linking CXX executable KokkosKernels_graph_openmp
[ 71%] Built target KokkosKernels_graph_openmp
[ 71%] Linking CXX executable KokkosKernels_blas_openmp
[ 71%] Built target KokkosKernels_blas_openmp
[ 71%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 71%] Built target KokkosKernels_batched_dla_openmp
[ 71%] Linking CXX executable KokkosKernels_sparse_openmp
[ 71%] Built target KokkosKernels_sparse_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
# Reproducer instructions:
# Load modules:
source /etc/profile.d/modules.sh
module purge
module load cmake/3.19.3 gcc/10.2.0
$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.32/TestAll_2022-09-28_17.58.20/gcc/10.2.0/OpenMP-release
# To reload modules
source ./reload_modules.sh
# To reconfigure
./call_generate_makefile.sh
# To rebuild
make -j
# To retest
ctest -V
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
Reproducer instructions:
Load modules:
source /etc/profile.d/modules.sh
module purge
module load cmake/3.19.3 gcc/10.2.0
$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.32/TestAll_2022-09-28_17.58.20/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: blake01: 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 # 131 (click to expand)
[ 79%] Built target sparse_pcg
Scanning dependencies of target sparse_spadd
[ 79%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spadd.dir/KokkosSparse_spadd.cpp.o
[ 80%] Linking CXX executable graph_color
[ 80%] Built target graph_color
Scanning dependencies of target sparse_spgemm
[ 80%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spgemm.dir/KokkosSparse_spgemm.cpp.o
[ 80%] Linking CXX executable graph_color_d2
[ 80%] Built target graph_color_d2
Scanning dependencies of target sparse_spmv_struct
[ 81%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
[ 82%] Linking CXX executable sparse_spadd
[ 82%] Built target sparse_spadd
Scanning dependencies of target sparse_spgemm_jacobi
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o
[ 82%] Linking CXX executable sparse_gs
[ 82%] Built target sparse_gs
Scanning dependencies of target sparse_sptrsv
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/KokkosSparse_sptrsv.cpp.o
[ 82%] Linking CXX executable sparse_spgemm
[ 82%] Built target sparse_spgemm
Scanning dependencies of target sparse_sptrsv_supernode
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o
[ 82%] Linking CXX executable sparse_spmv_struct
[ 83%] Linking CXX executable sparse_sptrsv
[ 83%] Built target sparse_spmv_struct
[ 83%] Built target sparse_sptrsv
Scanning dependencies of target sparse_block_pcg
Scanning dependencies of target sparse_spmv_struct_tuning
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct_tuning.dir/KokkosSparse_spmv_struct_tuning.cpp.o
[ 84%] Linking CXX executable KokkosKernels_graph_serial
[ 84%] Built target KokkosKernels_graph_serial
Scanning dependencies of target sparse_kk_spmv
[ 84%] Building CXX object perf_test/sparse/CMakeFiles/sparse_kk_spmv.dir/KokkosSparse_kk_spmv.cpp.o
[ 84%] Linking CXX executable sparse_spgemm_jacobi
[ 84%] Built target sparse_spgemm_jacobi
Scanning dependencies of target sparse_spmv_bsr
[ 84%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_bsr.dir/KokkosSparse_spmv_bsr.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp: In function void run_experiment(crsMat_t, typename crsMat_t::values_type::non_const_type, int):
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp:325:24: error: kk_create_blockcrs_formated_point_crsmatrix is not a member of KokkosKernels::Impl
KokkosKernels::Impl::kk_create_blockcrs_formated_point_crsmatrix(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 84%] Linking CXX executable KokkosKernels_graph_openmp
[ 84%] Built target KokkosKernels_graph_openmp
[ 84%] Linking CXX executable sparse_sptrsv_supernode
[ 84%] Linking CXX executable sparse_spmv_struct_tuning
[ 84%] Built target sparse_sptrsv_supernode
[ 84%] Built target sparse_spmv_struct_tuning
[ 84%] Linking CXX executable KokkosKernels_blas_openmp
[ 84%] Linking CXX executable KokkosKernels_blas_serial
[ 84%] Built target KokkosKernels_blas_openmp
[ 84%] Built target KokkosKernels_blas_serial
[ 84%] Linking CXX executable sparse_spmv_bsr
[ 84%] Built target sparse_spmv_bsr
[ 85%] Linking CXX executable sparse_kk_spmv
[ 85%] Built target sparse_kk_spmv
[ 85%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 85%] Built target KokkosKernels_batched_dla_serial
[ 85%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 85%] Built target KokkosKernels_batched_dla_openmp
[ 85%] Linking CXX executable KokkosKernels_sparse_openmp
[ 85%] Built target KokkosKernels_sparse_openmp
[ 85%] Linking CXX executable KokkosKernels_sparse_serial
[ 85%] Built target KokkosKernels_sparse_serial
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="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas --user-blas-path=/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.131/TestAll_2022-09-28_17.58.30/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: blake02: 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 # 82 (click to expand)
XVector=Kokkos::View, Kokkos::MemoryTraits>, YVector=Kokkos::View, Kokkos::MemoryTraits>, dobeta=0, conjugate=false]" at line 963 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/impl/KokkosSparse_spmv_struct_impl.hpp"
instantiation of "void KokkosSparse::Impl::spmv_struct_beta(const char *, int, const Kokkos::View<:non_const_ordinal_type kokkos::hostspace> &, YVector::const_value_type &, const AMatrix &, const XVector &, YVector::const_value_type &, const YVector &) [with AMatrix=KokkosSparse::CrsMatrix, Kokkos::MemoryTraits, const int>,
XVector=Kokkos::View, Kokkos::MemoryTraits>, YVector=Kokkos::View, Kokkos::MemoryTraits>, dobeta=0]" at line 245 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/impl/KokkosSparse_spmv_struct_spec.hpp"
instantiation of "void KokkosSparse::Impl::SPMV_STRUCT::spmv_struct(const char *, int, const Kokkos::View<:crsmatrix ao ad am as>::non_const_ordinal_type *, Kokkos::HostSpace> &, const KokkosSparse::Impl::SPMV_STRUCT::coefficient_type &, const KokkosSparse::Impl::SPMV_STRUCT::AMatrix &, const KokkosSparse::Impl::SPMV_STRUCT::XVector &, const KokkosSparse::Impl::SPMV_STRUCT::coefficient_type &, const KokkosSparse::Impl::SPMV_STRUCT::YVector &) [with AT=const double, AO=const int, AD=Kokkos::Device<:hostspace::execution_space kokkos::hostspace::memory_space>, AM=Kokkos::MemoryTraits, AS=const int, XT=const double *, XL=Kokkos::LayoutLeft, XD=Kokkos::Device<:hostspace::execution_space kokkos::hostspace::memory_space>, XM=Kokkos::MemoryTraits, YT=double *, YL=Kokkos::LayoutLeft, YD=Kokkos::Device<:hostspace::execution_space kokkos::hostspace::memory_space>, YM=Kokkos::MemoryTraits]" at line 51 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/sparse/eti/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp"
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/src/KokkosSparse_CompressedSparseMatrix.hpp(771): error #3280: declaration hides member "KokkosSparse::CompressedSparseMatrix<ScalarType, OrdinalType, Device, MemoryTraits, SizeType>::values" (declared at line 227)
const values_type& values, const index_type& colidx__,
^
detected during:
instantiation of "KokkosSparse::CompressedSparseMatrix<ScalarType, OrdinalType, Device, MemoryTraits, SizeType>::SparseVectorViewConst KokkosSparse::CompressedSparseMatrix<ScalarType, OrdinalType, Device, MemoryTraits, SizeType>::vectorConst(KokkosSparse::CompressedSparseMatrix<ScalarType, OrdinalType, Device, MemoryTraits, SizeType>::ordinal_type) const [with ScalarType=const double, OrdinalType=const int, Device=Kokkos::Device<Kokkos::HostSpace::execution_space,
Kokkos::HostSpace::memory_space>, MemoryTraits=Kokkos::MemoryTraits<1U>, SizeType=const int]" at line 105 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/impl/KokkosSparse_spmv_struct_impl.hpp"
instantiation of "void KokkosSparse::Impl::SPMV_Struct_Transpose_Functor<AMatrix, XVector, YVector, dobeta, conjugate>::operator()(const KokkosSparse::Impl::SPMV_Struct_Transpose_Functor<AMatrix, XVector, YVector, dobeta, conjugate>::team_member &) const [with AMatrix=KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>, XVector=Kokkos::View<const double *,
Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, YVector=Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, dobeta=0, conjugate=false]" at line 71 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Team.hpp"
instantiation of "std::enable_if_t<, void> Kokkos::Impl::ParallelFor<FunctorType, Kokkos::TeamPolicy<Properties...>, Kokkos::Threads>::exec_team<TagType,Schedule>(const FunctorType &, Kokkos::Impl::ParallelFor<FunctorType, Kokkos::TeamPolicy<Properties...>, Kokkos::Threads>::Member) [with FunctorType=KokkosSparse::Impl::SPMV_Struct_Transpose_Functor<KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space,
Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>, Kokkos::View<const double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, 0, false>, Properties=Kokkos::HostSpace::execution_space,
TagType=Kokkos::Impl::WorkTagTrait::base_traits::work_tag, Schedule=Kokkos::Static]" at line 108 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Team.hpp"
instantiation of "void Kokkos::Impl::ParallelFor<FunctorType, Kokkos::TeamPolicy<Properties...>, Kokkos::Threads>::exec(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=KokkosSparse::Impl::SPMV_Struct_Transpose_Functor<KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>, Kokkos::View<const double *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, 0, false>, Properties=Kokkos::HostSpace::execution_space]" at line 130 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Team.hpp"
instantiation of "void Kokkos::Impl::ParallelFor<FunctorType, Kokkos::TeamPolicy<Properties...>, Kokkos::Threads>::execute() const [with FunctorType=KokkosSparse::Impl::SPMV_Struct_Transpose_Functor<KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>, Kokkos::View<const double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space,
Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, 0, false>, Properties=Kokkos::HostSpace::execution_space]" at line 172 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"
instantiation of "void Kokkos::parallel_for(const std::__cxx11::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::TeamPolicyKokkos::HostSpace::execution_space, FunctorType=KokkosSparse::Impl::SPMV_Struct_Transpose_Functor<KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>, Kokkos::View<const double *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, 0, false>, Enable=void]" at line 944 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/impl/KokkosSparse_spmv_struct_impl.hpp"
instantiation of "void KokkosSparse::Impl::spmv_struct_beta_transpose<AMatrix,XVector,YVector,dobeta,conjugate>(int, const Kokkos::View<AMatrix::non_const_ordinal_type *, Kokkos::HostSpace> &, YVector::const_value_type &, const AMatrix &, const XVector &, YVector::const_value_type &, const YVector &) [with AMatrix=KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>,
XVector=Kokkos::View<const double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, YVector=Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, dobeta=0, conjugate=false]" at line 963 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/impl/KokkosSparse_spmv_struct_impl.hpp"
instantiation of "void KokkosSparse::Impl::spmv_struct_beta<AMatrix,XVector,YVector,dobeta>(const char *, int, const Kokkos::View<AMatrix::non_const_ordinal_type *, Kokkos::HostSpace> &, YVector::const_value_type &, const AMatrix &, const XVector &, YVector::const_value_type &, const YVector &) [with AMatrix=KokkosSparse::CrsMatrix<const double, const int, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>, const int>,
XVector=Kokkos::View<const double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<3U>>, YVector=Kokkos::View<double *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, dobeta=0]" at line 245 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/sparse/impl/KokkosSparse_spmv_struct_spec.hpp"
instantiation of "void KokkosSparse::Impl::SPMV_STRUCT<AT, AO, AD, AM, AS, XT, XL, XD, XM, YT, YL, YD, YM, false, true>::spmv_struct(const char *, int, const Kokkos::View<KokkosSparse::CrsMatrix<AT, AO, AD, AM, AS>::non_const_ordinal_type *, Kokkos::HostSpace> &, const KokkosSparse::Impl::SPMV_STRUCT<AT, AO, AD, AM, AS, XT, XL, XD, XM, YT, YL, YD, YM, false, true>::coefficient_type &, const KokkosSparse::Impl::SPMV_STRUCT<AT, AO, AD, AM, AS, XT, XL, XD, XM, YT, YL, YD, YM, false,
true>::AMatrix &, const KokkosSparse::Impl::SPMV_STRUCT<AT, AO, AD, AM, AS, XT, XL, XD, XM, YT, YL, YD, YM, false, true>::XVector &, const KokkosSparse::Impl::SPMV_STRUCT<AT, AO, AD, AM, AS, XT, XL, XD, XM, YT, YL, YD, YM, false, true>::coefficient_type &, const KokkosSparse::Impl::SPMV_STRUCT<AT, AO, AD, AM, AS, XT, XL, XD, XM, YT, YL, YD, YM, false, true>::YVector &) [with AT=const double, AO=const int, AD=Kokkos::Device<Kokkos::HostSpace::execution_space,
Kokkos::HostSpace::memory_space>, AM=Kokkos::MemoryTraits<1U>, AS=const int, XT=const double *, XL=Kokkos::LayoutLeft, XD=Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, XM=Kokkos::MemoryTraits<3U>, YT=double *, YL=Kokkos::LayoutLeft, YD=Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, YM=Kokkos::MemoryTraits<1U>]" at line 51 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/sparse/eti/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp"
compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/sparse/eti/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 2
compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/Threads-release/sparse/eti/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 2
make[1]: *** [CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-19.5.281-OpenMP-release (build 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=OpenMP --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.82/TestAll_2022-09-28_17.58.41/intel/19.5.281/OpenMP-release
# To reload modules
source ./reload_modules.sh
# To reconfigure
./call_generate_makefile.sh
# To rebuild
make -j
# To retest
ctest -V
#######################################################
intel-19.5.281-Threads-release (build 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.82/TestAll_2022-09-28_17.58.41/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: 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 # 131 (click to expand)
[ 74%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/backends/Test_Threads_Common.cpp.o
[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/backends/Test_Serial_Batched_Sparse.cpp.o
[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/backends/Test_Threads_Batched_Sparse.cpp.o
[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/backends/Test_Serial_Batched_Dense.cpp.o
[ 75%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/backends/Test_Threads_Graph.cpp.o
[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/backends/Test_Threads_Batched_Dense.cpp.o
[ 75%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/backends/Test_Serial_Graph.cpp.o
[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/backends/Test_Serial_Blas.cpp.o
[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_threads.dir/backends/Test_Threads_Blas.cpp.o
[ 76%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o
[ 76%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_threads.dir/backends/Test_Threads_Sparse.cpp.o
[ 77%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 77%] Built target KokkosKernels_batched_sla_threads
Scanning dependencies of target graph_mis_d2
[ 77%] Building CXX object perf_test/graph/CMakeFiles/graph_mis_d2.dir/KokkosGraph_mis_d2.cpp.o
[ 77%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 77%] Built target KokkosKernels_batched_sla_serial
Scanning dependencies of target graph_color_d2
[ 77%] Building CXX object perf_test/graph/CMakeFiles/graph_color_d2.dir/KokkosGraph_color_d2.cpp.o
[ 77%] Linking CXX executable KokkosKernels_common_threads
[ 77%] Built target KokkosKernels_common_threads
Scanning dependencies of target graph_color
[ 77%] Building CXX object perf_test/graph/CMakeFiles/graph_color.dir/KokkosGraph_color.cpp.o
[ 78%] Linking CXX executable KokkosKernels_common_serial
[ 78%] Built target KokkosKernels_common_serial
Scanning dependencies of target sparse_pcg
[ 78%] Building CXX object perf_test/sparse/CMakeFiles/sparse_pcg.dir/KokkosSparse_pcg.cpp.o
[ 79%] Linking CXX executable graph_mis_d2
[ 79%] Built target graph_mis_d2
Scanning dependencies of target sparse_block_pcg
[ 79%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
[ 79%] Linking CXX executable sparse_pcg
[ 79%] Built target sparse_pcg
Scanning dependencies of target sparse_spgemm
[ 79%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spgemm.dir/KokkosSparse_spgemm.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp:325:3: error: no member named 'kk_create_blockcrs_formated_point_crsmatrix' in namespace 'KokkosKernels::Impl'; did you mean 'KokkosSparse::Impl::kk_create_bsr_formated_point_crsmatrix'?
KokkosKernels::Impl::kk_create_blockcrs_formated_point_crsmatrix(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
KokkosSparse::Impl::kk_create_bsr_formated_point_crsmatrix
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/sparse/src/KokkosSparse_Utils.hpp:74:6: note: 'KokkosSparse::Impl::kk_create_bsr_formated_point_crsmatrix' declared here
void kk_create_bsr_formated_point_crsmatrix(
^
1 error generated.
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 80%] Linking CXX executable graph_color
[ 80%] Built target graph_color
[ 80%] Linking CXX executable graph_color_d2
[ 80%] Built target graph_color_d2
[ 80%] Linking CXX executable sparse_spgemm
[ 80%] Built target sparse_spgemm
[ 81%] Linking CXX executable KokkosKernels_graph_threads
[ 81%] Built target KokkosKernels_graph_threads
[ 81%] Linking CXX executable KokkosKernels_graph_serial
[ 81%] Built target KokkosKernels_graph_serial
[ 81%] Linking CXX executable KokkosKernels_blas_threads
[ 81%] Built target KokkosKernels_blas_threads
[ 81%] Linking CXX executable KokkosKernels_blas_serial
[ 81%] Built target KokkosKernels_blas_serial
[ 81%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 81%] Built target KokkosKernels_batched_dla_threads
[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 81%] Built target KokkosKernels_batched_dla_serial
[ 81%] Linking CXX executable KokkosKernels_sparse_threads
[ 81%] Built target KokkosKernels_sparse_threads
[ 81%] Linking CXX executable KokkosKernels_sparse_serial
[ 81%] Built target KokkosKernels_sparse_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
# Reproducer instructions:
# Load modules:
source /etc/profile.d/modules.sh
module purge
module load cmake/3.19.3 clang/10.0.1
$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="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples
To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:
# Move to the build directory
cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.131/TestAll_2022-09-28_17.58.51/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: 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 # 23 (click to expand)
[ 81%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct.dir/KokkosSparse_spmv_struct.cpp.o
[ 82%] Linking CXX executable sparse_spadd
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 82%] Built target sparse_spadd
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spgemm_jacobi.dir/KokkosSparse_spgemm_jacobi.cpp.o
[ 82%] Linking CXX executable sparse_gs
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 82%] Built target sparse_gs
[ 82%] Building CXX object perf_test/sparse/CMakeFiles/sparse_sptrsv.dir/KokkosSparse_sptrsv.cpp.o
[ 83%] Linking CXX executable KokkosKernels_graph_serial
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 83%] Built target KokkosKernels_graph_serial
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_sptrsv_supernode.dir/KokkosSparse_sptrsv_supernode.cpp.o
[ 83%] Linking CXX executable KokkosKernels_blas_serial
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 83%] Built target KokkosKernels_blas_serial
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o
[ 83%] Linking CXX executable sparse_spgemm
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 83%] Built target sparse_spgemm
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_spmv_struct_tuning.dir/KokkosSparse_spmv_struct_tuning.cpp.o
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/perf_test/sparse/KokkosSparse_block_pcg.cpp:325:3: error: no member named 'kk_create_blockcrs_formated_point_crsmatrix' in namespace 'KokkosKernels::Impl'; did you mean 'KokkosSparse::Impl::kk_create_bsr_formated_point_crsmatrix'?
KokkosKernels::Impl::kk_create_blockcrs_formated_point_crsmatrix(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
KokkosSparse::Impl::kk_create_bsr_formated_point_crsmatrix
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/sparse/src/KokkosSparse_Utils.hpp:74:6: note: 'KokkosSparse::Impl::kk_create_bsr_formated_point_crsmatrix' declared here
void kk_create_bsr_formated_point_crsmatrix(
^
[ 83%] Linking CXX executable sparse_spmv_struct
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 83%] Built target sparse_spmv_struct
[ 83%] Building CXX object perf_test/sparse/CMakeFiles/sparse_kk_spmv.dir/KokkosSparse_kk_spmv.cpp.o
1 error generated when compiling for sm_70.
make[2]: *** [perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/build.make:76: perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/KokkosSparse_block_pcg.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:2018: perf_test/sparse/CMakeFiles/sparse_block_pcg.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 84%] Linking CXX executable sparse_sptrsv
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 84%] Built target sparse_sptrsv
[ 84%] Linking CXX executable sparse_spgemm_jacobi
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 84%] Built target sparse_spgemm_jacobi
[ 84%] Linking CXX executable sparse_spmv_struct_tuning
[ 84%] Linking CXX executable sparse_sptrsv_supernode
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 84%] Built target sparse_spmv_struct_tuning
[ 84%] Built target sparse_sptrsv_supernode
[ 84%] Linking CXX executable KokkosKernels_blas_cuda
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 84%] Built target KokkosKernels_blas_cuda
[ 84%] Linking CXX executable KokkosKernels_graph_cuda
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 84%] Built target KokkosKernels_graph_cuda
[ 85%] Linking CXX executable sparse_kk_spmv
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 85%] Built target sparse_kk_spmv
[ 85%] Linking CXX executable KokkosKernels_batched_dla_serial
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 85%] Built target KokkosKernels_batched_dla_serial
[ 85%] Linking CXX executable KokkosKernels_sparse_serial
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 85%] Built target KokkosKernels_sparse_serial
[ 85%] Linking CXX executable KokkosKernels_sparse_cuda
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 85%] Built target KokkosKernels_sparse_cuda
[ 85%] Linking CXX executable KokkosKernels_batched_dla_cuda
/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4
[ 85%] Built target KokkosKernels_batched_dla_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-13.0.0-Cuda-release (build 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.23/TestAll_2022-09-28_17.59.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