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

Add support for SYCL + MKL GEMM #2062

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from

Conversation

cwpearson
Copy link
Contributor

@cwpearson cwpearson commented Dec 6, 2023

Kokkos::View<SCALAR_TYPE**, LAYOUT, \
Kokkos::Device<ExecSpace, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> >, \
true, ETI_SPEC_AVAIL> { \
Copy link
Contributor

Choose a reason for hiding this comment

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

Can you replace ETI_SPEC_AVAIL with:

gemm_tpl_spec_avail<ExecSpace, 
                                        Kokkos::View<const SCALAR**, LAYOUT, Kokkos::Device<ExecSpace, MEM_SPACE, Kokkos::MemoryTraits<Kokkos::Unmanaged>>,
                                        Kokkos::View<const SCALAR_TYPE**, LAYOUT, Kokkos::Device<ExecSpace, MEM_SPACE>, Kokkos::MemoryTraits<Kokkos::Unmanaged>>,
                                        Kokkos::View<SCALAR_TYPE**, LAYOUT, Kokkos::Device<ExecSpace, MEM_SPACE>, Kokkos::MemoryTraits<Kokkos::Unmanaged>>::value>

With that you can remove the ETI_SPEC_AVAIL from the list of macro parameters.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I thought that parameter had to do with whether the ETI was available, not the TPL - do you mean gemm_eti_spec_avail...?

Copy link
Contributor Author

@cwpearson cwpearson Dec 11, 2023

Choose a reason for hiding this comment

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

nrm1 is like that, but I think that means this TPL will only be available if the type combo was ETI'd as well.

Copy link
Contributor

Choose a reason for hiding this comment

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

That's correct I think my snippet above is wrong, my bad for typing it too fast.
It should really read gemm_eti_spec_avail<...> which means we actually query the struct that knows if this eti is available or not instead of blindly trying both which ends up instantiating twice the amount of kernels...

@cwpearson

This comment was marked as resolved.

@cwpearson

This comment was marked as outdated.

@cwpearson
Copy link
Contributor Author

9: [ RUN      ] sycl_test.gemm_double
9: [       OK ] sycl_test.gemm_double (1414 ms)

@cwpearson cwpearson force-pushed the feature/mkl-gemm branch 2 times, most recently from bf41c0f to 257ad0c Compare December 7, 2023 17:49
@cwpearson cwpearson removed the AT: WIP label Dec 11, 2023
@cwpearson cwpearson marked this pull request as ready for review December 11, 2023 19:01
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1105
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 692
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 363
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 350
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 351
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 355
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 327
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 837
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 832
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 826
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 347
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/mkl-gemm
  • SHA: 07e23f5
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1105
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 692
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 363
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 350
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 351
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 355
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 327
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 837
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 832
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 826
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 347
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 07e23f5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1105 (click to expand)

b' > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins11059764014544771934.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <66511> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  681b56dcc6f8853848abda3611e334356737964b Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release build_time=1350 run_time=438'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  681b56dcc6f8853848abda3611e334356737964b Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release build_time=1669 run_time=426'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 692 (click to expand)

b''
b''
b'Going to test compilers:  gcc/9.3.0'
b'Testing compiler gcc/9.3.0'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: Power8,Pascal60'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: Power8,Pascal60'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-Serial-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: Power8,Pascal60'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-9.3.0-OpenMP-release build_time=540 run_time=105'
b'gcc-9.3.0-OpenMP_Serial-release build_time=726 run_time=248'
b'gcc-9.3.0-Serial-release build_time=489 run_time=98'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  c8a680330de2f1f1e884500814c02c5c20acb416 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gcc/9.3.0'
b'Testing compiler gcc/9.3.0'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-9.3.0-OpenMP-release build_time=512 run_time=102'
b'gcc-9.3.0-Serial-release build_time=472 run_time=97'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021 # 363 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 07e23f5a5692d391a3a605a161df4a20279cbc7c^{commit} # timeout=10'
b'Checking out Revision 07e23f5a5692d391a3a605a161df4a20279cbc7c (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'Commit message: "add a comment"'
b' > git rev-list --no-walk d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins4095863371302821751.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124473 queued and waiting for resources'
b'srun: job 2124473 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  d0081f7e81d8ec7201a999d01db3c67f6188fcef Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=470 run_time=123'
b'gnu-10.2.1-Threads_Serial-release build_time=635 run_time=211'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021_Light_LayoutRight # 350 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 07e23f5a5692d391a3a605a161df4a20279cbc7c^{commit} # timeout=10'
b'Checking out Revision 07e23f5a5692d391a3a605a161df4a20279cbc7c (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'Commit message: "add a comment"'
b' > git rev-list --no-walk d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins1073648015570717088.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124474 queued and waiting for resources'
b'srun: job 2124474 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  c3faedf6358a6e4b34160c286b9ee4f6c9e89067 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=423 run_time=111'
b'gnu-10.2.1-Threads_Serial-release build_time=576 run_time=190'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 351 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 07e23f5a5692d391a3a605a161df4a20279cbc7c^{commit} # timeout=10'
b'Checking out Revision 07e23f5a5692d391a3a605a161df4a20279cbc7c (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'Commit message: "add a comment"'
b' > git rev-list --no-walk d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins2581290831482328792.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124475 queued and waiting for resources'
b'srun: job 2124475 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  8dd694a69629c26dd6ebdcaffab2fe15131e5201 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release build_time=661 run_time=234'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19_solo # 355 (click to expand)

b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr2/Blas2_syr2_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr2/Blas2_syr2_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/tpls/KokkosLapack_Host_tpl.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/gesv/Lapack_gesv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 36%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/gesv/Lapack_gesv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 36%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/trtri/Lapack_trtri_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 37%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/trtri/Lapack_trtri_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 37%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 37%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/tpls/KokkosKernels_tpl_handles_decl.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Controls.hpp(27),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp(22),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.355/TestAll_2023-12-11_15.29.18/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp(21):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/tpls/KokkosBlas_tpl_spec.hpp(235): catastrophic error: cannot open source file "oneapi/mkl/types.hpp"'
b'  #include '
b'                                 ^'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.355/TestAll_2023-12-11_15.29.18/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 4)'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:1322: CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 4'
b'make[2]: *** Waiting for unfinished jobs....'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/tpls/KokkosKernels_tpl_handles_decl.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Controls.hpp(27),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp(22),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.355/TestAll_2023-12-11_15.29.18/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp(21):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/tpls/KokkosBlas_tpl_spec.hpp(235): catastrophic error: cannot open source file "oneapi/mkl/types.hpp"'
b'  #include '
b'                                 ^'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.355/TestAll_2023-12-11_15.29.18/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 4)'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:1336: CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 4'
b'make[1]: *** [CMakeFiles/Makefile2:1153: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.355/TestAll_2023-12-11_15.29.18/intel/19.0.5.281/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'intel-19.0.5.281-Threads-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.355/TestAll_2023-12-11_15.29.18/intel/19.0.5.281/Threads-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo127: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 327 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 07e23f5a5692d391a3a605a161df4a20279cbc7c^{commit} # timeout=10'
b'Checking out Revision 07e23f5a5692d391a3a605a161df4a20279cbc7c (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'Commit message: "add a comment"'
b' > git rev-list --no-walk d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins2336827608681523367.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124477 queued and waiting for resources'
b'srun: job 2124477 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  b0d17b16fb523d1326afebf7b76852e25d05d0bb Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  llvm/10.0.1'
b'Testing compiler llvm/10.0.1'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'  Starting job llvm-10.0.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED llvm-10.0.1-Threads_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release build_time=693 run_time=219'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b''
b'Currently Loaded Modules:'
b'  1) gcc/10.2.0       11) numactl/2.0.12          21) parmetis/4.0.3'
b'  2) autoconf/2.69    12) hwloc/1.11.11           22) metis/5.1.0'
b'  3) automake/1.16.1  13) pmix/2.2.3              23) openblas/0.3.4'
b'  4) libtool/2.4.6    14) ucx/1.7.0               24) superlu/5.2.1'
b'  5) cmake/3.17.0     15) openmpi/4.0.2           25) superlu-dist/5.4.0'
b'  6) git/2.19.2       16) curl/7.71.0             26) boost/1.72.0'
b'  7) zlib/1.2.11      17) netcdf-c/4.6.3          27) fftw/3.3.8'
b'  8) bzip2/1.0.6      18) parallel-netcdf/1.11.1  28) singularity/3.5.3'
b'  9) xz/5.2.4         19) hdf5/1.10.5             29) devpack-gnu10/20201002'
b' 10) yaml-cpp/0.6.2   20) cgns/3.4.0'
b''
b' '
b''
b''
b'Currently Loaded Modules:'
b'  1) cmake/3.17.0'
b''
b' '
b''
b'salloc: Granted job allocation 4637'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  b4849026276a2cf497fb99d7574e9e3cf324863a Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  armpl/21.1.0'
b'Testing compiler armpl/21.1.0'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED armpl-21.1.0-OpenMP-release'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED armpl-21.1.0-Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release build_time=2008 run_time=1083'
b'armpl-21.1.0-Serial-release build_time=1816 run_time=241'
b'salloc: Relinquishing job allocation 4637'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.19.2'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins2237625516261563963.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b''
b'Currently Loaded Modules:'
b'  1) gcc/10.2.0       11) numactl/2.0.12          21) parmetis/4.0.3'
b'  2) autoconf/2.69    12) hwloc/1.11.11           22) metis/5.1.0'
b'  3) automake/1.16.1  13) pmix/2.2.3              23) openblas/0.3.4'
b'  4) libtool/2.4.6    14) ucx/1.7.0               24) superlu/5.2.1'
b'  5) cmake/3.17.0     15) openmpi/4.0.2           25) superlu-dist/5.4.0'
b'  6) git/2.19.2       16) curl/7.71.0             26) boost/1.72.0'
b'  7) zlib/1.2.11      17) netcdf-c/4.6.3          27) fftw/3.3.8'
b'  8) bzip2/1.0.6      18) parallel-netcdf/1.11.1  28) singularity/3.5.3'
b'  9) xz/5.2.4         19) hdf5/1.10.5             29) devpack-gnu10/20201002'
b' 10) yaml-cpp/0.6.2   20) cgns/3.4.0'
b''
b' '
b''
b''
b'Currently Loaded Modules:'
b'  1) cmake/3.17.0'
b''
b' '
b''
b'salloc: Granted job allocation 4638'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  e7e76e48ad7f78971f8ee642bdad8fe9171956fc Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gcc/10.2.0'
b'Testing compiler gcc/10.2.0'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'  Starting job gcc-10.2.0-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-10.2.0-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release build_time=2837 run_time=1983'
b'salloc: Relinquishing job allocation 4638'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_ROCM560 # 826 (click to expand)

b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse 07e23f5a5692d391a3a605a161df4a20279cbc7c^{commit} # timeout=10'
b'Checking out Revision 07e23f5a5692d391a3a605a161df4a20279cbc7c (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'Commit message: "add a comment"'
b' > git rev-list --no-walk d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'First time build. Skipping changelog.'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_ROCM560] $ /bin/bash -el /tmp/jenkins849101417257654561.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'ort' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  77bf4899c0d33b8fea83c1075fb6cb61bae67d04 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA90A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=1351 run_time=315'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560 # 347 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 07e23f5a5692d391a3a605a161df4a20279cbc7c^{commit} # timeout=10'
b'Checking out Revision 07e23f5a5692d391a3a605a161df4a20279cbc7c (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'Commit message: "add a comment"'
b' > git rev-list --no-walk d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560] $ /bin/bash -el /tmp/jenkins1092276973055950217.sh'
b"Merge made by the 'ort' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  d7f3407c647868b6fee309482e1fa7fe83243ffa Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=1422 run_time=319'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'Finished: SUCCESS'
b''

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1106
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 693
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 364
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 351
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 352
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 356
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 328
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 838
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 833
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 827
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 348
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/mkl-gemm
  • SHA: 550dee8
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1106
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 693
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 364
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 351
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 352
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 356
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 328
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 838
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 833
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 827
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 348
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 550dee8
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1106 (click to expand)

b' > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins15017762568842619808.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <66547> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  a91598cc4e2262da0261372c174c346cc0a4eebb Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release build_time=2358 run_time=811'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  a91598cc4e2262da0261372c174c346cc0a4eebb Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release build_time=1906 run_time=423'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 # 693 (click to expand)

b''
b''
b'Going to test compilers:  gcc/9.3.0'
b'Testing compiler gcc/9.3.0'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: Power8,Pascal60'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: Power8,Pascal60'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-Serial-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: Power8,Pascal60'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-9.3.0-OpenMP-release build_time=658 run_time=106'
b'gcc-9.3.0-OpenMP_Serial-release build_time=755 run_time=252'
b'gcc-9.3.0-Serial-release build_time=562 run_time=107'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  42fd56beec61f6db4dc438a0db51c991aedb45d7 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gcc/9.3.0'
b'Testing compiler gcc/9.3.0'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-9.3.0-OpenMP-release build_time=511 run_time=106'
b'gcc-9.3.0-Serial-release build_time=469 run_time=96'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021 # 364 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 550dee8593ca2ace81357bcb3ab387549f4aa4be^{commit} # timeout=10'
b'Checking out Revision 550dee8593ca2ace81357bcb3ab387549f4aa4be (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 550dee8593ca2ace81357bcb3ab387549f4aa4be # timeout=10'
b'Commit message: "formatting"'
b' > git rev-list --no-walk 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins1361763747868155141.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  8286fb2a8346eaeac8ebadb500a5ab72d3a2c72a Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=473 run_time=124'
b'gnu-10.2.1-Threads_Serial-release build_time=629 run_time=211'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021_Light_LayoutRight # 351 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 550dee8593ca2ace81357bcb3ab387549f4aa4be^{commit} # timeout=10'
b'Checking out Revision 550dee8593ca2ace81357bcb3ab387549f4aa4be (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 550dee8593ca2ace81357bcb3ab387549f4aa4be # timeout=10'
b'Commit message: "formatting"'
b' > git rev-list --no-walk 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins433695216101258512.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  94baef4d88ebf3088dcbd2a4fded4894ea332fcc Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=426 run_time=112'
b'gnu-10.2.1-Threads_Serial-release build_time=580 run_time=188'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 352 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 550dee8593ca2ace81357bcb3ab387549f4aa4be^{commit} # timeout=10'
b'Checking out Revision 550dee8593ca2ace81357bcb3ab387549f4aa4be (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 550dee8593ca2ace81357bcb3ab387549f4aa4be # timeout=10'
b'Commit message: "formatting"'
b' > git rev-list --no-walk 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins7679628686196372807.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  39d87e21c3ea18de725433d40c6c763d8041df7c Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release build_time=661 run_time=238'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19_solo # 356 (click to expand)

b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr2/Blas2_syr2_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr2/Blas2_syr2_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/tpls/KokkosLapack_Host_tpl.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/gesv/Lapack_gesv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 36%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/gesv/Lapack_gesv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 36%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/trtri/Lapack_trtri_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 37%] Building CXX object CMakeFiles/kokkoskernels.dir/lapack/eti/generated_specializations_cpp/trtri/Lapack_trtri_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 37%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 37%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/tpls/KokkosKernels_tpl_handles_decl.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Controls.hpp(27),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp(22),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.356/TestAll_2023-12-12_09.27.42/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp(21):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/tpls/KokkosBlas_tpl_spec.hpp(235): catastrophic error: cannot open source file "oneapi/mkl/types.hpp"'
b'  #include '
b'                                 ^'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.356/TestAll_2023-12-12_09.27.42/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 4)'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:1322: CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 4'
b'make[2]: *** Waiting for unfinished jobs....'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/tpls/KokkosKernels_tpl_handles_decl.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Controls.hpp(27),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp(20),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp(22),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.356/TestAll_2023-12-12_09.27.42/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp(21):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/tpls/KokkosBlas_tpl_spec.hpp(235): catastrophic error: cannot open source file "oneapi/mkl/types.hpp"'
b'  #include '
b'                                 ^'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.356/TestAll_2023-12-12_09.27.42/intel/19.0.5.281/Threads-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 4)'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:1336: CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 4'
b'make[1]: *** [CMakeFiles/Makefile2:1153: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.356/TestAll_2023-12-12_09.27.42/intel/19.0.5.281/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'intel-19.0.5.281-Threads-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.356/TestAll_2023-12-12_09.27.42/intel/19.0.5.281/Threads-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo324: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 328 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 550dee8593ca2ace81357bcb3ab387549f4aa4be^{commit} # timeout=10'
b'Checking out Revision 550dee8593ca2ace81357bcb3ab387549f4aa4be (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 550dee8593ca2ace81357bcb3ab387549f4aa4be # timeout=10'
b'Commit message: "formatting"'
b' > git rev-list --no-walk 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins7274070647264191408.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2125599 queued and waiting for resources'
b'srun: job 2125599 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  e01a377402be2191677ab8812c5fe25975c53b0f Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  llvm/10.0.1'
b'Testing compiler llvm/10.0.1'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'  Starting job llvm-10.0.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED llvm-10.0.1-Threads_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release build_time=699 run_time=223'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b''
b'Currently Loaded Modules:'
b'  1) gcc/10.2.0       11) numactl/2.0.12          21) parmetis/4.0.3'
b'  2) autoconf/2.69    12) hwloc/1.11.11           22) metis/5.1.0'
b'  3) automake/1.16.1  13) pmix/2.2.3              23) openblas/0.3.4'
b'  4) libtool/2.4.6    14) ucx/1.7.0               24) superlu/5.2.1'
b'  5) cmake/3.17.0     15) openmpi/4.0.2           25) superlu-dist/5.4.0'
b'  6) git/2.19.2       16) curl/7.71.0             26) boost/1.72.0'
b'  7) zlib/1.2.11      17) netcdf-c/4.6.3          27) fftw/3.3.8'
b'  8) bzip2/1.0.6      18) parallel-netcdf/1.11.1  28) singularity/3.5.3'
b'  9) xz/5.2.4         19) hdf5/1.10.5             29) devpack-gnu10/20201002'
b' 10) yaml-cpp/0.6.2   20) cgns/3.4.0'
b''
b' '
b''
b''
b'Currently Loaded Modules:'
b'  1) cmake/3.17.0'
b''
b' '
b''
b'salloc: Granted job allocation 4640'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  dce04aab80bccab42f4eb6259d9d4f488dd818cd Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  armpl/21.1.0'
b'Testing compiler armpl/21.1.0'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED armpl-21.1.0-OpenMP-release'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED armpl-21.1.0-Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release build_time=2450 run_time=1504'
b'armpl-21.1.0-Serial-release build_time=1854 run_time=239'
b'salloc: Relinquishing job allocation 4640'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.19.2'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins6739566252815083106.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b''
b'Currently Loaded Modules:'
b'  1) gcc/10.2.0       11) numactl/2.0.12          21) parmetis/4.0.3'
b'  2) autoconf/2.69    12) hwloc/1.11.11           22) metis/5.1.0'
b'  3) automake/1.16.1  13) pmix/2.2.3              23) openblas/0.3.4'
b'  4) libtool/2.4.6    14) ucx/1.7.0               24) superlu/5.2.1'
b'  5) cmake/3.17.0     15) openmpi/4.0.2           25) superlu-dist/5.4.0'
b'  6) git/2.19.2       16) curl/7.71.0             26) boost/1.72.0'
b'  7) zlib/1.2.11      17) netcdf-c/4.6.3          27) fftw/3.3.8'
b'  8) bzip2/1.0.6      18) parallel-netcdf/1.11.1  28) singularity/3.5.3'
b'  9) xz/5.2.4         19) hdf5/1.10.5             29) devpack-gnu10/20201002'
b' 10) yaml-cpp/0.6.2   20) cgns/3.4.0'
b''
b' '
b''
b''
b'Currently Loaded Modules:'
b'  1) cmake/3.17.0'
b''
b' '
b''
b'salloc: Granted job allocation 4641'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  dce04aab80bccab42f4eb6259d9d4f488dd818cd Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gcc/10.2.0'
b'Testing compiler gcc/10.2.0'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'  Starting job gcc-10.2.0-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-10.2.0-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release build_time=3684 run_time=2036'
b'salloc: Relinquishing job allocation 4641'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_ROCM560 # 827 (click to expand)

b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse 550dee8593ca2ace81357bcb3ab387549f4aa4be^{commit} # timeout=10'
b'Checking out Revision 550dee8593ca2ace81357bcb3ab387549f4aa4be (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 550dee8593ca2ace81357bcb3ab387549f4aa4be # timeout=10'
b'Commit message: "formatting"'
b' > git rev-list --no-walk 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_ROCM560] $ /bin/bash -el /tmp/jenkins4734988090321534920.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'ort' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  c5e162601e54499e2fb280765a5ed88d8fbf1a80 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA90A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=1620 run_time=531'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560 # 348 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 550dee8593ca2ace81357bcb3ab387549f4aa4be^{commit} # timeout=10'
b'Checking out Revision 550dee8593ca2ace81357bcb3ab387549f4aa4be (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 550dee8593ca2ace81357bcb3ab387549f4aa4be # timeout=10'
b'Commit message: "formatting"'
b' > git rev-list --no-walk 07e23f5a5692d391a3a605a161df4a20279cbc7c # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560] $ /bin/bash -el /tmp/jenkins913799909822364394.sh'
b"Merge made by the 'ort' strategy."
b' perf_test/sparse/CMakeLists.txt                  | 5 +++++'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp | 1 +'
b' 2 files changed, 6 insertions(+)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  88e7a6d12e7fb26ec6a898bb825853acee4a7808 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=2031 run_time=663'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'Finished: SUCCESS'
b''

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1108
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 695
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 366
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 353
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 354
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 358
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 330
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 840
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 835
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 829
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 350
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/mkl-gemm
  • SHA: 34da41e
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1108
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 695
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 366
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 353
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 354
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 358
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 330
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 840
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 835
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 829
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 350
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 34da41e
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 4ce619e
PR_LABELS
PULLREQUESTNUM 2062
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

29 similar comments
@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However PR is now STALE, and must be retested. Set the AT: RETEST Label to force retest....

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

Successfully merging this pull request may close these issues.

4 participants