Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Spgemm TPL refactor #1618

Merged
merged 32 commits into from
Dec 12, 2022
Merged

Spgemm TPL refactor #1618

merged 32 commits into from
Dec 12, 2022

Conversation

brian-kelley
Copy link
Contributor

@brian-kelley brian-kelley commented Dec 5, 2022

Refactor TPL wrappers for spgemm symbolic/numeric. All backwards compatible from user's point of view, except that we start requiring spgemm input matrices to be sorted. Also now guarantee output to be sorted.

  • Support and test cuSparse (10.x, 11.0-11.3, 11.4+), rocSparse (5.2.0+), and host MKL (19+) through the unification layer
    • Use MKL function mkl_sparse_sp2m to do proper symbolic/numeric separation. Previous 2-phase wrapper used deprecated interface, and previous single phase wrapper had to compute the entire C with dummy values in symbolic.
  • Remove CUSP, ViennaCL spgemm wrappers entirely
  • Deprecate algorithm enum constants SPGEMM_CUSPARSE, SPGEMM_MKL, SPGEMM_MKL2PHASE, SPGEMM_ROCSPARSE since the TPLs will be called automatically whenever available.
  • Add option to force spgemm_symbolic to compute C's rowptrs (false by default). Some TPLs (like newer cuSparse) count C's nonzeros without populating its rowptrs, so it's more efficient to let numeric populate rowptrs.
    • For spgemm_jacobi and bspgemm_numeric, the symbolic TPL might be available (same as regular spgemm) but numeric won't be. Use this mode to compute rowptrs automatically if they haven't already (handle tracks this) while minimizing redundant work.
    • Some other information about flops per row and max C entries per row is also required. Compute this once lazily, and cache in handle.
  • Test spgemm with matrix dimensions m, n, k all distinct. Before only square times square was tested
  • Actually test reuse case, where A,B values change and numeric is called again.
  • In spgemm test, make sure handle state is correct after each phase
  • Tweak fuzzy view comparison (kk_is_relatively_identical_view) to be more tolerant when one or both values being compared is close to zero (i.e. the result of summing many terms that mostly cancel out). If absolute value from both views is less than epsilon, assume they match. And when getting the relative error, divide by the sum of magnitudes, not just the magnitude from the second view (makes the relation symmetric). Print out a message for every pair of values that doesn't match to aid debugging.
  • Do not instantiate spgemm_numeric twice (once with const-valued C rowptrs, once with nonconst). Instead, only use const and cast away constness internally where TPLs expect it to be nonconst. Users can still pass in const or nonconst.

@brian-kelley brian-kelley added enhancement Cleanup Code maintenance that isn't a bugfix or new feature labels Dec 5, 2022
@brian-kelley brian-kelley self-assigned this Dec 5, 2022
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 180
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 188
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 141
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 140
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 103
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 190
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 239
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 125
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 19
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 19
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 26
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (brian-kelley/kokkos-kernels)
  • Branch: SpgemmRefactor2
  • SHA: dece8ab
  • Mode: TEST_REPO

Pull Request Author: brian-kelley

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 180
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 188
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 141
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 140
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 103
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 190
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 239
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 125
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 19
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 19
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 26
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA dece8ab
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 180 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930] $ /bin/bash -el /tmp/jenkins1183400289717461765.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
***Forced exclusive execution
Job <48497> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  dece8abfc54c2514a5ad8798ddfe31d93cab99f8 Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/SpgemmRefactor2^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (refs/remotes/origin/SpgemmRefactor2)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins14996676698686963215.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
***Forced exclusive execution
Job <48498> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  dece8abfc54c2514a5ad8798ddfe31d93cab99f8 Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins3887486960836542499.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins2680918266480678659.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins794505444368323934.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins7652406382531717496.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins8754759797774588354.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_CLANG13CUDA10] $ /bin/bash -el /tmp/jenkins10085701768331567855.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
***Forced exclusive execution
Job <48499> is submitted to default queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  dece8abfc54c2514a5ad8798ddfe31d93cab99f8 Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

 > git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110] $ /bin/bash -el /tmp/jenkins6085794414794294941.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2604
Running on machine: inouye
KokkosKernels Repository Status: dece8abfc54c2514a5ad8798ddfe31d93cab99f8 Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

 > git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
Checking out Revision dece8abfc54c2514a5ad8798ddfe31d93cab99f8 (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
Commit message: "Apply formatting"
 > git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins7817289726836317763.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2605
Running on machine: inouye
KokkosKernels Repository Status: dece8abfc54c2514a5ad8798ddfe31d93cab99f8 Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
 > git rev-parse origin/dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
 > git rev-parse dece8abfc54c2514a5ad8798ddfe31d93cab99f8^{commit} # timeout=10
ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job.
Finished: FAILURE

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 181
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 189
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 142
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 141
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 104
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 191
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 240
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 126
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 20
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 20
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 27
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (brian-kelley/kokkos-kernels)
  • Branch: SpgemmRefactor2
  • SHA: fa717e3
  • Mode: TEST_REPO

Pull Request Author: brian-kelley

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 181
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 189
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 142
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 141
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 104
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 191
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 240
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 126
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 20
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 20
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 27
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA fa717e3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 181 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930] $ /bin/bash -el /tmp/jenkins3572494735888315134.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
***Forced exclusive execution
Job <48502> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  fa717e37cb3a5c15736d13b62ebcee4df6c4a91e Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/SpgemmRefactor2^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (refs/remotes/origin/SpgemmRefactor2)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins4550705435419534153.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
***Forced exclusive execution
Job <48503> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  fa717e37cb3a5c15736d13b62ebcee4df6c4a91e Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins2152144764371584070.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins5022326543590853774.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins3781704759450693255.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins1063717645723332327.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins5883472838562670616.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CLANG13CUDA10] $ /bin/bash -el /tmp/jenkins8113006819227212370.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
***Forced exclusive execution
Job <48504> is submitted to default queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  fa717e37cb3a5c15736d13b62ebcee4df6c4a91e Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

 > git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110] $ /bin/bash -el /tmp/jenkins2589465639794954461.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2606
Running on machine: inouye
KokkosKernels Repository Status: fa717e37cb3a5c15736d13b62ebcee4df6c4a91e Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

 > git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > git rev-list --no-walk dece8abfc54c2514a5ad8798ddfe31d93cab99f8 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins2058826490351147533.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2607
Running on machine: inouye
KokkosKernels Repository Status: fa717e37cb3a5c15736d13b62ebcee4df6c4a91e Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse fa717e37cb3a5c15736d13b62ebcee4df6c4a91e^{commit} # timeout=10
Checking out Revision fa717e37cb3a5c15736d13b62ebcee4df6c4a91e (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
Commit message: "Apply formatting"
 > git rev-list --no-walk 841538a16776c7263b727e717167b901314ee724 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk ffb50a5319ec417b769a6889922d021250c0265f # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins8744726048731117835.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  fa717e37cb3a5c15736d13b62ebcee4df6c4a91e Apply formatting

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 182
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 190
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 143
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 142
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 105
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 192
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 241
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 127
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 21
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 21
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 28
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (brian-kelley/kokkos-kernels)
  • Branch: SpgemmRefactor2
  • SHA: 6c337a7
  • Mode: TEST_REPO

Pull Request Author: brian-kelley

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 182
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 190
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 143
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 142
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 105
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 192
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 241
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 127
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 21
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 21
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 28
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6c337a7
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 182 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930] $ /bin/bash -el /tmp/jenkins16847398098694554250.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930
***Forced exclusive execution
Job <48506> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  6c337a7a2effc409c6f1f6361cf23554888d423d Revert moving old spgemm interface out of Experimental::

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/SpgemmRefactor2^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (refs/remotes/origin/SpgemmRefactor2)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins6261945740427510249.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
***Forced exclusive execution
Job <48507> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  6c337a7a2effc409c6f1f6361cf23554888d423d Revert moving old spgemm interface out of Experimental::

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins3939224468678204822.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins5611433448323318805.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins1657135870231260388.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins2663691117948347460.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins2733436744736663533.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CLANG13CUDA10] $ /bin/bash -el /tmp/jenkins11551349892304421746.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10
***Forced exclusive execution
Job <48508> is submitted to default queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  6c337a7a2effc409c6f1f6361cf23554888d423d Revert moving old spgemm interface out of Experimental::

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

 > git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110] $ /bin/bash -el /tmp/jenkins7365143045928990657.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2608
Running on machine: inouye
KokkosKernels Repository Status: 6c337a7a2effc409c6f1f6361cf23554888d423d Revert moving old spgemm interface out of Experimental::

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

 > git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins5291704848086226903.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

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

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 2609
Running on machine: inouye
KokkosKernels Repository Status: 6c337a7a2effc409c6f1f6361cf23554888d423d Revert moving old spgemm interface out of Experimental::

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse 6c337a7a2effc409c6f1f6361cf23554888d423d^{commit} # timeout=10
Checking out Revision 6c337a7a2effc409c6f1f6361cf23554888d423d (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > git rev-list --no-walk fa717e37cb3a5c15736d13b62ebcee4df6c4a91e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins6249143973206114685.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch                develop    -> FETCH_HEAD
Already up to date.
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  6c337a7a2effc409c6f1f6361cf23554888d423d Revert moving old spgemm interface out of Experimental::

Kokkos Repository Status: cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 Check compatibility of execution space and memory space in View creation (#5544)

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 183
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 191
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 144
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 143
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 106
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 193
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 242
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 128
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 22
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 22
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 29
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (brian-kelley/kokkos-kernels)
  • Branch: SpgemmRefactor2
  • SHA: a172579
  • Mode: TEST_REPO

Pull Request Author: brian-kelley

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 183
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 191
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 144
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 143
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 106
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 193
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 242
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 128
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 22
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 22
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 29
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a172579
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 39503ff
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 183 (click to expand)

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

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

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

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

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

Reproducer instructions:

Load modules:

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

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

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

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

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

Reproducer instructions:

Load modules:

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

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

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

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

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

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

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

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

92% tests passed, 2 tests failed out of 25

Total Test time (real) = 3145.11 sec

The following tests FAILED:
11 - graph_cuda (Subprocess aborted)
12 - graph_openmp (Timeout)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.191/TestAll_2022-12-05_15.09.03/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 # 144 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse a172579d3200539444b8b794f63960c2d8dee5c5^{commit} # timeout=10
Checking out Revision a172579d3200539444b8b794f63960c2d8dee5c5 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a172579d3200539444b8b794f63960c2d8dee5c5 # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins6554296214249454696.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse a172579d3200539444b8b794f63960c2d8dee5c5^{commit} # timeout=10
Checking out Revision a172579d3200539444b8b794f63960c2d8dee5c5 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a172579d3200539444b8b794f63960c2d8dee5c5 # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins5514526299034640863.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse a172579d3200539444b8b794f63960c2d8dee5c5^{commit} # timeout=10
Checking out Revision a172579d3200539444b8b794f63960c2d8dee5c5 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a172579d3200539444b8b794f63960c2d8dee5c5 # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins2290050833586437590.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse a172579d3200539444b8b794f63960c2d8dee5c5^{commit} # timeout=10
Checking out Revision a172579d3200539444b8b794f63960c2d8dee5c5 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a172579d3200539444b8b794f63960c2d8dee5c5 # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins4831610404874486519.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/brian-kelley/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/brian-kelley/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/brian-kelley/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse a172579d3200539444b8b794f63960c2d8dee5c5^{commit} # timeout=10
Checking out Revision a172579d3200539444b8b794f63960c2d8dee5c5 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a172579d3200539444b8b794f63960c2d8dee5c5 # timeout=10
Commit message: "Revert moving old spgemm interface out of Experimental::"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 6c337a7a2effc409c6f1f6361cf23554888d423d # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
Commit message: "Check compatibility of execution space and memory space in View creation (#5544)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk cd99be4b3d88c3f0dc3c65fb2f38e94e06f21b02 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins6602622819176408421.sh
From https://github.com/brian-kelley/kokkos-kernels
 * branch            develop    -> FETCH_HEAD
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
srun: error: task 0 launch failed: Slurmd could not execve job
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

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

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

92% tests passed, 2 tests failed out of 25

Total Test time (real) = 709.13 sec

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

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 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=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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.128/TestAll_2022-12-05_15.10.03/clang/13.0.0/Cuda-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

17/18 Test #17: gmres_test_real_A ................   Passed    0.08 sec
test 18
      Start 18: gmres_test_prec

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

94% tests passed, 1 tests failed out of 18

Total Test time (real) = 261.30 sec

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

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.22/TestAll_2022-12-05_15.10.14/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.22/TestAll_2022-12-05_15.10.14/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

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

25: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.22/TestAll_2022-12-05_15.10.24/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
25: Test timeout computed to be: 2500
25: Convergence tolerance is: 1e-10
25: Ending relative residual is: 3.48957e-14
25: =========================================
25: Verify from main: Ending residual is 3.48957e-14
25: Number of iterations is: 1
25: Diff of residual from main - residual from solver: 0
25: Convergence flag is : Converged
25: Test passed!
25/25 Test #25: gmres_test_prec .................. Passed 0.03 sec

92% tests passed, 2 tests failed out of 25

Total Test time (real) = 5564.89 sec

The following tests FAILED:
11 - graph_serial (SEGFAULT)
12 - graph_openmp (Timeout)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.22/TestAll_2022-12-05_15.10.24/gcc/10.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

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

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

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

25: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.29/TestAll_2022-12-05_15.10.30/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec
25: Test timeout computed to be: 2500
25: Convergence tolerance is: 1e-10
25: Ending relative residual is: 3.48957e-14
25: =========================================
25: Verify from main: Ending residual is 3.48957e-14
25: Number of iterations is: 1
25: Diff of residual from main - residual from solver: 0
25: Convergence flag is : Converged
25: Test passed!
25/25 Test #25: gmres_test_prec .................. Passed 0.36 sec

92% tests passed, 2 tests failed out of 25

Total Test time (real) = 3077.04 sec

The following tests FAILED:
11 - graph_hip (Timeout)
12 - graph_serial (Subprocess aborted)
Errors while running CTest
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release (test failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module load cmake/3.19.3 rocm/5.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3 " --cxxstandard="17" --ldflags="" --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.29/TestAll_2022-12-05_15.10.30/rocm/5.2.0/Hip_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: caraway06: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Split symbolic, numeric, fused-jacobi into separate TPL avail/decl
files.
- Symbolic now backwards compatible with bspgemm_numeric and
  spgemm_jacobi
- Remove mentions of deprecated enum value SPGEMM_MKL and SPGEMM_MKL2PHASE
- Add MKL wrapper under unification layer with correct symbolic/numeric separation
- Remove SPGEMM_CUSP and SPGEMM_VIENNA enum values
<rocblas.h> is deprecated and throws warnings; now we have to use <rocblas/rocblas.h>
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

It was causing SPGEMM_KK_LP (a completely differnet, parallel algo)
to be used, rather than SPGEMM_DEBUG (the host serial reference
implementation).
@brian-kelley
Copy link
Contributor Author

@e10harvey Thanks for the review, I just pushed your suggestions.

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 191
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 199
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 152
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 114
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 201
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 250
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 136
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 30
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 30
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 37
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (brian-kelley/kokkos-kernels)
  • Branch: SpgemmRefactor2
  • SHA: a5e8a47
  • Mode: TEST_REPO

Pull Request Author: brian-kelley

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 191
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 199
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 152
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 151
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 114
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 201
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 250
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 136
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 30
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 30
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 37
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH SpgemmRefactor2
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA a5e8a47
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA d5ae5ce
PR_LABELS enhancement;Cleanup
PULLREQUESTNUM 1618
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

2 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@jczhang07
Copy link
Contributor

@brian-kelley

All backwards compatible from user's point of view, except that we start requiring spgemm input matrices to be sorted.

Does symbolic phase populate column indices?

@brian-kelley
Copy link
Contributor Author

@jczhang07 No, symbolic only counts nonzeros by default (so that the user can control the allocation of entries/values), but it will also populate rowptrs if you set the new last parameter computeRowptrs=true (false by default).

@brian-kelley
Copy link
Contributor Author

brian-kelley commented Dec 20, 2022

I'll add, another reason to not populate entries in symbolic is that none of the TPLs supported yet can save time by just doing values in numeric. (MKL sp2m does have a mode to just do values, but it turns out sp2m also doesn't sort the matrix by default, so we can't re-use the entries because after we sort, they are permuted differently than MKL expects). And then the native KK implementation still always does entries+values together.

In the future though, if a TPL or our own impl comes along that can just do values, the logic could look like this:

  • symbolic
    • count nnz
  • numeric (call 1)
    • compute rowptrs, entries, values
  • numeric (call 2...n), distinguished from the first call by checking handle->are_entries_computed()
    • just recompute values

@jczhang07
Copy link
Contributor

jczhang07 commented Dec 20, 2022

@brian-kelley Does that mean one has to call the numeric phase to get column indices (even matrix values might not be ready for numeric computation at that moment)?

BTW, I think rocsparse spgemm has intuitive APIs, https://rocsparse.readthedocs.io/en/latest/usermanual.html#rocsparse-csrgemm-numeric, whose symbolic phase fills column indices.

@jczhang07
Copy link
Contributor

I think you have weakened the meaning of symbolic. Usually we regard it as "except numeric values, all things are set up".

Usually when users are doing higher-level symbolic computation, matrix value arrays might have not been allocated yet, or even allocated, they contain garbage values. Thus users have to refactor their code to use the current spgemm_symbolic, which is difficult.

@lucbv
Copy link
Contributor

lucbv commented Dec 20, 2022

@jczhang07 we agree with what you are saying but again we do not have TPL support for a true symbolic calculation.
Additionally computing the graph of the result is about as expensive as computing the full matrix. In general we are leaning toward the following approach:

if(first_call_to_spgemm) {
  compute C from scratch
} else {
  compute C re-using the graph we already built
}

but it is not supported yet by us or the TPLs

@jczhang07
Copy link
Contributor

@lucbv

we do not have TPL support for a true symbolic calculation.

No, see rocsparse_csrgemm_symbolic()

@brian-kelley
Copy link
Contributor Author

OK sorry, I was incorrect here about rocsparse but the code in the numeric wrapper is correct - it only calls rocsparse_csrgemm_symbolic on the first call, after the user has had a chance to allocate the entries to the right size.

@jczhang07
Copy link
Contributor

Also, see discussion at NVIDIA/CUDALibrarySamples#84

cusparseSpGEMMreuse_copy() acts like a symbolic phase and sets up the column indices.

cusparseSpGEMMreuse_compute() is only for numeric computation.

@jczhang07
Copy link
Contributor

jczhang07 commented Dec 20, 2022

I think rocsparse's API is the right way to go. If users only need to do spgemm once, then they call rocsparse_csrgemm(), which combines symbolic and numeric; otherwise, you can assume users can afford doing a fake numeric computation in the symbolic phase to get matrix structure set up, and users will do " 1 symbolic (with 1 fake numeric) + N numeric" happily :)

@brian-kelley
Copy link
Contributor Author

brian-kelley commented Dec 20, 2022

Usually when users are doing higher-level symbolic computation, matrix value arrays might have not been allocated yet, or even allocated, they contain garbage values. Thus users have to refactor their code to use the current spgemm_symbolic, which is difficult.

I think there's a misunderstanding of the changes in this PR, I didn't make any major changes to what the KokkosKernels symbolic and numeric do.

  • symbolic: Inputs are A, B rowptrs and entries. Outputs are C nonzero count, and optionally C rowptrs.
  • numeric: inputs are A, B rowptrs, entries, values. Outputs are C rowptrs, entries, and values. Populating C rowptrs is skipped if that was done already. Same for entries; it's only populated if it hasn't been done before (i.e. in a previous numeric call).

cusparseSpGEMMreuse_copy() acts like a symbolic phase and sets up the column indices.

This is true, but when you call that you still must set all of C's CSR pointers (rowptrs, entries, values). You must set all 3 - leaving values NULL is not allowed (I just tried it on cuSparse 11.6), and got

[bmkelle@s1042556 sparse]$ ./KokkosKernels_wiki_spgemm 
 ** On entry to cusparseCsrSetPointers() parameter number 4 (csrValues) had an illegal value: NULL pointer

terminate called after throwing an instance of 'std::runtime_error'
  what():  cusparseCsrSetPointers(h->descr_C, (void *)row_mapC.data(), (void *)entriesC.data(), NULL) error( CUSPARSE_STATUS_INVALID_VALUE): invalid value /ascldap/users/bmkelle/KK_Clean/kokkos-kernels/sparse/tpls/KokkosSparse_spgemm_numeric_tpl_spec_decl.hpp:125

so this means that in cuSparse, C's values must be allocated before populating C's entries.

I agree that rocSparse has the best interface of all of these, and it could easily compute entries in symbolic. I could provide the function symbolic2, which was actually my plan before I worked through this refactor:

  • symbolic: count C nonzeros
  • users allocate C entries
  • symbolic2: populate C entries
  • users allocate C values
  • numeric: populate C values

But I cannot currently provide an efficient implementation of this for KK (our own impl), MKL or cuSparse. Only rocSparse makes this way efficient.

The code from this PR, using one call to symbolic and many calls to numeric, is as efficient as possible on all of these with no redundant work.

If more redundant work is acceptable, then I could still provide that symbolic2, though. For if you really just need the graph of C and not its values. But this wouldn't make sense (for impls besides rocSparse) if you ever plan on computing C's values. I do still plan on adding a non-reuse interface that computes all of C as quickly as possible, with no intent to reuse the handle.

@jczhang07
Copy link
Contributor

jczhang07 commented Dec 20, 2022

this means that in cuSparse, C's values must be allocated before populating C's entries.

True, but you don't need to assign meaningful values to C.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Cleanup Code maintenance that isn't a bugfix or new feature enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants