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

Refactoring of MKL SpGEMM implementation #1244

Merged
merged 19 commits into from
Mar 21, 2022

Conversation

mzuzek
Copy link

@mzuzek mzuzek commented Dec 22, 2021

@lucbv @brian-kelley

While adding BSR matrix support to MKL implementation of SpGEMM on #1215, I decided to employ some preliminary refactoring to avoid [further] code duplication. The refactoring proposed here is based on MKLSparseMatrix<value_type> wrapper specialized over scalar type (we support float and double) to manage MKL calls for different matrix types internally.

Contents

  • General refactoring: spmm code duplication replaced with single entry accompanied with templated utils;
  • GPU memory spaces support (can run MKL with CUDA);
  • Minor fixes;
  • Dedicated MKL utilities header introduced (src/common/KokkosKernels_SparseUtils_mkl.hpp);

@@ -280,7 +280,7 @@ void test_spgemm(lno_t m, lno_t k, lno_t n, size_type nnz, lno_t bandwidth,
SPGEMM_KK_SPEED /* alias SPGEMM_KK_DENSE */
};

#ifdef HAVE_KOKKOSKERNELS_MKL
Copy link
Author

Choose a reason for hiding this comment

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

It seems like HAVE_KOKKOSKERNELS_MKL is no longer set by CMake.

@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'.

1 similar comment
@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'.

@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from f4965c1 to 61e11c9 Compare January 7, 2022 13:36
@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'.

@mzuzek mzuzek mentioned this pull request Jan 7, 2022
9 tasks
@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from 61e11c9 to 7fa4f69 Compare January 19, 2022 14:06
@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'.

@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from 09f4590 to 3a4ebf4 Compare January 19, 2022 15:29
@lucbv lucbv requested review from lucbv and brian-kelley January 20, 2022 17:51
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.

Some initial thoughts on this PR, some of it might not need to be done here but might rather be input for subsequent work.

src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jan 23, 2022
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jan 23, 2022
@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_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740

  • Build Num: 144
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 140
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 798
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 445
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 789
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 777
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 182
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (NexGenAnalytics/kokkos-kernels)
  • Branch: mkl-spgemm-refactoring
  • SHA: 3a4ebf4
  • Mode: TEST_REPO

Pull Request Author: MikolajZuzek

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

  • Build Num: 144
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight

  • Build Num: 140
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 798
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 445
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 789
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 777
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 182
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 3a4ebf4
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 701fb05
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740 # 144 (click to expand)

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/dense/KokkosBatched_Gemm_Decl.hpp(382): warning: statement is unreachable
          detected during:
            instantiation of "int KokkosBatched::BatchedGemm(BatchedGemmHandleType *, ScalarType, const AViewType &, const BViewType &, ScalarType, const CViewType &) [with ArgTransA=KokkosBatched::Trans::NoTranspose, ArgTransB=KokkosBatched::Trans::Transpose, ArgBatchSzDim=KokkosBatched::BatchLayout::Left, BatchedGemmHandleType=KokkosBatched::BatchedGemmHandle, ScalarType=double, AViewType=Kokkos::View ***, Kokkos::LayoutLeft, Kokkos::Cuda>, BViewType=Kokkos::View ***, Kokkos::LayoutLeft, Kokkos::Cuda>, CViewType=Kokkos::View ***, Kokkos::LayoutLeft, Kokkos::Cuda>]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(231): here
            instantiation of "void Test::impl_test_batched_gemm(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(248): here
            instantiation of "void test_batched_gemm_with_layout() [with ViewType=Kokkos::View ***, Kokkos::LayoutLeft, Kokkos::Cuda>, DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(311): here
            instantiation of "int test_batched_gemm() [with DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(114): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/dense/KokkosBatched_Gemm_Decl.hpp(382): warning: statement is unreachable
detected during:
instantiation of "int KokkosBatched::BatchedGemm<ArgTransA,ArgTransB,ArgBatchSzDim,BatchedGemmHandleType,ScalarType,AViewType,BViewType,CViewType>(BatchedGemmHandleType *, ScalarType, const AViewType &, const BViewType &, ScalarType, const CViewType &) [with ArgTransA=KokkosBatched::Trans::Transpose, ArgTransB=KokkosBatched::Trans::Transpose, ArgBatchSzDim=KokkosBatched::BatchLayout::Left, BatchedGemmHandleType=KokkosBatched::BatchedGemmHandle, ScalarType=Kokkos::complex, AViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, BViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, CViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(92): here
instantiation of "void Test::impl_test_batched_gemm_with_handle<DeviceType,ViewType,ScalarType,ParamTagType>(KokkosBatched::BatchedGemmHandle *, int, int, int, int, int, int, int, ScalarType, ScalarType) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(207): here
instantiation of "void Test::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(248): here
instantiation of "void test_batched_gemm_with_layout<ViewType,DeviceType,ValueType,ScalarType,ParamTagType>() [with ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(311): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(124): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/dense/KokkosBatched_Gemm_Decl.hpp(382): warning: statement is unreachable
detected during:
instantiation of "int KokkosBatched::BatchedGemm<ArgTransA,ArgTransB,ArgBatchSzDim,BatchedGemmHandleType,ScalarType,AViewType,BViewType,CViewType>(BatchedGemmHandleType *, ScalarType, const AViewType &, const BViewType &, ScalarType, const CViewType &) [with ArgTransA=KokkosBatched::Trans::Transpose, ArgTransB=KokkosBatched::Trans::Transpose, ArgBatchSzDim=KokkosBatched::BatchLayout::Left, BatchedGemmHandleType=KokkosBatched::BatchedGemmHandle, ScalarType=double, AViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, BViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, CViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(231): here
instantiation of "void Test::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(248): here
instantiation of "void test_batched_gemm_with_layout<ViewType,DeviceType,ValueType,ScalarType,ParamTagType>() [with ViewType=Kokkos::View<Kokkos::complex ***, Kokkos::LayoutLeft, Kokkos::Cuda>, DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp(311): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Kokkos::complex, ScalarType=Kokkos::complex, ParamTagType=Test::SharedParamTag<KokkosBatched::Trans::Transpose, KokkosBatched::Trans::Transpose, KokkosBatched::BatchLayout::Left>]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/unit_test/batched/dense/Test_Batched_BatchedGemm_Complex.hpp(124): here

[ 93%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 93%] Built target KokkosBlas3_gemm_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/impl/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp(506): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/impl/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp(602): warning: statement is unreachable

[ 93%] Linking CXX executable KokkosKernels_batched_sla_cuda
[ 93%] Built target KokkosKernels_batched_sla_cuda
[ 93%] Linking CXX executable KokkosKernels_graph_openmp
[ 93%] Built target KokkosKernels_graph_openmp
[ 93%] Linking CXX executable KokkosKernels_common_cuda
[ 93%] Built target KokkosKernels_common_cuda
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(869): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_trmm_perf_test.hpp(104): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/perf_test/blas/blas3/KokkosBlas3_trmm_perf_test.hpp(128): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/impl/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp(506): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/impl/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp(602): warning: statement is unreachable

[ 93%] Linking CXX executable KokkosKernels_blas_cuda
[ 93%] Built target KokkosKernels_blas_cuda
[ 93%] Linking CXX executable KokkosBlas3_perf_test
[ 93%] Built target KokkosBlas3_perf_test
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/batched/KokkosBatched_Util.hpp(869): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/impl/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp(506): warning: statement is unreachable

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/kokkos-kernels/src/impl/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp(602): warning: statement is unreachable

[ 93%] Linking CXX executable KokkosKernels_batched_dla_cuda
[ 93%] Built target KokkosKernels_batched_dla_cuda
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-9.2.88-Cuda_OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740/KokkosKernels_PullRequest_Tpls_CUDA9_GCC720_Light_Tpls_GCC720_GCC740.144/TestAll_2022-01-23_15.20.51/cuda/9.2.88/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

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

            instantiation of "std::__cxx11::string Test::value_type_name() [with T=Test::halfScalarType]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(51): here
            instantiation of "void Test::Gemm::Functor_TestBatchedSerialGemm::run() [with DeviceType=Kokkos::Serial, ViewType=Kokkos::View, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(108): here
            instantiation of "void Test::Gemm::impl_test_batched_gemm(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Serial, ViewType=Kokkos::View, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(151): here
            instantiation of "int test_batched_gemm() [with DeviceType=Kokkos::Serial, ValueType=Test::halfScalarType, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]" 
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm_Real.hpp(6): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/../test_common/KokkosKernels_TestUtils.hpp(438): warning: calling a host function from a host device function is not allowed
detected during:
instantiation of "std::__cxx11::string Test::value_type_name() [with T=Test::halfScalarType]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(51): here
instantiation of "void Test::Gemm::Functor_TestBatchedSerialGemm<DeviceType, ViewType, ScalarType, ParamTagType, AlgoTagType>::run() [with DeviceType=Kokkos::Serial, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Serial>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(108): here
instantiation of "void Test::Gemm::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType,AlgoTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Serial, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Serial>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(151): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType,AlgoTagType>() [with DeviceType=Kokkos::Serial, ValueType=Test::halfScalarType, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm_Real.hpp(6): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/../test_common/KokkosKernels_TestUtils.hpp(438): warning: calling a host function from a host device function is not allowed
detected during:
instantiation of "std::__cxx11::string Test::value_type_name() [with T=Test::halfScalarType]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(51): here
instantiation of "void Test::Gemm::Functor_TestBatchedSerialGemm<DeviceType, ViewType, ScalarType, ParamTagType, AlgoTagType>::run() [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(108): here
instantiation of "void Test::Gemm::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType,AlgoTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(151): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType,AlgoTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Test::halfScalarType, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm_Real.hpp(6): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/../test_common/KokkosKernels_TestUtils.hpp(438): warning: calling a host function from a host device function is not allowed
detected during:
instantiation of "std::__cxx11::string Test::value_type_name() [with T=Test::halfScalarType]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(51): here
instantiation of "void Test::Gemm::Functor_TestBatchedSerialGemm<DeviceType, ViewType, ScalarType, ParamTagType, AlgoTagType>::run() [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(108): here
instantiation of "void Test::Gemm::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType,AlgoTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(151): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType,AlgoTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Test::halfScalarType, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm_Real.hpp(6): here

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/../test_common/KokkosKernels_TestUtils.hpp(438): warning: calling a host function from a host device function is not allowed
detected during:
instantiation of "std::__cxx11::string Test::value_type_name() [with T=Test::halfScalarType]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(51): here
instantiation of "void Test::Gemm::Functor_TestBatchedSerialGemm<DeviceType, ViewType, ScalarType, ParamTagType, AlgoTagType>::run() [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(108): here
instantiation of "void Test::Gemm::impl_test_batched_gemm<DeviceType,ViewType,ScalarType,ParamTagType,AlgoTagType>(int, int, int, int, int, int, int) [with DeviceType=Kokkos::Cuda, ViewType=Kokkos::View<Test::halfScalarType ***, Kokkos::LayoutLeft, Kokkos::Cuda>, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm.hpp(151): here
instantiation of "int test_batched_gemm<DeviceType,ValueType,ScalarType,ParamTagType,AlgoTagType>() [with DeviceType=Kokkos::Cuda, ValueType=Test::halfScalarType, ScalarType=Test::halfScalarType, ParamTagType=Test::Gemm::ParamTag<KokkosBatched::Trans::NoTranspose, KokkosBatched::Trans::NoTranspose>, AlgoTagType=KokkosBatched::Algo::Level3::Blocked]"
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/kokkos-kernels/unit_test/batched/dense/Test_Batched_SerialGemm_Real.hpp(6): here

[ 92%] Linking CXX executable sparse_kk_spmv
[ 92%] Built target sparse_kk_spmv
[ 92%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 92%] Built target KokkosBlas3_gemm_perf_test
[ 92%] Linking CXX executable KokkosKernels_batched_sla_cuda
[ 92%] Linking CXX executable KokkosKernels_common_serial
[ 92%] Built target KokkosKernels_batched_sla_cuda
[ 92%] Built target KokkosKernels_common_serial
[ 92%] Linking CXX executable KokkosKernels_common_cuda
[ 92%] Built target KokkosKernels_common_cuda
[ 92%] Linking CXX executable KokkosBlas3_perf_test
[ 92%] Built target KokkosBlas3_perf_test
[ 92%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 92%] Built target KokkosKernels_batched_dla_serial
[ 92%] Linking CXX executable KokkosKernels_batched_dla_cuda
[ 92%] Built target KokkosKernels_batched_dla_cuda
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-10.1.243-Cuda_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

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

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

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

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight/KokkosKernels_PullRequest_Tpls_CUDA10_Tpls_CUDA10_LayoutRight.140/TestAll_2022-01-23_15.20.57/cuda/10.1.243/Cuda_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

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

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720 # 798 (click to expand)

[ 82%] Linking CXX executable KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_batched_dla_openmp
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/Test_Main.cpp.o
[ 83%] Built target KokkosBlas_perf_test
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o
Scanning dependencies of target KokkosKernels_batched_sla_openmp
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/Test_Main.cpp.o
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/openmp/Test_OpenMP_Common.cpp.o
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/openmp/Test_OpenMP_Batched_Sparse.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:16:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/unit_test/openmp/Test_OpenMP_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse_spmv.hpp:13:10: fatal error: Cuda/Kokkos_Cuda_Half.hpp: No such file or directory
 #include "Cuda/Kokkos_Cuda_Half.hpp"
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/openmp/Test_OpenMP_Batched_Dense.cpp.o
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Scanning dependencies of target KokkosKernels_graph_openmp
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/Test_Main.cpp.o
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/openmp/Test_OpenMP_Graph.cpp.o
[ 86%] Linking CXX executable sparse_spmv_bsr
[ 86%] Built target sparse_spmv_bsr
[ 87%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 87%] Built target KokkosBlas2_gemv_perf_test
[ 88%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 88%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 88%] Built target KokkosBlas3_gemm_perf_test
[ 88%] Built target KokkosKernels_batched_sla_openmp
[ 88%] Linking CXX executable sparse_kk_spmv
[ 88%] Built target sparse_kk_spmv
[ 88%] Linking CXX executable KokkosKernels_common_openmp
[ 88%] Built target KokkosKernels_common_openmp
[ 88%] Linking CXX executable KokkosBlas3_perf_test
[ 88%] Built target KokkosBlas3_perf_test
[ 88%] Linking CXX executable KokkosKernels_blas_openmp
[ 88%] Built target KokkosKernels_blas_openmp
[ 88%] Linking CXX executable KokkosKernels_graph_openmp
[ 88%] Built target KokkosKernels_graph_openmp
[ 89%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 89%] 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.798/TestAll_2022-01-23_15.21.49/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.798/TestAll_2022-01-23_15.21.49/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 1015600
salloc: Job allocation 1015600 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 79%] Linking CXX executable KokkosBlas_perf_test
[ 79%] Built target KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_batched_dla_openmp
[ 79%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_common_openmp
[ 80%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 81%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_sla_openmp
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/openmp/Test_OpenMP_Blas.cpp.o
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/Test_Main.cpp.o
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/openmp/Test_OpenMP_Batched_Dense.cpp.o
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o
[ 82%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/openmp/Test_OpenMP_Common.cpp.o
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/openmp/Test_OpenMP_Batched_Sparse.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:16:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/unit_test/openmp/Test_OpenMP_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight/kokkos-kernels/unit_test/sparse/Test_Sparse_spmv.hpp:13:10: fatal error: Cuda/Kokkos_Cuda_Half.hpp: No such file or directory
 #include "Cuda/Kokkos_Cuda_Half.hpp"
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 84%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 84%] Built target KokkosBlas2_gemv_perf_test
[ 84%] Linking CXX executable sparse_spmv_struct
[ 84%] Built target sparse_spmv_struct
[ 84%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 84%] Built target KokkosKernels_batched_sla_openmp
[ 85%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 85%] Built target KokkosBlas3_gemm_perf_test
[ 86%] Linking CXX executable sparse_spmv_blockcrs
[ 86%] Built target sparse_spmv_blockcrs
[ 86%] Linking CXX executable sparse_kk_spmv
[ 86%] Built target sparse_kk_spmv
[ 87%] Linking CXX executable sparse_spmv_bsr
[ 87%] Built target sparse_spmv_bsr
[ 87%] Linking CXX executable KokkosKernels_common_openmp
[ 87%] Built target KokkosKernels_common_openmp
[ 87%] Linking CXX executable KokkosBlas3_perf_test
[ 87%] Built target KokkosBlas3_perf_test
[ 87%] Linking CXX executable KokkosKernels_blas_openmp
[ 87%] Built target KokkosKernels_blas_openmp
[ 88%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 88%] 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.445/TestAll_2022-01-23_15.21.59/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.445/TestAll_2022-01-23_15.21.59/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 1015601
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 84%] Built target sparse_block_pcg
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_common_serial
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_serial
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/Test_Main.cpp.o
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/Test_Main.cpp.o
[ 84%] Linking CXX executable KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_blas_openmp
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/Test_Main.cpp.o
[ 84%] Built target KokkosBlas_perf_test
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o
[ 85%] Linking CXX executable sparse_spmv_bsr
[ 85%] Built target sparse_spmv_bsr
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/openmp/Test_OpenMP_Graph.cpp.o
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/serial/Test_Serial_Common.cpp.o
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/openmp/Test_OpenMP_Blas.cpp.o
[ 85%] Linking CXX executable KokkosBlas_dot_mv_perf_test
[ 85%] Built target KokkosBlas_dot_mv_perf_test
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:16:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/openmp/Test_OpenMP_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse_spmv.hpp:13:10: fatal error: Cuda/Kokkos_Cuda_Half.hpp: No such file or directory
 #include "Cuda/Kokkos_Cuda_Half.hpp"
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/openmp/Test_OpenMP_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Scanning dependencies of target KokkosKernels_common_openmp
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/openmp/Test_OpenMP_Common.cpp.o
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_blas_serial
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_sla_openmp
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/Test_Main.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:16:0,
                 from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/serial/Test_Serial_Sparse.cpp:5:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels/unit_test/sparse/Test_Sparse_spmv.hpp:13:10: fatal error: Cuda/Kokkos_Cuda_Half.hpp: No such file or directory
 #include "Cuda/Kokkos_Cuda_Half.hpp"
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/openmp/Test_OpenMP_Batched_Sparse.cpp.o
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/serial/Test_Serial_Blas.cpp.o
[ 87%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 87%] Built target KokkosBlas2_gemv_perf_test
[ 87%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 87%] Built target KokkosKernels_batched_sla_openmp
[ 88%] Linking CXX executable sparse_kk_spmv
[ 88%] Built target sparse_kk_spmv
[ 88%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 88%] Built target KokkosBlas3_gemm_perf_test
[ 89%] Linking CXX executable KokkosKernels_common_serial
[ 89%] Built target KokkosKernels_common_serial
[ 89%] Linking CXX executable KokkosKernels_common_openmp
[ 89%] Built target KokkosKernels_common_openmp
[ 89%] Linking CXX executable KokkosBlas3_perf_test
[ 89%] Built target KokkosBlas3_perf_test
[ 90%] Linking CXX executable KokkosKernels_blas_openmp
[ 90%] Built target KokkosKernels_blas_openmp
[ 90%] Linking CXX executable KokkosKernels_blas_serial
[ 90%] Linking CXX executable KokkosKernels_graph_openmp
[ 90%] Built target KokkosKernels_graph_openmp
[ 90%] Built target KokkosKernels_blas_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/7.2.0 openblas/0.2.20/gcc/7.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/7.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="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.789/TestAll_2022-01-23_15.22.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 1015602
salloc: Job allocation 1015602 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

                                              ^
          detected during:
            instantiation of "void KokkosSparse::Impl::mkl_symbolic(KernelHandle *, nnz_lno_t, nnz_lno_t, nnz_lno_t, a_rowmap_type, a_index_type, bool, b_rowmap_type, b_index_type, bool, c_rowmap_type, bool) [with KernelHandle=KokkosSparse::SPGEMMHandle, a_rowmap_type=Kokkos::View, Kokkos::MemoryTraits<1U>>, a_index_type=Kokkos::View, Kokkos::MemoryTraits<1U>>, b_rowmap_type=Kokkos::View, Kokkos::MemoryTraits<1U>>,
                      b_index_type=Kokkos::View, Kokkos::MemoryTraits<1U>>, c_rowmap_type=Kokkos::View, Kokkos::MemoryTraits<1U>>, nnz_lno_t=int]" at line 183 of
                      "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/sparse/impl/KokkosSparse_spgemm_symbolic_spec.hpp"
            instantiation of "void KokkosSparse::Impl::SPGEMM_SYMBOLIC::spgemm_symbolic(KernelHandle *, KernelHandle::nnz_lno_t, KernelHandle::nnz_lno_t, KernelHandle::nnz_lno_t, a_size_view_t_, a_lno_view_t, bool, b_size_view_t_, b_lno_view_t, bool, c_size_view_t_) [with KernelHandle=KokkosKernels::Experimental::KokkosKernelsHandle, a_size_view_t_=Kokkos::View, Kokkos::MemoryTraits<1U>>, a_lno_view_t=Kokkos::View, Kokkos::MemoryTraits<1U>>, b_size_view_t_=Kokkos::View, Kokkos::MemoryTraits<1U>>, b_lno_view_t=Kokkos::View, Kokkos::MemoryTraits<1U>>, c_size_view_t_=Kokkos::View,
                      Kokkos::MemoryTraits<1U>>]" at line 51 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.777/TestAll_2022-01-23_15.22.19/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp"

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp(175): error #869: parameter "values" was never referenced
MKL_INT *columns, scalar_t *values) {
^
detected during:
instantiation of "void KokkosSparse::Impl::mkl_symbolic(KernelHandle *, nnz_lno_t, nnz_lno_t, nnz_lno_t, a_rowmap_type, a_index_type, bool, b_rowmap_type, b_index_type, bool, c_rowmap_type, bool) [with KernelHandle=KokkosSparse::SPGEMMHandle<const size_t={unsigned long}, const int, const double, Kokkos::Threads::execution_space, Kokkos::HostSpace::memory_space, Kokkos::HostSpace::memory_space>, a_rowmap_type=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, a_index_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_rowmap_type=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>,
b_index_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, c_rowmap_type=Kokkos::View<size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, nnz_lno_t=int]" at line 183 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/sparse/impl/KokkosSparse_spgemm_symbolic_spec.hpp"
instantiation of "void KokkosSparse::Impl::SPGEMM_SYMBOLIC<KernelHandle, a_size_view_t_, a_lno_view_t, b_size_view_t_, b_lno_view_t, c_size_view_t_, false, true>::spgemm_symbolic(KernelHandle *, KernelHandle::nnz_lno_t, KernelHandle::nnz_lno_t, KernelHandle::nnz_lno_t, a_size_view_t_, a_lno_view_t, bool, b_size_view_t_, b_lno_view_t, bool, c_size_view_t_) [with KernelHandle=KokkosKernels::Experimental::KokkosKernelsHandle<const size_t={unsigned long}, const int, const double,
Kokkos::Threads, Kokkos::HostSpace, Kokkos::HostSpace>, a_size_view_t_=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, a_lno_view_t=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_size_view_t_=Kokkos::View<const size_t={unsigned long} *,
Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_lno_view_t=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, c_size_view_t_=Kokkos::View<size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>,
Kokkos::MemoryTraits<1U>>]" at line 51 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.777/TestAll_2022-01-23_15.22.19/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp"

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp(237): error #869: parameter "handle" was never referenced
static void apply(KernelHandle *handle, nnz_lno_t m, nnz_lno_t n, nnz_lno_t k,
^
detected during:
instantiation of "void KokkosSparse::Impl::MKLApply<KernelHandle, a_rowmap_view_type, a_index_view_type, a_values_view_type, b_rowmap_view_type, b_index_view_type, b_values_view_type, c_rowmap_view_type, c_index_view_type, c_values_view_type>::mkl_symbolic(KernelHandle *, KokkosSparse::Impl::MKLApply<KernelHandle, a_rowmap_view_type, a_index_view_type, a_values_view_type, b_rowmap_view_type, b_index_view_type, b_values_view_type, c_rowmap_view_type, c_index_view_type,
c_values_view_type>::nnz_lno_t, KokkosSparse::Impl::MKLApply<KernelHandle, a_rowmap_view_type, a_index_view_type, a_values_view_type, b_rowmap_view_type, b_index_view_type, b_values_view_type, c_rowmap_view_type, c_index_view_type, c_values_view_type>::nnz_lno_t, KokkosSparse::Impl::MKLApply<KernelHandle, a_rowmap_view_type, a_index_view_type, a_values_view_type, b_rowmap_view_type, b_index_view_type, b_values_view_type, c_rowmap_view_type, c_index_view_type,
c_values_view_type>::nnz_lno_t, a_rowmap_view_type, a_index_view_type, bool, b_rowmap_view_type, b_index_view_type, bool, c_rowmap_view_type, bool) [with KernelHandle=KokkosSparse::SPGEMMHandle<const size_t={unsigned long}, const int, const double, Kokkos::Threads::execution_space, Kokkos::HostSpace::memory_space, Kokkos::HostSpace::memory_space>, a_rowmap_view_type=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, a_index_view_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, a_values_view_type=Kokkos::View<double *, Kokkos::HostSpace::memory_space>, b_rowmap_view_type=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_index_view_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_values_view_type=Kokkos::View<double *, Kokkos::HostSpace::memory_space>, c_rowmap_view_type=Kokkos::View<size_t={unsigned long} *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, c_index_view_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, c_values_view_type=Kokkos::View<double *, Kokkos::HostSpace::memory_space>]" at line 383
instantiation of "void KokkosSparse::Impl::mkl_symbolic(KernelHandle *, nnz_lno_t, nnz_lno_t, nnz_lno_t, a_rowmap_type, a_index_type, bool, b_rowmap_type, b_index_type, bool, c_rowmap_type, bool) [with KernelHandle=KokkosSparse::SPGEMMHandle<const size_t={unsigned long}, const int, const double, Kokkos::Threads::execution_space, Kokkos::HostSpace::memory_space, Kokkos::HostSpace::memory_space>, a_rowmap_type=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft,
Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, a_index_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_rowmap_type=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>,
b_index_type=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, c_rowmap_type=Kokkos::View<size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, nnz_lno_t=int]" at line 183 of
"/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/sparse/impl/KokkosSparse_spgemm_symbolic_spec.hpp"
instantiation of "void KokkosSparse::Impl::SPGEMM_SYMBOLIC<KernelHandle, a_size_view_t_, a_lno_view_t, b_size_view_t_, b_lno_view_t, c_size_view_t_, false, true>::spgemm_symbolic(KernelHandle *, KernelHandle::nnz_lno_t, KernelHandle::nnz_lno_t, KernelHandle::nnz_lno_t, a_size_view_t_, a_lno_view_t, bool, b_size_view_t_, b_lno_view_t, bool, c_size_view_t_) [with KernelHandle=KokkosKernels::Experimental::KokkosKernelsHandle<const size_t={unsigned long}, const int, const double,
Kokkos::Threads, Kokkos::HostSpace, Kokkos::HostSpace>, a_size_view_t_=Kokkos::View<const size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, a_lno_view_t=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_size_view_t_=Kokkos::View<const size_t={unsigned long} *,
Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, b_lno_view_t=Kokkos::View<const int *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>, Kokkos::MemoryTraits<1U>>, c_size_view_t_=Kokkos::View<size_t={unsigned long} *, Kokkos::LayoutLeft, Kokkos::Device<Kokkos::HostSpace::execution_space, Kokkos::HostSpace::memory_space>,
Kokkos::MemoryTraits<1U>>]" at line 51 of "/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.777/TestAll_2022-01-23_15.22.19/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp"

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.777/TestAll_2022-01-23_15.22.19/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 2
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-18.1.163-OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=mkl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.777/TestAll_2022-01-23_15.22.19/intel/18.1.163/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
intel-18.1.163-Pthread-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Pthread --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=mkl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.777/TestAll_2022-01-23_15.22.19/intel/18.1.163/Pthread-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 1015603
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 82%] Linking CXX executable sparse_spiluk
Scanning dependencies of target KokkosKernels_graph_threads
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/Test_Main.cpp.o
[ 83%] Built target sparse_spiluk
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_threads.dir/threads/Test_Threads_Graph.cpp.o
Scanning dependencies of target KokkosKernels_blas_serial
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/Test_Main.cpp.o
[ 83%] Building CXX object unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/serial/Test_Serial_Blas.cpp.o
[ 83%] Linking CXX executable KokkosBlas_dot_perf_test
[ 83%] Linking CXX executable KokkosBlas_dot_mv_perf_test
[ 84%] Linking CXX executable sparse_sptrsv
[ 84%] Built target KokkosBlas_dot_perf_test
[ 84%] Built target KokkosBlas_dot_mv_perf_test
[ 84%] Built target sparse_sptrsv
Scanning dependencies of target KokkosKernels_graph_serial
Scanning dependencies of target KokkosKernels_common_serial
[ 84%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/Test_Main.cpp.o
[ 85%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_sla_serial
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_serial
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/Test_Main.cpp.o
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_graph_serial.dir/serial/Test_Serial_Graph.cpp.o
[ 86%] Building CXX object unit_test/CMakeFiles/KokkosKernels_common_serial.dir/serial/Test_Serial_Common.cpp.o
[ 87%] Linking CXX executable sparse_spmv_blockcrs
[ 87%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_serial.dir/serial/Test_Serial_Batched_Sparse.cpp.o
[ 87%] Linking CXX executable KokkosBlas_perf_test
[ 88%] Building CXX object unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o
[ 88%] Built target sparse_spmv_blockcrs
[ 88%] Built target KokkosBlas_perf_test
Scanning dependencies of target KokkosKernels_batched_sla_threads
[ 88%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_batched_dla_threads
[ 88%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/Test_Main.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/unit_test/serial/Test_Serial_Sparse.cpp:5:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/unit_test/sparse/Test_Sparse.hpp:16:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/unit_test/sparse/Test_Sparse_spmv.hpp:13:10: fatal error: 'Cuda/Kokkos_Cuda_Half.hpp' file not found
#include "Cuda/Kokkos_Cuda_Half.hpp"
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~
[ 89%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_sla_threads.dir/threads/Test_Threads_Batched_Sparse.cpp.o
1 error generated.
make[2]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/serial/Test_Serial_Sparse.cpp.o] Error 1
make[1]: *** [unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 89%] Building CXX object unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/threads/Test_Threads_Batched_Dense.cpp.o
[ 89%] Linking CXX executable KokkosBlas3_gemm_perf_test
[ 89%] Built target KokkosBlas3_gemm_perf_test
[ 89%] Linking CXX executable KokkosBlas2_gemv_perf_test
[ 89%] Built target KokkosBlas2_gemv_perf_test
[ 89%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 89%] Built target KokkosKernels_batched_sla_serial
[ 89%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 89%] Built target KokkosKernels_batched_sla_threads
[ 90%] Linking CXX executable sparse_kk_spmv
[ 90%] Built target sparse_kk_spmv
[ 90%] Linking CXX executable KokkosBlas3_perf_test
[ 90%] Built target KokkosBlas3_perf_test
[ 90%] Linking CXX executable KokkosKernels_common_serial
[ 90%] Built target KokkosKernels_common_serial
[ 91%] Linking CXX executable KokkosKernels_blas_serial
[ 91%] Built target KokkosKernels_blas_serial
[ 91%] Linking CXX executable KokkosKernels_graph_threads
[ 91%] Built target KokkosKernels_graph_threads
[ 91%] Linking CXX executable KokkosKernels_graph_serial
[ 91%] Built target KokkosKernels_graph_serial
[ 91%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 91%] Built target KokkosKernels_batched_dla_threads
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Pthread_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Pthread,Serial --arch=SKX --compiler=/home/projects/x86-64/spack/opt/spack/linux-rhel7-x86_64/gcc-10.2.0/llvm-10.0.1-nldepabrxk2zcykcq7rlky5sr53hnm63/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.182/TestAll_2022-01-23_15.22.28/clang/10.0.1/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 1015604
salloc: Job allocation 1015604 has been revoked.
Build step 'Execute shell' marked build as failure
Finished: FAILURE

typename b_rowmap_view_type, typename b_index_view_type,
typename b_values_view_type, typename c_rowmap_view_type,
typename c_index_view_type, typename c_values_view_type>
class MKLApply {
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 prefer for this to be named something else for consistency - in KokkosKernels "apply" means applying a linear operator to a dense vector.

Copy link
Contributor

Choose a reason for hiding this comment

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

Yes, why not name if MKL_SPGEMM?
That is both more descriptive and follows Kokkos Kernels naming scheme.

Copy link
Author

Choose a reason for hiding this comment

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

Renamed to MKL_SPMM on ea3d52a (please let me know if you come up with a better name)

}
};

apply(handle, m, n, k, row_mapA, entriesA, valuesA, transposeA, row_mapB,
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

Copy link
Author

Choose a reason for hiding this comment

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

Renamed to spmm() on ea3d52a (please let me know if you come up with a better name)

src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from 3a4ebf4 to c7cec3a Compare February 2, 2022 21:32
@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'.

@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from c7cec3a to b6b494f Compare February 17, 2022 14:54
@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'.

@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from fd3ebc8 to b6b494f Compare February 17, 2022 21:18
@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Feb 17, 2022
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Feb 17, 2022
@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_Tpls_CUDA9_Tpls_CUDA10_Tpls_CUDA10_LayoutRight_GCC720_Light_GCC720_GCC740

  • Build Num: 85
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 856
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 502
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 846
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 834
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 239
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (NexGenAnalytics/kokkos-kernels)
  • Branch: mkl-spgemm-refactoring
  • SHA: b6b494f
  • Mode: TEST_REPO

Pull Request Author: MikolajZuzek

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

  • Build Num: 85
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 856
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 502
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 846
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 834
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 239
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA b6b494f
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8be8df0
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9_Tpls_CUDA10_Tpls_CUDA10_LayoutRight_GCC720_Light_GCC720_GCC740 # 85 (click to expand)

Going to test compilers:  gcc/7.2.0
Testing compiler gcc/7.2.0
  Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options: 
kokkos cuda options: 
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized 
extra_args: 
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
  PASSED gcc-7.2.0-OpenMP-release
  Starting job gcc-7.2.0-Serial-release
kokkos devices: Serial
kokkos arch: Power8,Pascal60
kokkos options: 
kokkos cuda options: 
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized 
extra_args: 
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
  PASSED gcc-7.2.0-Serial-release
  Starting job gcc-7.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: Power8,Pascal60
kokkos options: 
kokkos cuda options: 
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized 
extra_args: 
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
  PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=330 run_time=77
gcc-7.2.0-OpenMP_Serial-release build_time=443 run_time=211
gcc-7.2.0-Serial-release build_time=305 run_time=85
Running on machine: weaver
KokkosKernels Repository Status:  b6b494f23831e0a465cd57ff084c6aee360c73be Guard whole file with ENABLE_TPL_MKL

Kokkos Repository Status: 87130150ecec25912019a3da9ad296219da56b41 Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch

Going to test compilers: gcc/7.2.0 gcc/7.4.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-Serial-release
kokkos devices: Serial
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-Serial-release
Testing compiler gcc/7.4.0
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Starting job gcc-7.4.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.4.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=326 run_time=83
gcc-7.2.0-Serial-release build_time=301 run_time=82
gcc-7.4.0-OpenMP-release build_time=326 run_time=80
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_Tpls_CUDA9_Tpls_CUDA10_Tpls_CUDA10_LayoutRight_GCC720_Light_GCC720_GCC740
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720 # 856 (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/NexGenAnalytics/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/NexGenAnalytics/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/NexGenAnalytics/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse b6b494f23831e0a465cd57ff084c6aee360c73be^{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 b6b494f23831e0a465cd57ff084c6aee360c73be (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 b6b494f23831e0a465cd57ff084c6aee360c73be # timeout=10
Commit message: "Guard whole file with ENABLE_TPL_MKL"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 30157b103e713ccdd3028eba9b425d3106fc8c20 # 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 origin/develop^{commit} # timeout=10
Checking out Revision 87130150ecec25912019a3da9ad296219da56b41 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 87130150ecec25912019a3da9ad296219da56b41 # timeout=10
Commit message: "Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 0d19eebfa26d076f551d5b7a43230f627887df21 # timeout=10
[KokkosKernels_PullRequest_GCC720] $ /bin/bash -el /tmp/jenkins5397846421571836352.sh
salloc: Granted job allocation 1019230
salloc: Waiting for resource configuration
salloc: Nodes blake23 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  b6b494f23831e0a465cd57ff084c6aee360c73be Guard whole file with ENABLE_TPL_MKL

Kokkos Repository Status: 87130150ecec25912019a3da9ad296219da56b41 Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch

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
PASSED gcc-7.2.0-Pthread_Serial-release
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=285 run_time=94
gcc-7.2.0-Pthread_Serial-release build_time=395 run_time=187
salloc: Relinquishing job allocation 1019230
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light_LayoutRight # 502 (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/NexGenAnalytics/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/NexGenAnalytics/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/NexGenAnalytics/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse b6b494f23831e0a465cd57ff084c6aee360c73be^{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 b6b494f23831e0a465cd57ff084c6aee360c73be (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 b6b494f23831e0a465cd57ff084c6aee360c73be # timeout=10
Commit message: "Guard whole file with ENABLE_TPL_MKL"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 30157b103e713ccdd3028eba9b425d3106fc8c20 # 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 origin/develop^{commit} # timeout=10
Checking out Revision 87130150ecec25912019a3da9ad296219da56b41 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 87130150ecec25912019a3da9ad296219da56b41 # timeout=10
Commit message: "Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 0d19eebfa26d076f551d5b7a43230f627887df21 # timeout=10
[KokkosKernels_PullRequest_GCC720_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins4464373326659302310.sh
salloc: Granted job allocation 1019231
salloc: Waiting for resource configuration
salloc: Nodes blake24 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  b6b494f23831e0a465cd57ff084c6aee360c73be Guard whole file with ENABLE_TPL_MKL

Kokkos Repository Status: 87130150ecec25912019a3da9ad296219da56b41 Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch

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
PASSED gcc-7.2.0-Pthread_Serial-release
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -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
PASSED gcc-7.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=274 run_time=88
gcc-7.2.0-Pthread_Serial-release build_time=395 run_time=165
salloc: Relinquishing job allocation 1019231
salloc: Job allocation 1019231 has been revoked.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC720_Light_LayoutRight
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC720 # 846 (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/NexGenAnalytics/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/NexGenAnalytics/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/NexGenAnalytics/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse b6b494f23831e0a465cd57ff084c6aee360c73be^{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 b6b494f23831e0a465cd57ff084c6aee360c73be (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 b6b494f23831e0a465cd57ff084c6aee360c73be # timeout=10
Commit message: "Guard whole file with ENABLE_TPL_MKL"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 30157b103e713ccdd3028eba9b425d3106fc8c20 # 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 origin/develop^{commit} # timeout=10
Checking out Revision 87130150ecec25912019a3da9ad296219da56b41 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 87130150ecec25912019a3da9ad296219da56b41 # timeout=10
Commit message: "Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 0d19eebfa26d076f551d5b7a43230f627887df21 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720] $ /bin/bash -el /tmp/jenkins4240124407712500578.sh
salloc: Granted job allocation 1019232
salloc: Waiting for resource configuration
salloc: Nodes blake25 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  b6b494f23831e0a465cd57ff084c6aee360c73be Guard whole file with ENABLE_TPL_MKL

Kokkos Repository Status: 87130150ecec25912019a3da9ad296219da56b41 Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch

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
PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release build_time=420 run_time=177
salloc: Relinquishing job allocation 1019232
salloc: Job allocation 1019232 has been revoked.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC720
Finished: SUCCESS

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

[ 45%] Building CXX object src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o
[ 45%] Building CXX object src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o
[ 45%] Building CXX object src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(93): error #114: function "KokkosSparse::Impl::MKLSparseMatrix::MKLSparseMatrix(int, int, int *, int *, value_type *) [with value_type=Kokkos::complex]" was referenced but not defined
    inline MKLSparseMatrix(const MKL_INT num_rows, const MKL_INT num_cols,
           ^

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(100): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::export_data [with value_type=Kokkos::complex]" was referenced but not defined
inline void export_data(MKL_INT &num_rows, MKL_INT &num_cols,
^

[ 46%] Building CXX object src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o
compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.834/TestAll_2022-02-17_14.37.41/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 2
make[2]: *** Waiting for unfinished jobs....
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(93): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::MKLSparseMatrix(int, int, int *, int *, value_type *) [with value_type=Kokkos::complex]" was referenced but not defined
inline MKLSparseMatrix(const MKL_INT num_rows, const MKL_INT num_cols,
^

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(100): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::export_data [with value_type=Kokkos::complex]" was referenced but not defined
inline void export_data(MKL_INT &num_rows, MKL_INT &num_cols,
^

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.834/TestAll_2022-02-17_14.37.41/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_symbolic/Sparse_spgemm_symbolic_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 2
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(93): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::MKLSparseMatrix(int, int, int *, int *, value_type *) [with value_type=Kokkos::complex]" was referenced but not defined
inline MKLSparseMatrix(const MKL_INT num_rows, const MKL_INT num_cols,
^

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(100): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::export_data [with value_type=Kokkos::complex]" was referenced but not defined
inline void export_data(MKL_INT &num_rows, MKL_INT &num_cols,
^

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.834/TestAll_2022-02-17_14.37.41/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 2
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(93): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::MKLSparseMatrix(int, int, int *, int *, value_type *) [with value_type=Kokkos::complex]" was referenced but not defined
inline MKLSparseMatrix(const MKL_INT num_rows, const MKL_INT num_cols,
^

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels/src/common/KokkosKernels_SparseUtils_mkl.hpp(100): error #114: function "KokkosSparse::Impl::MKLSparseMatrix<value_type>::export_data [with value_type=Kokkos::complex]" was referenced but not defined
inline void export_data(MKL_INT &num_rows, MKL_INT &num_cols,
^

compilation aborted for /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.834/TestAll_2022-02-17_14.37.41/intel/18.1.163/Pthread-release/src/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp (code 2)
make[2]: *** [src/CMakeFiles/kokkoskernels.dir/impl/generated_specializations_cpp/spgemm_numeric/Sparse_spgemm_numeric_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE_MEMSPACE_HOSTSPACE.cpp.o] Error 2
make[1]: *** [src/CMakeFiles/kokkoskernels.dir/all] Error 2
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
intel-18.1.163-OpenMP-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=mkl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.834/TestAll_2022-02-17_14.37.41/intel/18.1.163/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
intel-18.1.163-Pthread-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 intel/compilers/18.1.163

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Pthread --arch=SKX --compiler=/home/projects/x86-64/intel/compilers/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="14" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=mkl --with-options= --with-cuda-options= --no-examples

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

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/KokkosKernels_PullRequest_Tpls_INTEL18.834/TestAll_2022-02-17_14.37.41/intel/18.1.163/Pthread-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 1019233
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/NexGenAnalytics/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/NexGenAnalytics/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/NexGenAnalytics/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse b6b494f23831e0a465cd57ff084c6aee360c73be^{commit} # timeout=10
Checking out Revision b6b494f23831e0a465cd57ff084c6aee360c73be (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 b6b494f23831e0a465cd57ff084c6aee360c73be # timeout=10
Commit message: "Guard whole file with ENABLE_TPL_MKL"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 30157b103e713ccdd3028eba9b425d3106fc8c20 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 87130150ecec25912019a3da9ad296219da56b41 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 87130150ecec25912019a3da9ad296219da56b41 # timeout=10
Commit message: "Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 0d19eebfa26d076f551d5b7a43230f627887df21 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins3900244745623928133.sh
salloc: Pending job allocation 1019234
salloc: job 1019234 queued and waiting for resources
salloc: job 1019234 has been allocated resources
salloc: Granted job allocation 1019234
salloc: Waiting for resource configuration
salloc: Nodes blake25 are ready for job
Running on machine: blake
KokkosKernels Repository Status:  b6b494f23831e0a465cd57ff084c6aee360c73be Guard whole file with ENABLE_TPL_MKL

Kokkos Repository Status: 87130150ecec25912019a3da9ad296219da56b41 Merge pull request #4735 from Azrael3000/Azrael3000-Werror-patch

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-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 -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Pthread_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Pthread_Serial-release build_time=417 run_time=161
salloc: Relinquishing job allocation 1019234
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

@mzuzek mzuzek force-pushed the mkl-spgemm-refactoring branch from db135df to 9d4de66 Compare March 4, 2022 14:59
@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'.

Copy link
Contributor

@brian-kelley brian-kelley left a comment

Choose a reason for hiding this comment

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

Thanks Mikolaj, this looks good.

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.

Mostly good, just a few comments left to address

src/sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp Outdated Show resolved Hide resolved
typename b_rowmap_view_type, typename b_index_view_type,
typename b_values_view_type, typename c_rowmap_view_type,
typename c_index_view_type, typename c_values_view_type>
class MKLApply {
Copy link
Contributor

Choose a reason for hiding this comment

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

Yes, why not name if MKL_SPGEMM?
That is both more descriptive and follows Kokkos Kernels naming scheme.

src/common/KokkosKernels_SparseUtils_mkl.hpp Show resolved Hide resolved
src/common/KokkosKernels_SparseUtils_mkl.hpp Show resolved Hide resolved
@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Mar 18, 2022
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Mar 18, 2022
@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_Tpls_CUDA9_Tpls_CUDA10_Tpls_CUDA10_LayoutRight_GCC720_Light_GCC720_GCC740

  • Build Num: 125
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 896
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 542
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 886
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 874
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 279
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (NexGenAnalytics/kokkos-kernels)
  • Branch: mkl-spgemm-refactoring
  • SHA: 9d4de66
  • Mode: TEST_REPO

Pull Request Author: MikolajZuzek

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

  • Build Num: 125
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 896
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light_LayoutRight

  • Build Num: 542
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 886
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 874
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 279
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH mkl-spgemm-refactoring
KOKKOSKERNELS_SOURCE_REPO https://github.com/NexGenAnalytics/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 9d4de66
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1f7a45e
PR_LABELS
PULLREQUESTNUM 1244
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

2 similar comments
@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

@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 c6d4b00 into kokkos:develop Mar 21, 2022
@mzuzek mzuzek deleted the mkl-spgemm-refactoring branch March 21, 2022 21:37
@mzuzek mzuzek mentioned this pull request Mar 21, 2022
@mzuzek
Copy link
Author

mzuzek commented Mar 21, 2022

@lucbv @brian-kelley

Thank you for all your comments and for the merge.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants