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

Clean up CrsMatrix raw pointer constructor #949

Merged
merged 2 commits into from
May 4, 2021

Conversation

brian-kelley
Copy link
Contributor

Before, it was converting a rowmap to non-prefix-summed row counts
and passing that to StaticCrsGraph, which had to do the prefix sum
again. This PR just uses unmanaged views instead, with minimal copies and allocations.

Before, it was converting a rowmap to non-prefix-summed row counts
and passing that to StaticCrsGraph, which had to do the prefix sum
again.

Also was causing build error on Tpetra HIP.
@brian-kelley brian-kelley added the Cleanup Code maintenance that isn't a bugfix or new feature label Apr 30, 2021
@brian-kelley brian-kelley self-assigned this Apr 30, 2021
@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_GCC720

  • Build Num: 198
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 191
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 177
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 211
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 175
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 172
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 170
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

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

Pull Request Author: brian-kelley

Copy link
Contributor

@e10harvey e10harvey left a comment

Choose a reason for hiding this comment

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

Thanks, @brian-kelley! Everything looks great. Please see a couple comments below.

src/sparse/KokkosSparse_CrsMatrix.hpp Show resolved Hide resolved
unit_test/sparse/Test_Sparse_CrsMatrix.hpp Show resolved Hide resolved
Randomize scalars, verify rowmap/entries/values
@brian-kelley brian-kelley requested a review from e10harvey April 30, 2021 19:03
@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 = 6bb85dd Does not match the current commit SHA = 9ebbbd9. 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_GCC720

  • Build Num: 198
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 191
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 177
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 211
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 175
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 172
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 170
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bb85dd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720 # 198 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake/workspace/KokkosKernels_PullRequest_GCC720
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --is-inside-work-tree # 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 refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /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 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --is-inside-work-tree # 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 4df09798f85f2318e9da3087f02b1eca5aaa5d34 (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 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
Commit message: "Merge pull request #3982 from dalg24/prefer_std_type_traits"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
[KokkosKernels_PullRequest_GCC720] $ /bin/bash -el /tmp/jenkins7912746504577561555.sh
salloc: Pending job allocation 1012215
salloc: job 1012215 queued and waiting for resources
salloc: job 1012215 has been allocated resources
salloc: Granted job allocation 1012215
Running on machine: blake
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 4df09798f85f2318e9da3087f02b1eca5aaa5d34 Merge pull request #3982 from dalg24/prefer_std_type_traits

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_GCC720
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --is-inside-work-tree # 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 refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /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 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --is-inside-work-tree # 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 4df09798f85f2318e9da3087f02b1eca5aaa5d34 (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 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
Commit message: "Merge pull request #3982 from dalg24/prefer_std_type_traits"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720] $ /bin/bash -el /tmp/jenkins4299791015998368004.sh
salloc: Pending job allocation 1012216
salloc: job 1012216 queued and waiting for resources
salloc: job 1012216 has been allocated resources
salloc: Granted job allocation 1012216
Running on machine: blake
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 4df09798f85f2318e9da3087f02b1eca5aaa5d34 Merge pull request #3982 from dalg24/prefer_std_type_traits

Going to test compilers: gcc/7.2.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release build_time=626 run_time=167
salloc: Relinquishing job allocation 1012216
salloc: Job allocation 1012216 has been revoked.
/home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_GCC720
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --is-inside-work-tree # 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 refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /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 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --is-inside-work-tree # 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 84ff7f1^{commit} # timeout=10
Checking out Revision 84ff7f13ce93b2e5b65fb842beb5b6c33860502c (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 84ff7f13ce93b2e5b65fb842beb5b6c33860502c # timeout=10
Commit message: "Merge pull request #3926 from masterleinad/fix_undefined_reference_testteam_vector"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 84ff7f13ce93b2e5b65fb842beb5b6c33860502c # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL18] $ /bin/bash -el /tmp/jenkins3105640752819960306.sh
salloc: Pending job allocation 1012214
salloc: job 1012214 queued and waiting for resources
salloc: job 1012214 has been allocated resources
salloc: Granted job allocation 1012214
Running on machine: blake
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 84ff7f13ce93b2e5b65fb842beb5b6c33860502c Merge pull request #3926 from masterleinad/fix_undefined_reference_testteam_vector

Going to test compilers: intel/18.1.163
Testing compiler intel/18.1.163
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -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
../kokkos-kernels/scripts/cm_test_all_sandia: line 1274: 340208 Terminated sleep 1
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 4df09798f85f2318e9da3087f02b1eca5aaa5d34 (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
Commit message: "Merge pull request #3982 from dalg24/prefer_std_type_traits"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
[KokkosKernels_PullRequest_GCC720_Light] $ /bin/bash -el /tmp/jenkins5644534540817208288.sh
***Forced exclusive execution
Job <74481> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 4df09798f85f2318e9da3087f02b1eca5aaa5d34 Merge pull request #3982 from dalg24/prefer_std_type_traits

Going to test compilers: gcc/7.2.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
Starting job gcc-7.2.0-Serial-release
kokkos devices: Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-Serial-release
Starting job gcc-7.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=207 run_time=70
gcc-7.2.0-OpenMP_Serial-release build_time=258 run_time=195
gcc-7.2.0-Serial-release build_time=194 run_time=82
/home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 4df09798f85f2318e9da3087f02b1eca5aaa5d34 (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
Commit message: "Merge pull request #3982 from dalg24/prefer_std_type_traits"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins7916386599083868276.sh
***Forced exclusive execution
Job <74482> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 4df09798f85f2318e9da3087f02b1eca5aaa5d34 Merge pull request #3982 from dalg24/prefer_std_type_traits

Going to test compilers: cuda/10.1.105
Testing compiler cuda/10.1.105
Unrecognized compiler cuda/10.1.105 when looking for Spack variants
Unrecognized compiler cuda/10.1.105 when looking for Spack variants
Unrecognized compiler cuda/10.1.105 when looking for Spack variants
Starting job cuda-10.1.105-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options: ,enable_lambda
kokkos cxxflags: -O3 -Wall -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_Tpls_CUDA9 # 172 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 4df09798f85f2318e9da3087f02b1eca5aaa5d34 (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
Commit message: "Merge pull request #3982 from dalg24/prefer_std_type_traits"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins3954778969769115383.sh
***Forced exclusive execution
Job <74483> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 4df09798f85f2318e9da3087f02b1eca5aaa5d34 Merge pull request #3982 from dalg24/prefer_std_type_traits

Going to test compilers: cuda/9.2.88
Testing compiler cuda/9.2.88
Unrecognized compiler cuda/9.2.88 when looking for Spack variants
Unrecognized compiler cuda/9.2.88 when looking for Spack variants
Unrecognized compiler cuda/9.2.88 when looking for Spack variants
Starting job cuda-9.2.88-Cuda_OpenMP-release
kokkos devices: Cuda,OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options: force_uvm,enable_lambda
kokkos cxxflags: -O3 -Wall -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_Tpls_GCC720_GCC740 # 170 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/CrsRawPtrCtor^{commit} # timeout=10
Checking out Revision 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 (refs/remotes/origin/CrsRawPtrCtor)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 6bb85ddb58a525f5550f66625c5d8e801a2f41b1 # timeout=10
Commit message: "Clean up CrsMatrix raw pointer constructor"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/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/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 4df09798f85f2318e9da3087f02b1eca5aaa5d34 (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
Commit message: "Merge pull request #3982 from dalg24/prefer_std_type_traits"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 4df09798f85f2318e9da3087f02b1eca5aaa5d34 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720_GCC740] $ /bin/bash -el /tmp/jenkins6297035015185335626.sh
***Forced exclusive execution
Job <74484> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  6bb85ddb58a525f5550f66625c5d8e801a2f41b1 Clean up CrsMatrix raw pointer constructor

Kokkos Repository Status: 4df09798f85f2318e9da3087f02b1eca5aaa5d34 Merge pull request #3982 from dalg24/prefer_std_type_traits

Going to test compilers: gcc/7.2.0 gcc/7.4.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-Serial-release
kokkos devices: Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-Serial-release
Testing compiler gcc/7.4.0
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Starting job gcc-7.4.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.4.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=210 run_time=72
gcc-7.2.0-Serial-release build_time=182 run_time=81
gcc-7.4.0-OpenMP-release build_time=213 run_time=72
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
Finished: SUCCESS

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

  • Build Num: 199
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 192
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 178
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 212
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 176
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 173
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 171
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (brian-kelley/kokkos-kernels)
  • Branch: CrsRawPtrCtor
  • SHA: 9ebbbd9
  • 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_GCC720

  • Build Num: 199
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 192
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 178
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 212
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 176
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 173
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 171
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH CrsRawPtrCtor
KOKKOSKERNELS_SOURCE_REPO https://github.com/brian-kelley/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9ebbbd9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aad2a73
PULLREQUESTNUM 949
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

3 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

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

This looks OK to me @e10harvey anymore comments?

@kokkos-devops-admin
Copy link

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

@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

Copy link
Contributor

@e10harvey e10harvey left a comment

Choose a reason for hiding this comment

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

@lucbv: I do not.

@brian-kelley: Thanks for clarifying the data race and updating the unit test.

@brian-kelley brian-kelley merged commit d2a553b into kokkos:develop May 4, 2021
@brian-kelley brian-kelley deleted the CrsRawPtrCtor branch May 4, 2021 15:45
brian-kelley added a commit to brian-kelley/kokkos-kernels that referenced this pull request May 11, 2021
ndellingwood added a commit that referenced this pull request May 12, 2021
Cherry pick #949: fix CrsMatrix raw ptr ctor
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 patch-release-cherry-pick
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants