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

Warnings: remove -Wunused-parameter warnings in Kokkos Kernels #962

Merged
merged 6 commits into from
May 10, 2021

Conversation

lucbv
Copy link
Contributor

@lucbv lucbv commented May 6, 2021

To have Kokkos Kernels in line with Kokkos flags we should be able to build without unused-parameter warnings.
I am somewhat surprised that these flags from Kokkos are not picked up by our builds?
This PR is fairly large but actually has very minor impact on the code base as it primarily comments unused function parameters... but it also reveals a few strange and worrisome patterns like not setting/checking test results.
Also I spotted a bug where an int is declared as a bool, see below:

void kk_get_lower_triangle_fill_parallel(
     const lno_t nv,
     const size_type ne,
     const size_type *in_xadj,
     const lno_t *in_adj,
     const scalar_t *in_vals,
     size_type *out_xadj,
     lno_t *out_adj,
     scalar_t *out_vals,
     const lno_t *new_indices = NULL,
     bool use_dynamic_scheduling = false,
     bool chunksize = 4,
     bool is_lower = true
     )

Maybe more testing on other platform should be performed with this warning turned on.
If you have any comments as to how things should be done let me know.
With these changes I can build with -Werror -Wunused-parameter on tulip with clang-12, I will setup a build that reproduces the auto-tester config using these flags to see if we could set these on in CI testing.

… too

To have Kokkos Kernels in line with Kokkos flags we should be able
to build without unused-parameter warnings. These changes are making
are making this possible using clang-12. Maybe more testing on other
platform should be performed with this warning turned on.
@lucbv lucbv added the Cleanup Code maintenance that isn't a bugfix or new feature label May 6, 2021
@lucbv lucbv self-assigned this May 6, 2021
This was confusing Github syntax highlighting
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, @lucbv

@@ -68,7 +68,7 @@ namespace KokkosBlas {
void SerialTrmm_Invoke (const char side[],
const char uplo[],
const char trans[],
const char diag[],
const char /*diag*/[],
Copy link
Contributor

Choose a reason for hiding this comment

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

identation typo

Comment on lines 308 to 309
std::ostream &out,
//Teuchos::FancyOStream& out,
Copy link
Contributor

Choose a reason for hiding this comment

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

identation typo

Comment on lines 389 to 390
std::ostream &/*out*/,
//Teuchos::FancyOStream& /* out */,
Copy link
Contributor

Choose a reason for hiding this comment

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

indentation typo

@e10harvey
Copy link
Contributor

With these changes I can build with -Werror -Wunused-parameter on tulip with clang-12, I will setup a build that reproduces the auto-tester config using these flags to see if we could set these on in CI testing.

@lucbv, I think they can be added to the GCC flags in cm_test_all.

@@ -249,20 +253,24 @@ void __do_trmm_serial_blas(options_t options, trmm_args_t trmm_args) {
Kokkos::fence();
}
__trmm_output_csv_row(options, trmm_args, timer.seconds());
return;
Copy link
Contributor

Choose a reason for hiding this comment

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

A lot of these blas3 perf tests have return statements at the end of void functions - are they necessary?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Actually I believe that both return; and return void(); are valid in a void function, it's just a stylistic preference so I don't really see the need to remove these either?
If you feel strongly we could add a guideline on that for developers (I actually don't feel strongly anyway) :p
The only one that is actually needed and can be void is this one:

template <class T>
T fun() {
  return T();
}

See stackoverflow

Copy link
Contributor

Choose a reason for hiding this comment

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

Oh sure, it's valid, I was just thinking that we could remove a few lines of code. It's definitely not a big deal though.

perf_test/sparse/KokkosSparse_sptrsv_cholmod.cpp Outdated Show resolved Hide resolved
perf_test/sparse/KokkosSparse_sptrsv_superlu.cpp Outdated Show resolved Hide resolved
perf_test/sparse/KokkosSparse_sptrsv_superlu.cpp Outdated Show resolved Hide resolved
perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp Outdated Show resolved Hide resolved
perf_test/sparse/KokkosSparse_sptrsv_supernode.cpp Outdated Show resolved Hide resolved
src/common/KokkosKernels_HashmapAccumulator.hpp Outdated Show resolved Hide resolved
src/common/KokkosKernels_IOUtils.hpp Outdated Show resolved Hide resolved
@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_Light

  • Build Num: 219
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 183
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 180
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 178
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: remove_unused_parameters
  • SHA: 710d66d
  • Mode: TEST_REPO

Pull Request Author: lucbv

@brian-kelley
Copy link
Contributor

@lucbv There's probably a lot of really old stuff in the Utils files like the example you had (kk_get_lower_triangle_fill_parallel and kk_get_lower_triangle_fill*) which are not used anywhere. I think we could deprecate a lot of that.

I just ran clang-format on the badly formatted files.
I removed function arguments from `main(int, argv**)`
as they are really not justified and also added space
between pointers and comments to make github happy.
@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 = 710d66d Does not match the current commit SHA = b2b2ead. 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_Light

  • Build Num: 219
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 183
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 180
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 178
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 710d66d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 219 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision 710d66da0611b160fd1f66cce7254f84346ee117 (refs/remotes/origin/remove_unused_parameters)
 > /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 710d66da0611b160fd1f66cce7254f84346ee117 # timeout=10
Commit message: "Add a space between pointer * and C-style comment"
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 3efc1768ebd926bed2f6bc98854898c5eb894b75 (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 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
Commit message: "Merge pull request #4002 from junghans/patch-3"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
[KokkosKernels_PullRequest_GCC720_Light] $ /bin/bash -el /tmp/jenkins5840298172270424748.sh
***Forced exclusive execution
Job <74710> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  710d66da0611b160fd1f66cce7254f84346ee117 Add a space between pointer do-test.sh and C-style comment

Kokkos Repository Status: 3efc1768ebd926bed2f6bc98854898c5eb894b75 Merge pull request #4002 from junghans/patch-3

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=213 run_time=59
gcc-7.2.0-OpenMP_Serial-release build_time=261 run_time=179
gcc-7.2.0-Serial-release build_time=191 run_time=77
/home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA10 # 183 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision 710d66da0611b160fd1f66cce7254f84346ee117 (refs/remotes/origin/remove_unused_parameters)
 > /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 710d66da0611b160fd1f66cce7254f84346ee117 # timeout=10
Commit message: "Add a space between pointer * and C-style comment"
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 3efc1768ebd926bed2f6bc98854898c5eb894b75 (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 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
Commit message: "Merge pull request #4002 from junghans/patch-3"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins8153565874936017608.sh
***Forced exclusive execution
Job <74711> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  710d66da0611b160fd1f66cce7254f84346ee117 Add a space between pointer do-test-tpls.sh and C-style comment

Kokkos Repository Status: 3efc1768ebd926bed2f6bc98854898c5eb894b75 Merge pull request #4002 from junghans/patch-3

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 # 180 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision 710d66da0611b160fd1f66cce7254f84346ee117 (refs/remotes/origin/remove_unused_parameters)
 > /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 710d66da0611b160fd1f66cce7254f84346ee117 # timeout=10
Commit message: "Add a space between pointer * and C-style comment"
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 3efc1768ebd926bed2f6bc98854898c5eb894b75 (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 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
Commit message: "Merge pull request #4002 from junghans/patch-3"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins2489413884482256223.sh
***Forced exclusive execution
Job <74712> is submitted to queue .
<>
Build was aborted
Aborted by Evan Harvey
Job <74712> is being terminated
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
Finished: ABORTED

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC720_GCC740 # 178 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision 710d66da0611b160fd1f66cce7254f84346ee117 (refs/remotes/origin/remove_unused_parameters)
 > /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 710d66da0611b160fd1f66cce7254f84346ee117 # timeout=10
Commit message: "Add a space between pointer * and C-style comment"
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 3efc1768ebd926bed2f6bc98854898c5eb894b75 (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 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
Commit message: "Merge pull request #4002 from junghans/patch-3"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720_GCC740] $ /bin/bash -el /tmp/jenkins69897166528818096.sh
***Forced exclusive execution
Job <74713> is submitted to queue .
<>
Build was aborted
Aborted by Evan Harvey
Job <74713> is being terminated
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
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_GCC720_Light

  • Build Num: 220
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 184
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 181
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 179
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: remove_unused_parameters
  • SHA: b2b2ead
  • Mode: TEST_REPO

Pull Request Author: lucbv

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

  • Build Num: 220
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 184
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 181
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 179
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b2b2ead
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
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 BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES

@kokkos-devops-admin
Copy link

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

Updating the list of warnings for each compilers in the test
scripts. This should trigger the warnings in the auto-tester.
This has been tested on Blake manually already but this change
will trigger the testing on White and Kokkos-dev2 automatically.
@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_Light

  • Build Num: 223
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 187
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 184
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 182
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: remove_unused_parameters
  • SHA: 2c58f29
  • Mode: TEST_REPO

Pull Request Author: lucbv

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

  • Build Num: 223
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 187
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 184
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 182
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 2c58f29
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 223 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision 2c58f29bedde02996dcf01202fec5c5a066b93dd (refs/remotes/origin/remove_unused_parameters)
 > /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 2c58f29bedde02996dcf01202fec5c5a066b93dd # timeout=10
Commit message: "Warnings: adding -Wunused-parameter to the list of warnings"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk b2b2ead799fdadbc7a4609422920d8748ad18ab2 # timeout=10
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 3efc1768ebd926bed2f6bc98854898c5eb894b75 (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 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
Commit message: "Merge pull request #4002 from junghans/patch-3"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
[KokkosKernels_PullRequest_GCC720_Light] $ /bin/bash -el /tmp/jenkins144786349334585078.sh
***Forced exclusive execution
Job <74726> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  2c58f29bedde02996dcf01202fec5c5a066b93dd Warnings: adding -Wunused-parameter to the list of warnings

Kokkos Repository Status: 3efc1768ebd926bed2f6bc98854898c5eb894b75 Merge pull request #4002 from junghans/patch-3

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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=206 run_time=59
gcc-7.2.0-OpenMP_Serial-release build_time=267 run_time=179
gcc-7.2.0-Serial-release build_time=184 run_time=77
/home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light
Finished: SUCCESS

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

cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-10.1.105-Cuda_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 cuda/10.1.105 gcc/7.4.0 openblas/0.3.4/gcc/7.4.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,Serial --arch=Power8,Pascal60 --compiler=/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr8-nvidia/cuda/10.1.105 --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas,cublas,cusparse --user-blas-path=/home/projects/ppc64le-pwr8/openblas/0.3.4/gcc/7.4.0/lib --user-lapack-path=/home/projects/ppc64le-pwr8/openblas/0.3.4/gcc/7.4.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=,enable_lambda --no-examples

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

  # Move to the build directory
    cd /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/KokkosKernels_PullRequest_Tpls_CUDA10.187/TestAll_2021-05-06_18.33.08/cuda/10.1.105/Cuda_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp: In function int KokkosSparse::RowsPerThread(int) [with DeviceType = Kokkos::Cuda]:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:103:63: error: unused parameter NNZPerRow [-Werror=unused-parameter]
 inline int RowsPerThread(const int NNZPerRow) {
                                                               ^        
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDAUVMSPACE.cpp.o] Error 1
cc1plus: all warnings being treated as errors
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spmv/Sparse_spmv_mv_struct_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_CUDA_MEMSPACE_CUDASPACE.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-9.2.88-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 cuda/9.2.88 gcc/7.2.0 netlib/3.8.0/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Power8,Pascal60 --compiler=/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88 --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas,cublas,cusparse --user-blas-path=/home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=force_uvm,enable_lambda --no-examples

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

  # Move to the build directory
    cd /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/KokkosKernels_PullRequest_Tpls_CUDA9.184/TestAll_2021-05-06_18.33.44/cuda/9.2.88/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC720_GCC740 # 182 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision 2c58f29bedde02996dcf01202fec5c5a066b93dd (refs/remotes/origin/remove_unused_parameters)
 > /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 2c58f29bedde02996dcf01202fec5c5a066b93dd # timeout=10
Commit message: "Warnings: adding -Wunused-parameter to the list of warnings"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk b2b2ead799fdadbc7a4609422920d8748ad18ab2 # timeout=10
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 3efc1768ebd926bed2f6bc98854898c5eb894b75 (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 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
Commit message: "Merge pull request #4002 from junghans/patch-3"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 3efc1768ebd926bed2f6bc98854898c5eb894b75 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720_GCC740] $ /bin/bash -el /tmp/jenkins955878828539914729.sh
***Forced exclusive execution
Job <74729> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  2c58f29bedde02996dcf01202fec5c5a066b93dd Warnings: adding -Wunused-parameter to the list of warnings

Kokkos Repository Status: 3efc1768ebd926bed2f6bc98854898c5eb894b75 Merge pull request #4002 from junghans/patch-3

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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.4.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=212 run_time=63
gcc-7.2.0-Serial-release build_time=196 run_time=76
gcc-7.4.0-OpenMP-release build_time=208 run_time=62
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
Finished: SUCCESS

@lucbv lucbv added the AT: WIP label May 7, 2021
This finishes to fix the warnings related to unused parameters
that were in CUDA specific code branches.
@lucbv lucbv added AT: RETEST Have this PR retested. and removed AT: WIP labels May 9, 2021
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 230
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 8
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 194
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 7
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 191
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 189
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: remove_unused_parameters
  • SHA: eeb2d79
  • Mode: TEST_REPO

Pull Request Author: lucbv

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

  • Build Num: 230
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 8
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 194
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 7
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 191
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 189
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eeb2d79
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 230 (click to expand)

           wctrans
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.230/TestAll_2021-05-08_20.07.14/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.230/TestAll_2021-05-08_20.07.14/gcc/7.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.230/TestAll_2021-05-08_20.07.14/gcc/7.2.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_GCC720_Light_LayoutRight # 8 (click to expand)

make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTRIGHT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTRIGHT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTRIGHT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --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/white/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.8/TestAll_2021-05-08_20.07.21/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --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/white/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.8/TestAll_2021-05-08_20.07.21/gcc/7.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --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/white/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.8/TestAll_2021-05-08_20.07.21/gcc/7.2.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_Tpls_CUDA10 # 194 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision eeb2d79d93c36193416d1a5b8ae0a67a294e4aba (refs/remotes/origin/remove_unused_parameters)
 > /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 eeb2d79d93c36193416d1a5b8ae0a67a294e4aba # timeout=10
Commit message: "Warnings: fix unused parameters for CUDA only code branches"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 2c58f29bedde02996dcf01202fec5c5a066b93dd # timeout=10
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 f23955dd16cd4648e8be4ee8a46f5fec913017ee (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 f23955dd16cd4648e8be4ee8a46f5fec913017ee # timeout=10
Commit message: "Merge pull request #3992 from masterleinad/sycl_print_configuration"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk f23955dd16cd4648e8be4ee8a46f5fec913017ee # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins1585355099109311552.sh
***Forced exclusive execution
Job <74839> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  eeb2d79d93c36193416d1a5b8ae0a67a294e4aba Warnings: fix unused parameters for CUDA only code branches

Kokkos Repository Status: f23955dd16cd4648e8be4ee8a46f5fec913017ee Merge pull request #3992 from masterleinad/sycl_print_configuration

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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED cuda-10.1.105-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.105-Cuda_Serial-release build_time=687 run_time=270
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight # 7 (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_LayoutRight
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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision eeb2d79d93c36193416d1a5b8ae0a67a294e4aba (refs/remotes/origin/remove_unused_parameters)
 > /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 eeb2d79d93c36193416d1a5b8ae0a67a294e4aba # timeout=10
Commit message: "Warnings: fix unused parameters for CUDA only code branches"
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 f23955dd16cd4648e8be4ee8a46f5fec913017ee (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 f23955dd16cd4648e8be4ee8a46f5fec913017ee # timeout=10
Commit message: "Merge pull request #3992 from masterleinad/sycl_print_configuration"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk f23955dd16cd4648e8be4ee8a46f5fec913017ee # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight] $ /bin/bash -el /tmp/jenkins3876657466846983055.sh
***Forced exclusive execution
Job <74840> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  eeb2d79d93c36193416d1a5b8ae0a67a294e4aba Warnings: fix unused parameters for CUDA only code branches

Kokkos Repository Status: f23955dd16cd4648e8be4ee8a46f5fec913017ee Merge pull request #3992 from masterleinad/sycl_print_configuration

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 -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: LayoutRight
PASSED cuda-10.1.105-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.105-Cuda_Serial-release build_time=1265 run_time=472
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9 # 191 (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/lucbv/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/lucbv/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/lucbv/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/remove_unused_parameters^{commit} # timeout=10
Checking out Revision eeb2d79d93c36193416d1a5b8ae0a67a294e4aba (refs/remotes/origin/remove_unused_parameters)
 > /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 eeb2d79d93c36193416d1a5b8ae0a67a294e4aba # timeout=10
Commit message: "Warnings: fix unused parameters for CUDA only code branches"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 2c58f29bedde02996dcf01202fec5c5a066b93dd # timeout=10
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 f23955dd16cd4648e8be4ee8a46f5fec913017ee (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 f23955dd16cd4648e8be4ee8a46f5fec913017ee # timeout=10
Commit message: "Merge pull request #3992 from masterleinad/sycl_print_configuration"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk f23955dd16cd4648e8be4ee8a46f5fec913017ee # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins375506148453846926.sh
***Forced exclusive execution
Job <74841> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  eeb2d79d93c36193416d1a5b8ae0a67a294e4aba Warnings: fix unused parameters for CUDA only code branches

Kokkos Repository Status: f23955dd16cd4648e8be4ee8a46f5fec913017ee Merge pull request #3992 from masterleinad/sycl_print_configuration

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 -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED cuda-9.2.88-Cuda_OpenMP-release
#######################################################
PASSED TESTS
#######################################################
cuda-9.2.88-Cuda_OpenMP-release build_time=738 run_time=375
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
Finished: SUCCESS

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

                 from /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels/src/sparse/impl/KokkosSparse_twostage_gauss_seidel_impl.hpp:59,
                 from /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels/src/sparse/impl/KokkosSparse_gauss_seidel_spec.hpp:56,
                 from /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.189/TestAll_2021-05-08_20.07.18/gcc/7.4.0/OpenMP-release/src/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp:48:
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels/src/sparse/impl/KokkosSparse_sptrsv_cuSPARSE_impl.hpp: In function void KokkosSparse::Impl::sptrsvcuSPARSE_solve(KernelHandle*, typename KernelHandle::nnz_lno_t, ain_row_index_view_type, ain_nonzero_index_view_type, ain_values_scalar_view_type, b_values_scalar_view_type, x_values_scalar_view_type, bool):
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels/src/sparse/impl/KokkosSparse_sptrsv_cuSPARSE_impl.hpp:416:11: error: trans was not declared in this scope
     (void)trans;
           ^~~~~
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels/src/sparse/impl/KokkosSparse_sptrsv_cuSPARSE_impl.hpp:416:11: note: suggested alternative: wctrans
     (void)trans;
           ^~~~~
           wctrans
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_symbolic/Sparse_gauss_seidel_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_numeric/Sparse_gauss_seidel_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/gauss_seidel_apply/Sparse_gauss_seidel_apply_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_OPENMP_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 netlib/3.8.0/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas --user-blas-path=/home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --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/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.189/TestAll_2021-05-08_20.07.18/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=blas --user-blas-path=/home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --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/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.189/TestAll_2021-05-08_20.07.18/gcc/7.2.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-7.4.0-OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/7.4.0 openblas/0.3.4/gcc/7.4.0

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

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

  # Move to the build directory
    cd /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.189/TestAll_2021-05-08_20.07.18/gcc/7.4.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label May 9, 2021
Small update as parameter is commented it should not be refered
to in the non-CUDA path anymore...
@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_Light

  • Build Num: 231
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 9
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 195
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 8
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 192
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 190
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: remove_unused_parameters
  • SHA: 464eaf2
  • Mode: TEST_REPO

Pull Request Author: lucbv

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

  • Build Num: 231
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 9
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 195
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 8
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 192
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 190
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH remove_unused_parameters
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 464eaf2
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 74c71c5
PULLREQUESTNUM 962
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...

1 similar comment
@kokkos-devops-admin
Copy link

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

@lucbv
Copy link
Contributor Author

lucbv commented May 10, 2021

@brian-kelley if you have a minute to look at this again, I think we can probably get this merged?

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@lucbv lucbv merged commit 6239511 into kokkos:develop May 10, 2021
@lucbv lucbv deleted the remove_unused_parameters branch May 10, 2021 16:31
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants