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

Experimental tensor-core SpMV for BsrMatrix #1090

Merged
merged 10 commits into from
Nov 6, 2021

Conversation

cwpearson
Copy link
Contributor

@cwpearson cwpearson commented Aug 30, 2021

Extensible to any CUDA wmma fragment type and any BsrMatrix::blockDim.
Each team is made up of four warps, which are in a 2x2 grid in the M and
N direction of the sparse matrix.
The input operands are all operated on at a granularity defined by the
BsrMatrix blockDim.
Each dense block in the product MV is covered by a 2D grid of teams as
needed, where the footprint of each team is determined by the chosen
fragment type.

src/sparse/KokkosSparse_BlockCrsMatrix.hpp

Added an is_block_crs_matrix static test, similar to the is_view from Kokkos.
This is not actually used in this PR, but is convenient for future
KokkosSparse::spmv extensions.

src/sparse/KokkosSparse_CrsMatrix.hpp

Added an is_crs_matrix static test, similar to the is_view from Kokkos.
This is not actually used in this PR, but is convenient for future
KokkosSparse::spmv extensions.

src/sparse/KokkosSparse_spmv.hpp

Integration with the existing SpMV interface.
The current KokkosSparse::spmv(controls, mode, ...) interface is
extended with compile-time checks for whether the AMatrix type is a
BsrMatrix or not. If so, the new implementation is called.
If it's a CrsMatrix, the existing implementation is called.
If neither, a stub implementation that provides a useful error is
introduced.
Prior to this PR, passing a non-CrsMatrix to Kokkos::spmv would be a compile-time error of varying transparency.
The user must provide a control with "algorithm" =
"experimental_bsr_tc", or the spmv will be a run-time error.
Furthermore, on AMPERE, the internal fragment type may be controlled
with "precision" = "mixed" or "double".

src/sparse/impl/KokkosSparse_spmv_bsrmatrix_impl.hpp

The actual tensor core SpMV implementation.
In the future, this file will hold additional impls for the BsrMatrix
type.
The functor has optional compile-time parameters that can be used to
optimize out divmod instructions.
If they are provided as 0, these parameters are determined at runtime
instead.
The entire implementation is guarded by the Kokkos VOLTA architecture with CUDA enabled.
FP16,32, and 64 are supported on any inputs/outputs. The multiplicand fragments are staged through shared memory where they are converted to the internal fragment type.

unit_test/sparse/Test_Sparse_spmv.hpp

Added unit test for the new SpMV.
It is invoked through the same opt-in interface that is exposed to the user.
It is compared against a Kokkos::spmv() called on the same operands

src/CMakeLists.txt

Add in ETI files for the BsrMatrix spmv

src/impl/generated_specializations...

ETI files for the BsrMatrix spmv

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
WARNING: NO REVIEWERS HAVE BEEN REQUESTED FOR THIS PULL REQUEST!

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

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

In general I think the code looks good but I have a few comments that needs to be addressed.

@@ -57,6 +57,10 @@
#include "KokkosBlas1_scal.hpp"
#include "KokkosKernels_Utils.hpp"

// tensor core dispatch
#include "KokkosSparse_BlockCrsMatrix.hpp"
#include "KokkosSparse_spmv_tensor_core_impl.hpp"
Copy link
Contributor

Choose a reason for hiding this comment

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

This should not be included here, I would suggest looking at KokkosSparse_spmv_spec.hpp and see if it makes sense to have the ETI/dispatch in that file, if not you will have to replicate the structure of that file in something like KokkosSparse_spmv_tensore_spec.hpp

typedef typename AMatrix::value_type AScalar;
typedef typename YMatrix::value_type YScalar;
typedef typename XMatrix::value_type XScalar;
#if 0
Copy link
Contributor

Choose a reason for hiding this comment

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

I think this code should be removed

*/
int team_size() const {
if (0 != (y.extent(1) % WMMA_TILE_N)) {
Kokkos::Impl::throw_runtime_exception("y.extent(0) and A.blockDim() mismatch");
Copy link
Contributor

Choose a reason for hiding this comment

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

There is a mismatch between the test implemented and the explanation in the throw. Are we checking y.extent(1) i.e. the number of vectors stored or y.extent(0) i.e. the number of rows in the vector?

const YMatrix& y
) {
if (0 != y.extent(1) % A.blockDim()) {
Kokkos::Impl::throw_runtime_exception("y.extent(1) not a multiple of A block dimension");
Copy link
Contributor

Choose a reason for hiding this comment

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

Couldn't we just pad the multivector with additional vectors full of zeros when loading the y fragments?

#include "Cuda/Kokkos_Cuda_Half.hpp"

#include "KokkosSparse_BlockCrsMatrix.hpp"
#include "KokkosSparse_spmv_tensor_core_impl.hpp"
Copy link
Contributor

Choose a reason for hiding this comment

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

We should avoid loading the impl file if possible and rely on the public header to benefit from ETI

double(AT::abs(expected_y(i))), i,
double(AT::abs(y(i)))
);
// std::cout << "expected_y(" << i << ")=" << AT::abs(expected_y(i)) << ", y(" << i << ")=" << AT::abs(y(i)) << std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

Remove commented line please

typename CrsMat::ordinal_type &blockSize)
{

#if 0
Copy link
Contributor

Choose a reason for hiding this comment

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

Remove unused code branch please

auto it = std::unique(bjs.begin(), bjs.end());
bjs.resize(it - bjs.begin());
}
// std::cerr << "bi=" << bi << ":";
Copy link
Contributor

Choose a reason for hiding this comment

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

Remove commented line please

Kokkos::Random_XorShift64<Kokkos::HostSpace> rand(13718);

// fill outputs with random values
// Kokkos::Random_XorShift64_Pool<Kokkos::HostSpace> rand_pool(13718);
Copy link
Contributor

Choose a reason for hiding this comment

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

Remove commented line please

Kokkos::fill_random(hi_x, rand_pool, randomUpperBound<typename hi_scalar_view_t::value_type>(10));
Kokkos::fill_random(hi_y, rand_pool, randomUpperBound<typename hi_scalar_view_t::value_type>(10));

#if 0
Copy link
Contributor

Choose a reason for hiding this comment

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

Remove unused code branch

@kokkos-devops-admin
Copy link

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

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

6 similar comments
@kokkos-devops-admin
Copy link

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

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

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

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

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

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

@cwpearson cwpearson force-pushed the feature/tensor-core-spmv branch 3 times, most recently from 5e8e823 to ee41a1d Compare October 20, 2021 23:31
@cwpearson cwpearson changed the title Experimental tensor-core SpMV for BlockCrsMatrix with block size 16 Experimental tensor-core SpMV for BsrMatrix Oct 21, 2021
@cwpearson cwpearson force-pushed the feature/tensor-core-spmv branch from 953c92f to beb3a89 Compare October 21, 2021 18:24
Extensible to any CUDA wmma fragment type and any BsrMatrix::blockDim.
Each team is made up of four warps, which are in a 2x2 grid in the M and
N direction of the sparse matrix.
The input operands are all operated on at a granularity defined by the
BsrMatrix blockDim.
Each dense block in the product MV is covered by a 2D grid of teams as
needed, where the footprint of each team is determined by the chosen
fragment type.

src/sparse/KokkosSparse_BlockCrsMatrix.hpp
====
Added an is_block_crs_matrix static test, similar to the is_view from Kokkos.
This is not actually used in this PR, but is convenient for future
KokkosSparse::spmv extensions.

src/sparse/KokkosSparse_CrsMatrix.hpp
====
Added an is_crs_matrix static test, similar to the is_view from Kokkos.
This is not actually used in this PR, but is convenient for future
KokkosSparse::spmv extensions.

src/sparse/KokkosSparse_spmv.hpp
====
Integration with the existing SpMV interface.
The current KokkosSparse::spmv(controls, mode, ...) interface is
extended with compile-time checks for whether the AMatrix type is a
BsrMatrix or not. If so, the new implementation is called.
If it's a CrsMatrix, the existing implementation is called.
If neither, a stub implementation that provides a useful error is
introduced.
Prior to this PR, passing a non-CrsMatrix to Kokkos::spmv would be a compile-time error of varying transparency.
The user must provide a control with "algorithm" =
"experimental_bsr_tc", or the spmv will be a run-time error.
Furthermore, on AMPERE, the internal fragment type may be controlled
with "precision" = "mixed" or "double".

src/sparse/impl/KokkosSparse_spmv_bsrmatrix_impl.hpp
====
The actual tensor core SpMV implementation.
In the future, this file will hold additional impls for the BsrMatrix
type.
The functor has optional compile-time parameters that can be used to
optimize out divmod instructions.
If they are provided as 0, these parameters are determined at runtime
instead.
The entire implementation is guarded by the Kokkos VOLTA architecture with CUDA enabled.
FP16,32, and 64 are supported on any inputs/outputs. The multiplicand fragments are staged through shared memory where they are converted to the internal fragment type.

unit_test/sparse/Test_Sparse_spmv.hpp
====
Added unit test for the new SpMV.
It is invoked through the same opt-in interface that is exposed to the user.
It is compared against a Kokkos::spmv() called on the same operands

src/CMakeLists.txt
====
Add in ETI files for the BsrMatrix spmv

src/impl/generated_specializations...
====
ETI files for the BsrMatrix spmv
@cwpearson cwpearson force-pushed the feature/tensor-core-spmv branch from beb3a89 to 9832a87 Compare October 21, 2021 19:48
@cwpearson cwpearson requested a review from lucbv October 21, 2021 19:58
@cwpearson cwpearson force-pushed the feature/tensor-core-spmv branch from 946df3f to d4aed7f Compare October 22, 2021 18:27
auto it = std::unique(bjs.begin(), bjs.end());
bjs.resize(it - bjs.begin());
}
// std::cerr << "bi=" << bi << ":";
Copy link
Contributor

Choose a reason for hiding this comment

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

this probably needs to go too

rowmap.push_back(entries.size());
}

// std::cerr << "rowmap size = " << rowmap.size() << "\n";
Copy link
Contributor

Choose a reason for hiding this comment

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

this needs to go


BsrMatrixSpMVTensorCoreFunctorParams params;

public:
Copy link
Contributor

Choose a reason for hiding this comment

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

Technically since you did not call private: anywhere you don't need this.

@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Nov 1, 2021
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Nov 1, 2021
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED by label AT: PRE-TEST INSPECTED! Autotester is Removing Label; This inspection will remain valid until a new commit to source branch is performed.

@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: 183
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 561
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 208
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 552
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 183
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 541
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 185
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 177
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 167
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 183 (click to expand)

[ 99%] Linking CXX executable KokkosKernels_wiki_coloring
[ 99%] Built target KokkosKernels_wiki_coloring
[ 99%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 99%] Built target KokkosKernels_gmres_test_real_A
[ 99%] Linking CXX executable gmres_ex_real_A
[ 99%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable gmres_test_cmplx_A
[ 99%] Built target gmres_test_cmplx_A
[100%] Linking CXX executable KokkosKernels_graph_serial
[100%] Built target KokkosKernels_graph_serial
[100%] Linking CXX executable KokkosKernels_gmres_test_prec
[100%] Built target KokkosKernels_gmres_test_prec
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.183/TestAll_2021-11-01_15.57.38/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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.183/TestAll_2021-11-01_15.57.38/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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.183/TestAll_2021-11-01_15.57.38/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 # 561 (click to expand)

[ 91%] Built target KokkosKernels_batched_sla_openmp
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 91%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 92%] Linking CXX executable KokkosKernels_wiki_mis2
[ 92%] Built target KokkosKernels_wiki_gauss_seidel
[ 92%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target KokkosKernels_gmres_test_real_A
Scanning dependencies of target gmres_ex_real_A
[ 93%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_real_A.dir/test_real_A.cpp.o
[ 94%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 95%] Linking CXX executable KokkosKernels_wiki_rcm
[ 95%] Built target KokkosKernels_wiki_rcm
[ 95%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 95%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 96%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
Scanning dependencies of target gmres_test_cmplx_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_test_cmplx_A.dir/test_cmplx_A.cpp.o
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_common_openmp
[ 97%] Built target KokkosKernels_common_openmp
[ 97%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 97%] Built target KokkosKernels_gmres_test_real_A
[ 97%] Linking CXX executable gmres_test_cmplx_A
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_test_cmplx_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable KokkosBlas3_perf_test
[ 98%] Built target KokkosBlas3_perf_test
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable KokkosKernels_graph_openmp
[ 98%] Built target KokkosKernels_graph_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.561/TestAll_2021-11-01_15.59.39/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-Pthread_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=Pthread,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.561/TestAll_2021-11-01_15.59.39/gcc/7.2.0/Pthread_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 1017433
salloc: Job allocation 1017433 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coarsening.dir/KokkosGraph_wiki_coarsening.cpp.o
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 91%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 91%] Built target KokkosKernels_wiki_gauss_seidel
Scanning dependencies of target KokkosKernels_gmres_test_real_A
[ 92%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_real_A.dir/test_real_A.cpp.o
[ 93%] Linking CXX executable KokkosKernels_wiki_rcm
[ 93%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target gmres_ex_real_A
[ 94%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 94%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 95%] Linking CXX executable KokkosKernels_wiki_mis2
[ 95%] Built target KokkosKernels_wiki_coarsening
[ 95%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 96%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
Scanning dependencies of target gmres_test_cmplx_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_test_cmplx_A.dir/test_cmplx_A.cpp.o
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_common_openmp
[ 97%] Built target KokkosKernels_common_openmp
[ 97%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 97%] Built target KokkosKernels_gmres_test_real_A
[ 97%] Linking CXX executable gmres_test_cmplx_A
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_test_cmplx_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 98%] Linking CXX executable KokkosBlas3_perf_test
[ 98%] Built target KokkosBlas3_perf_test
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable KokkosKernels_graph_openmp
[ 98%] Built target KokkosKernels_graph_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.208/TestAll_2021-11-01_15.59.38/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-Pthread_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=Pthread,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.208/TestAll_2021-11-01_15.59.38/gcc/7.2.0/Pthread_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 1017432
salloc: Job allocation 1017432 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Scanning dependencies of target KokkosKernels_wiki_spgemm
[ 93%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_spgemm.dir/KokkosSparse_wiki_spgemm.cpp.o
[ 93%] Linking CXX executable KokkosKernels_wiki_spadd
Scanning dependencies of target KokkosKernels_wiki_crsmatrix
[ 93%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_crsmatrix.dir/KokkosSparse_wiki_crsmatrix.cpp.o
[ 93%] Built target KokkosKernels_wiki_spadd
Scanning dependencies of target KokkosKernels_wiki_gauss_seidel
[ 93%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_gauss_seidel.dir/KokkosSparse_wiki_gauss_seidel.cpp.o
[ 93%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 93%] Built target KokkosKernels_batched_sla_serial
Scanning dependencies of target KokkosKernels_wiki_mis2
[ 94%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_mis2.dir/KokkosGraph_wiki_mis2.cpp.o
[ 95%] Linking CXX executable KokkosKernels_blas_openmp
[ 96%] Linking CXX executable KokkosKernels_wiki_crsmatrix
[ 96%] Built target KokkosKernels_wiki_crsmatrix
[ 96%] Built target KokkosKernels_blas_openmp
Scanning dependencies of target KokkosKernels_wiki_coloring
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coloring.dir/KokkosGraph_wiki_coloring.cpp.o
Scanning dependencies of target KokkosKernels_wiki_coarsening
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coarsening.dir/KokkosGraph_wiki_coarsening.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 96%] Built target KokkosKernels_wiki_spgemm
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 96%] Linking CXX executable KokkosKernels_graph_openmp
[ 96%] Linking CXX executable KokkosKernels_wiki_mis2
[ 96%] Built target KokkosKernels_wiki_gauss_seidel
[ 96%] Built target KokkosKernels_graph_openmp
[ 96%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target KokkosKernels_gmres_test_real_A
Scanning dependencies of target gmres_ex_real_A
[ 97%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_real_A.dir/test_real_A.cpp.o
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 97%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 98%] Linking CXX executable KokkosKernels_wiki_rcm
[ 98%] Built target KokkosKernels_wiki_coarsening
[ 98%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target gmres_test_cmplx_A
[ 99%] Building CXX object example/gmres/CMakeFiles/gmres_test_cmplx_A.dir/test_cmplx_A.cpp.o
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosKernels_wiki_coloring
[ 99%] Built target KokkosKernels_wiki_coloring
[100%] Linking CXX executable KokkosKernels_graph_serial
[100%] Linking CXX executable KokkosKernels_gmres_test_real_A
[100%] Built target KokkosKernels_graph_serial
[100%] Built target KokkosKernels_gmres_test_real_A
[100%] Linking CXX executable KokkosKernels_gmres_test_prec
[100%] Linking CXX executable gmres_ex_real_A
[100%] Built target KokkosKernels_gmres_test_prec
[100%] Linking CXX executable gmres_test_cmplx_A
[100%] Built target gmres_ex_real_A
[100%] Built target gmres_test_cmplx_A
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.552/TestAll_2021-11-01_15.59.46/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

#######################################################
salloc: Relinquishing job allocation 1017434
salloc: Job allocation 1017434 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk d4aed7fd1ad921c574ed2faa4ef2d8188c9736ab # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins3387116703256104470.sh
***Forced exclusive execution
Job <24137> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: cuda/10.1.243
Testing compiler cuda/10.1.243
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Starting job cuda-10.1.243-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power9,Volta70
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.243-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release build_time=1339 run_time=361
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://plugins.jenkins.io/git/#remove-git-plugin-buildsbybranch-builddata-script
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk d4aed7fd1ad921c574ed2faa4ef2d8188c9736ab # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL18] $ /bin/bash -el /tmp/jenkins6660784672166975653.sh
salloc: Granted job allocation 1017435
salloc: Waiting for resource configuration
salloc: Nodes blake17 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: intel/18.1.163
Testing compiler intel/18.1.163
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -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 intel-18.1.163-OpenMP-release
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-Pthread-release
kokkos devices: Pthread
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-18.1.163-Pthread-release
#######################################################
PASSED TESTS
#######################################################
intel-18.1.163-OpenMP-release build_time=3149 run_time=142
intel-18.1.163-Pthread-release build_time=2339 run_time=241
salloc: Relinquishing job allocation 1017435
salloc: Job allocation 1017435 has been revoked.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk d4aed7fd1ad921c574ed2faa4ef2d8188c9736ab # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight] $ /bin/bash -el /tmp/jenkins2802324589484443654.sh
***Forced exclusive execution
Job <24139> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: cuda/10.1.243
Testing compiler cuda/10.1.243
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Starting job cuda-10.1.243-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options: ,enable_lambda
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED cuda-10.1.243-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release build_time=1315 run_time=364
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk d4aed7fd1ad921c574ed2faa4ef2d8188c9736ab # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins3525531867000271630.sh
***Forced exclusive execution
Job <24140> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

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: Power9,Volta70
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=1350 run_time=371
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
Finished: SUCCESS

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

[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 97%] Built target KokkosKernels_gmres_test_real_A
[ 97%] Linking CXX executable gmres_test_cmplx_A
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target gmres_test_cmplx_A
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable KokkosKernels_common_openmp
[ 97%] Built target KokkosKernels_common_openmp
[ 98%] Linking CXX executable KokkosBlas3_perf_test
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosBlas3_perf_test
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable KokkosKernels_graph_openmp
[ 98%] Built target KokkosKernels_graph_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power9,Volta70 --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-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.167/TestAll_2021-11-01_17.57.17/gcc/7.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Reproducer instructions:

Load modules:

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

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power9,Volta70 --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-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.167/TestAll_2021-11-01_17.57.17/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.2.20/gcc/7.2.0 gcc/7.4.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power9,Volta70 --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-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.167/TestAll_2021-11-01_17.57.17/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

removing an unused typedef that bothers the auto-tester.
@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: 184
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 562
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 209
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 553
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
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 feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 542
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 186
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 178
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 168
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/tensor-core-spmv
  • SHA: 421a1b1
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@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 = 421a1b1 Does not match the current commit SHA = f27aa13. 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: 184
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 562
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 209
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 553
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 184
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 542
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 186
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 178
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 168
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 421a1b1
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 184 (click to expand)

[ 99%] Linking CXX executable KokkosKernels_wiki_coloring
[ 99%] Built target KokkosKernels_wiki_coloring
[ 99%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 99%] Built target KokkosKernels_gmres_test_real_A
[ 99%] Linking CXX executable gmres_ex_real_A
[ 99%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable gmres_test_cmplx_A
[ 99%] Built target gmres_test_cmplx_A
[ 99%] Linking CXX executable KokkosKernels_gmres_test_prec
[100%] Linking CXX executable KokkosKernels_graph_serial
[100%] Built target KokkosKernels_gmres_test_prec
[100%] Built target KokkosKernels_graph_serial
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.184/TestAll_2021-11-01_20.50.37/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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.184/TestAll_2021-11-01_20.50.37/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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.184/TestAll_2021-11-01_20.50.37/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 # 562 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://plugins.jenkins.io/git/#remove-git-plugin-buildsbybranch-builddata-script
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_GCC720] $ /bin/bash -el /tmp/jenkins6322744165375992327.sh
salloc: Granted job allocation 1017446
salloc: Waiting for resource configuration
salloc: Nodes blake19 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_GCC720_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins4620008827958649690.sh
salloc: Granted job allocation 1017447
salloc: Waiting for resource configuration
salloc: Nodes blake20 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://plugins.jenkins.io/git/#remove-git-plugin-buildsbybranch-builddata-script
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720] $ /bin/bash -el /tmp/jenkins3836046297108173031.sh
salloc: Granted job allocation 1017448
salloc: Waiting for resource configuration
salloc: Nodes blake21 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins4048126088171429725.sh
***Forced exclusive execution
Job <24153> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: cuda/10.1.243
Testing compiler cuda/10.1.243
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Starting job cuda-10.1.243-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power9,Volta70
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
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://plugins.jenkins.io/git/#remove-git-plugin-buildsbybranch-builddata-script
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL18] $ /bin/bash -el /tmp/jenkins1640422178795667280.sh
salloc: Granted job allocation 1017449
salloc: Waiting for resource configuration
salloc: Nodes blake22 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc only do local typedefs when used

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight] $ /bin/bash -el /tmp/jenkins16564937876981685480.sh
***Forced exclusive execution
Job <24154> is submitted to queue .
<>
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
Commit message: "only do local typedefs when used"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins741613780645347834.sh
***Forced exclusive execution
Job <24155> is submitted to queue .
<>
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision f27aa13b32f536c84ba4d8a599e8d6d30d9f989a (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
Commit message: "Fixing warning for auto-tester"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720_GCC740] $ /bin/bash -el /tmp/jenkins11748057939533609537.sh
***Forced exclusive execution
Job <24157> is submitted to queue .
<>
Build was aborted
Aborted by Evan Harvey
Finished: ABORTED

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO INSPECTION HAS BEEN PERFORMED ON THIS PULL REQUEST! - This PR must be inspected by setting label 'AT: PRE-TEST INSPECTED'.

@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Nov 2, 2021
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Nov 2, 2021
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED by label AT: PRE-TEST INSPECTED! Autotester is Removing Label; This inspection will remain valid until a new commit to source branch is performed.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job KokkosKernels_PullRequest_Tpls_CUDA9 to start: Total Wait = 3603

@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: 186
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 564
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 211
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 555
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 186
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 544
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 188
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 179
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 169
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/tensor-core-spmv
  • SHA: f27aa13
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@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: 186
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 564
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 211
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 555
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 186
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 544
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 188
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 179
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 169
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA f27aa13
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 186 (click to expand)

[ 99%] Built target KokkosKernels_graph_openmp
[ 99%] Built target KokkosKernels_wiki_coloring
[ 99%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 99%] Built target KokkosKernels_gmres_test_real_A
[ 99%] Linking CXX executable gmres_ex_real_A
[ 99%] Built target gmres_ex_real_A
[ 99%] Linking CXX executable gmres_test_cmplx_A
[ 99%] Built target gmres_test_cmplx_A
[100%] Linking CXX executable KokkosKernels_graph_serial
[100%] Built target KokkosKernels_graph_serial
[100%] Linking CXX executable KokkosKernels_gmres_test_prec
[100%] Built target KokkosKernels_gmres_test_prec
[100%] Linking CXX executable KokkosKernels_blas_serial
[100%] Built target KokkosKernels_blas_serial
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.186/TestAll_2021-11-02_02.40.36/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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.186/TestAll_2021-11-02_02.40.36/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/weaver-new/workspace/KokkosKernels_PullRequest_GCC720_Light/KokkosKernels_PullRequest_GCC720_Light.186/TestAll_2021-11-02_02.40.36/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 # 564 (click to expand)

[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coarsening.dir/KokkosGraph_wiki_coarsening.cpp.o
[ 91%] Built target KokkosBlas3_gemm_perf_test
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 92%] Linking CXX executable KokkosKernels_wiki_rcm
[ 92%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 92%] Built target KokkosKernels_wiki_rcm
[ 92%] Built target KokkosKernels_wiki_gauss_seidel
Scanning dependencies of target KokkosKernels_gmres_test_real_A
[ 93%] Linking CXX executable KokkosKernels_wiki_mis2
[ 94%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_real_A.dir/test_real_A.cpp.o
[ 94%] Linking CXX executable KokkosKernels_wiki_coarsening
Scanning dependencies of target gmres_ex_real_A
[ 95%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 95%] Built target KokkosKernels_wiki_mis2
[ 95%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 96%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
Scanning dependencies of target gmres_test_cmplx_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_test_cmplx_A.dir/test_cmplx_A.cpp.o
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 97%] Built target KokkosKernels_gmres_test_real_A
[ 97%] Linking CXX executable gmres_test_cmplx_A
[ 97%] Built target gmres_test_cmplx_A
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable KokkosKernels_common_openmp
[ 97%] Built target KokkosKernels_common_openmp
[ 98%] Linking CXX executable KokkosBlas3_perf_test
[ 98%] Built target KokkosBlas3_perf_test
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable KokkosKernels_graph_openmp
[ 98%] Built target KokkosKernels_graph_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.564/TestAll_2021-11-02_02.40.48/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-Pthread_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=Pthread,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/KokkosKernels_PullRequest_GCC720.564/TestAll_2021-11-02_02.40.48/gcc/7.2.0/Pthread_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coloring.dir/KokkosGraph_wiki_coloring.cpp.o
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 91%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 91%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 91%] Built target KokkosKernels_wiki_gauss_seidel
Scanning dependencies of target KokkosKernels_gmres_test_real_A
[ 92%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_real_A.dir/test_real_A.cpp.o
[ 93%] Linking CXX executable KokkosKernels_wiki_mis2
[ 93%] Built target KokkosKernels_wiki_mis2
Scanning dependencies of target gmres_ex_real_A
[ 94%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 95%] Linking CXX executable KokkosKernels_wiki_rcm
[ 95%] Built target KokkosKernels_wiki_rcm
Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 96%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_coarsening
[ 96%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target gmres_test_cmplx_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_test_cmplx_A.dir/test_cmplx_A.cpp.o
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable KokkosKernels_common_openmp
[ 97%] Built target KokkosKernels_common_openmp
[ 97%] Linking CXX executable KokkosKernels_wiki_coloring
[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 97%] Built target KokkosKernels_gmres_test_real_A
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable gmres_test_cmplx_A
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Built target gmres_test_cmplx_A
[ 98%] Linking CXX executable KokkosBlas3_perf_test
[ 98%] Built target KokkosBlas3_perf_test
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable KokkosKernels_graph_openmp
[ 98%] Built target KokkosKernels_graph_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.211/TestAll_2021-11-02_02.40.58/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-Pthread_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=Pthread,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/KokkosKernels_PullRequest_GCC720_Light_LayoutRight.211/TestAll_2021-11-02_02.40.58/gcc/7.2.0/Pthread_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 1017465
salloc: Job allocation 1017465 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 93%] Linking CXX executable KokkosKernels_batched_sla_serial
Scanning dependencies of target KokkosKernels_wiki_spgemm
[ 93%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_spgemm.dir/KokkosSparse_wiki_spgemm.cpp.o
[ 93%] Built target KokkosBlas3_perf_test
[ 93%] Built target KokkosKernels_batched_sla_serial
Scanning dependencies of target KokkosKernels_wiki_crsmatrix
[ 93%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_crsmatrix.dir/KokkosSparse_wiki_crsmatrix.cpp.o
Scanning dependencies of target KokkosKernels_wiki_gauss_seidel
[ 93%] Building CXX object example/wiki/sparse/CMakeFiles/KokkosKernels_wiki_gauss_seidel.dir/KokkosSparse_wiki_gauss_seidel.cpp.o
[ 93%] Linking CXX executable KokkosKernels_graph_openmp
[ 93%] Built target KokkosKernels_graph_openmp
[ 94%] Linking CXX executable KokkosKernels_blas_openmp
[ 94%] Linking CXX executable KokkosKernels_wiki_spadd
Scanning dependencies of target KokkosKernels_wiki_mis2
[ 95%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_mis2.dir/KokkosGraph_wiki_mis2.cpp.o
[ 95%] Built target KokkosKernels_wiki_spadd
[ 95%] Built target KokkosKernels_blas_openmp
[ 96%] Linking CXX executable KokkosKernels_wiki_crsmatrix
Scanning dependencies of target KokkosKernels_wiki_coloring
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coloring.dir/KokkosGraph_wiki_coloring.cpp.o
Scanning dependencies of target KokkosKernels_wiki_coarsening
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_coarsening.dir/KokkosGraph_wiki_coarsening.cpp.o
[ 96%] Built target KokkosKernels_wiki_crsmatrix
Scanning dependencies of target KokkosKernels_wiki_rcm
[ 96%] Building CXX object example/wiki/graph/CMakeFiles/KokkosKernels_wiki_rcm.dir/KokkosGraph_wiki_rcm.cpp.o
[ 96%] Linking CXX executable KokkosKernels_wiki_spgemm
[ 96%] Built target KokkosKernels_wiki_spgemm
Scanning dependencies of target KokkosKernels_gmres_test_real_A
[ 97%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_real_A.dir/test_real_A.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_gauss_seidel
[ 97%] Built target KokkosKernels_wiki_gauss_seidel
Scanning dependencies of target gmres_ex_real_A
[ 97%] Building CXX object example/gmres/CMakeFiles/gmres_ex_real_A.dir/ex_real_A.cpp.o
[ 97%] Linking CXX executable KokkosKernels_wiki_rcm
[ 97%] Built target KokkosKernels_wiki_rcm
[ 97%] Linking CXX executable KokkosKernels_wiki_mis2
[ 98%] Linking CXX executable KokkosKernels_wiki_coarsening
Scanning dependencies of target KokkosKernels_gmres_test_prec
[ 98%] Building CXX object example/gmres/CMakeFiles/KokkosKernels_gmres_test_prec.dir/test_prec.cpp.o
[ 98%] Built target KokkosKernels_wiki_mis2
[ 98%] Built target KokkosKernels_wiki_coarsening
Scanning dependencies of target gmres_test_cmplx_A
[ 99%] Building CXX object example/gmres/CMakeFiles/gmres_test_cmplx_A.dir/test_cmplx_A.cpp.o
[ 99%] Linking CXX executable KokkosKernels_blas_serial
[ 99%] Built target KokkosKernels_blas_serial
[ 99%] Linking CXX executable KokkosKernels_wiki_coloring
[ 99%] Built target KokkosKernels_wiki_coloring
[ 99%] Linking CXX executable KokkosKernels_gmres_test_real_A
[100%] Linking CXX executable KokkosKernels_graph_serial
[100%] Built target KokkosKernels_gmres_test_real_A
[100%] Built target KokkosKernels_graph_serial
[100%] Linking CXX executable gmres_test_cmplx_A
[100%] Built target gmres_test_cmplx_A
[100%] Linking CXX executable KokkosKernels_gmres_test_prec
[100%] Built target KokkosKernels_gmres_test_prec
[100%] Linking CXX executable gmres_ex_real_A
[100%] Built target gmres_ex_real_A
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
[100%] Linking CXX executable KokkosKernels_batched_dla_serial
[100%] Built target KokkosKernels_batched_dla_serial
[100%] Linking CXX executable KokkosKernels_batched_dla_openmp
[100%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

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

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/KokkosKernels_PullRequest_Tpls_GCC720.555/TestAll_2021-11-02_02.41.08/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

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision f27aa13b32f536c84ba4d8a599e8d6d30d9f989a (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
Commit message: "Fixing warning for auto-tester"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins18287104046594944770.sh
***Forced exclusive execution
Job <24182> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  f27aa13b32f536c84ba4d8a599e8d6d30d9f989a Fixing warning for auto-tester

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: cuda/10.1.243
Testing compiler cuda/10.1.243
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Starting job cuda-10.1.243-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power9,Volta70
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.243-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release build_time=1359 run_time=360
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://plugins.jenkins.io/git/#remove-git-plugin-buildsbybranch-builddata-script
Checking out Revision f27aa13b32f536c84ba4d8a599e8d6d30d9f989a (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
Commit message: "Fixing warning for auto-tester"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL18] $ /bin/bash -el /tmp/jenkins5478171972852776296.sh
salloc: Granted job allocation 1017467
salloc: Waiting for resource configuration
salloc: Nodes blake06 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  f27aa13b32f536c84ba4d8a599e8d6d30d9f989a Fixing warning for auto-tester

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: intel/18.1.163
Testing compiler intel/18.1.163
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -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 intel-18.1.163-OpenMP-release
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-Pthread-release
kokkos devices: Pthread
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-18.1.163-Pthread-release
#######################################################
PASSED TESTS
#######################################################
intel-18.1.163-OpenMP-release build_time=3193 run_time=142
intel-18.1.163-Pthread-release build_time=2321 run_time=239
salloc: Relinquishing job allocation 1017467
salloc: Job allocation 1017467 has been revoked.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision f27aa13b32f536c84ba4d8a599e8d6d30d9f989a (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
Commit message: "Fixing warning for auto-tester"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight] $ /bin/bash -el /tmp/jenkins360876755316371312.sh
***Forced exclusive execution
Job <24183> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  f27aa13b32f536c84ba4d8a599e8d6d30d9f989a Fixing warning for auto-tester

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

Going to test compilers: cuda/10.1.243
Testing compiler cuda/10.1.243
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Unrecognized compiler cuda/10.1.243 when looking for Spack variants
Starting job cuda-10.1.243-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options: ,enable_lambda
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED cuda-10.1.243-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release build_time=1314 run_time=364
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on weaver (testbed) in workspace /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse refs/remotes/origin/feature/tensor-core-spmv^{commit} # timeout=10
Checking out Revision f27aa13b32f536c84ba4d8a599e8d6d30d9f989a (refs/remotes/origin/feature/tensor-core-spmv)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f f27aa13b32f536c84ba4d8a599e8d6d30d9f989a # timeout=10
Commit message: "Fixing warning for auto-tester"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 421a1b1b1b0bd42eba8e27a25f7968ff9bdd14bc # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b^{commit} # timeout=10
Checking out Revision 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b (detached)
 > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
Commit message: "Merge pull request #4478 from masterleinad/fix_impl_shared_alloc"
 > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins14709901778421548650.sh
***Forced exclusive execution
Job <24184> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  f27aa13b32f536c84ba4d8a599e8d6d30d9f989a Fixing warning for auto-tester

Kokkos Repository Status: 8b17f8e7d7d1de9d12dcea67736ca3300aed6f7b Merge pull request #4478 from masterleinad/fix_impl_shared_alloc

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: Power9,Volta70
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=1341 run_time=370
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
Finished: SUCCESS

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

[ 97%] Built target KokkosKernels_wiki_coloring
[ 97%] Linking CXX executable KokkosKernels_gmres_test_real_A
[ 97%] Built target KokkosKernels_gmres_test_real_A
[ 97%] Linking CXX executable gmres_test_cmplx_A
[ 97%] Built target gmres_test_cmplx_A
[ 97%] Linking CXX executable sparse_kk_spmv
[ 97%] Built target sparse_kk_spmv
[ 97%] Linking CXX executable gmres_ex_real_A
[ 97%] Built target gmres_ex_real_A
[ 97%] Linking CXX executable KokkosKernels_gmres_test_prec
[ 97%] Built target KokkosKernels_gmres_test_prec
[ 97%] Linking CXX executable KokkosKernels_common_openmp
[ 97%] Built target KokkosKernels_common_openmp
[ 98%] Linking CXX executable KokkosBlas3_perf_test
[ 98%] Built target KokkosBlas3_perf_test
[ 98%] Linking CXX executable KokkosKernels_blas_openmp
[ 98%] Built target KokkosKernels_blas_openmp
[ 98%] Linking CXX executable KokkosKernels_graph_openmp
[ 98%] Built target KokkosKernels_graph_openmp
cc1plus: all warnings being treated as errors
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 99%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 99%] Built target KokkosKernels_batched_dla_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power9,Volta70 --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-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.169/TestAll_2021-11-02_03.28.34/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 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power9,Volta70 --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-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.169/TestAll_2021-11-02_03.28.34/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.2.20/gcc/7.2.0 gcc/7.4.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power9,Volta70 --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-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-lapack-path=/home/projects/ppc64le-pwr9/openblas/0.2.20/gcc/7.2.0/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_GCC720_GCC740.169/TestAll_2021-11-02_03.28.34/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

Did not realize that the previous typedef would also need to go.
@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Nov 2, 2021
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Nov 2, 2021
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED by label AT: PRE-TEST INSPECTED! Autotester is Removing Label; This inspection will remain valid until a new commit to source branch is performed.

@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: 187
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 565
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 212
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 556
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
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 feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 545
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 189
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
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 feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 170
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/tensor-core-spmv
  • SHA: 137c7f3
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@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: 187
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 565
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 212
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 556
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 187
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 545
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_LayoutRight

  • Build Num: 189
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 180
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 170
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/tensor-core-spmv
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 137c7f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA f631acb
PR_LABELS feature request
PULLREQUESTNUM 1090
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

3 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

@srajama1 srajama1 left a comment

Choose a reason for hiding this comment

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

Some minor comments below, none blocking, so I will approve. We probably need a clean up pass though in a follow up PR.


namespace KokkosKernels {
namespace Impl {

Copy link
Contributor

Choose a reason for hiding this comment

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

Looks like we will get false for HIP/OMP Target etc?

Copy link
Contributor

Choose a reason for hiding this comment

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

I know we don't support these feature for now on other GPUs, but OMP Target will work on NVIDIA GPUs, so may be this has to be yes in the near future? For now at least it is better to throw for any other exec space.

namespace KokkosSparse {
namespace Experimental {
namespace Impl {
// clang-format off
Copy link
Contributor

Choose a reason for hiding this comment

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

remove?

Copy link
Contributor

Choose a reason for hiding this comment

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

The // clang-format off actually allows us to avoid clang formatting in the following region until // clang-format on
Here the problem is that clang-format like to add spaces between @ and the following text which leads to parsing errors from CMake so we need to guard the CMake variables against clang-formatting

} // namespace Impl
} // namespace Experimental
} // namespace KokkosSparse
#endif
Copy link
Contributor

Choose a reason for hiding this comment

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

I think no new line here might be a problem in some places. Same reason why Github is flagging it.

namespace Impl {
// clang-format off
@SPARSE_SPMV_BSRMATRIX_ETI_DECL_BLOCK@
// clang-format on
Copy link
Contributor

Choose a reason for hiding this comment

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

Same as above.

teamIdx_j * WARPS_PER_TEAM_X * FRAG_N + warpIdx_x * FRAG_N + fj;

// only store inside the block boundary
// FIXME: what if Y is not wide enough? check y(_, j)
Copy link
Contributor

Choose a reason for hiding this comment

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

This worries me?

@@ -10,6 +10,7 @@

#include "KokkosKernels_Controls.hpp"
#include "KokkosKernels_default_types.hpp"
#include "Cuda/Kokkos_Cuda_Half.hpp"
Copy link
Contributor

Choose a reason for hiding this comment

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

I would have liked a separate file for bsr spmv. This compilation unit will soon be the bottleneck

@srajama1
Copy link
Contributor

srajama1 commented Nov 5, 2021

Thanks @cwpearson !

@kokkos-devops-admin
Copy link

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

@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 447ad3d into kokkos:develop Nov 6, 2021
@lucbv lucbv mentioned this pull request Nov 8, 2021
@cwpearson cwpearson deleted the feature/tensor-core-spmv branch February 7, 2022 19:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants