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

Improve BSR matrix SpMV Performance #1740

Merged
merged 1 commit into from
Jul 25, 2023

Conversation

cwpearson
Copy link
Contributor

@cwpearson cwpearson commented Mar 16, 2023

Improve performance of the native BsrMatrix SpMV, especially for single-vector cases.

  • Adds a new "v4.2" BsrMatrix SpMV implementation for non-transpose mode.
    • It is the default (when TPLs are disabled or not supported) on the GPU for non-transpose mode
    • The old implementation is retained for all other modes
    • old implementation may be requested explicitly with controls.setParameter("algorithm", "v4.1")
  • Adds explicit invocation of old "4.1" impl to KokkosKernels_sparse_spmv_bsr_benchmark
  • When TPLs are enabled, the new implementation may be requested anyway with controls.setParameter("algorithm", "v4.2")

Results

sp is speedup of 4.2 vs 4.1. TPLs only support specific integer combinations. The table below summarizes the speedup achieved across various operand types

GPU single vec multivec
V100 2.3-3.1x 1.0-1.2x
A100 5.5x-9.4x 1.5x-2.3x
MI250 2.1-3.9x 1.5-2.4x

V100, bs=7, k=1, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 524 312 99.3 3.1x
f64/i32/i32 711 400 156 2.5x
f32/i32/u32 N/A 301 100 3.0x
f32/i64/u64 N/A 362 153 2.3x
f32/i64/i64 N/A 362 155 2.3x

V100, bs=7, k=3, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 503 119 94.5 1.2x
f64/i32/i32 635 152 152 1.0x
f32/i32/u32 N/A 114 95 1.2x
f32/i64/u64 N/A 140 121 1.1x
f32/i64/i64 N/A 140 119 1.1x

A100, bs=7, k=1, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 503 551 63.7 8.6x
f64/i32/i32 854 703 126 5.5x
f32/i32/u32 N/A 524 69.3 7.5x
f32/i64/u64 N/A 696 76.0 9.1x
f32/i64/i64 N/A 707 74.6 9.4x

A100, bs=7, k=3, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 501 208 90.7 2.3x
f64/i32/i32 756 267 173 1.5x
f32/i32/u32 N/A 200 99.4 2.0x
f32/i64/u64 N/A 268 146 1.8x
f32/i64/i64 N/A 272 143 1.9x

MI250, bs=7, k=1, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 701 713 182 3.9x
f64/i32/i32 974 675 324 2.1x
f32/i32/u32 N/A 713 183 3.9x
f32/i64/u64 N/A 672 321 2.1x
f32/i64/i64 N/A 672 321 2.1x

MI250, bs=7, k=3, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 N/A 280 116 2.4
f64/i32/i32 N/A 262 172 1.5
f32/i32/u32 N/A 280 115 2.4
f32/i64/u64 N/A 259 169 1.5
f32/i64/i64 N/A 259 169 1.5

Results (Tpetra BlockCrs Performance Test Matrix)

sp is speedup of 4.2 vs 4.1. TPLs only support specific integer combinations. The table below summarizes the speedup achieved across various operand types

GPU single vec multivec
V100 1.3-3.3x 0.68-1.3x
A100
MI250 2.4-5x 2.6-3.6x

V100, bs=7, k=1, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 307 305 108 2.8x
f64/i32/i32 505 233 174 1.3x
f32/i32/u32 N/A 349 106 3.3x
f32/i64/u64 N/A 370 173 2.1x
f32/i64/i64 N/A 369 175 2.1x

V100, bs=7, k=3, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 135 111 93 1.2x
f64/i32/i32 195 85 125 0.68x
f32/i32/u32 N/A 126 93 1.3x
f32/i64/u64 N/A 134 123 1.08x
f32/i64/i64 N/A 133 123 1.08x

MI250, bs=7, k=1, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 443 835 165 5x
f64/i32/i32 730 726 295 2.4x
f32/i32/u32 N/A 836 165 5x
f32/i64/u64 N/A 713 290 2.4x
f32/i64/i64 N/A 718 290 2.4x

MI250, bs=7, k=3, rows=1.84m, nnz=88m

GB / second

scalar/ordinal/offset TPL KK 4.2 KK 4.1 sp
f32/i32/i32 307 307 85 3.6x
f64/i32/i32 266 266 100 2.6x
f32/i32/u32 N/A 306 85 3.6x
f32/i64/u64 N/A 263 98 2.6x
f32/i64/i64 N/A 263 98 2.6x

Other changes:

  • simplify KokkosKernels::Impl::always_false_v
  • Add template <typename View> class with_unmanaged which provides a type alias reproducing View with Kokkos::Unmanaged added to its memory traits
  • Add KokkosKernels::Impl::with_unmanaged_t as an alias for typename with_unamanged::type
  • Add template <typename View> auto KokkosKernels::Impl:make_unmanaged(const View &v) which constructs a with_unmanaged_t<View> from v
  • Add <sstream> to KokkosKernels_Error.hpp
  • Add DieOnError and SkipOnError wrapped bools to give names to boolean function arguments
  • Link KokkosKernels_sparse_spmv_bsr_benchmark against stdc++fs for rocm 5.2
  • More aggressive block size filtering in KokkosSparse_csr_detect_block_size.hpp
  • Removes a useless warning from Controls::getParameter since what happens when a parameter is unset was made explicit in be87154
  • BsrMatrix constructor throws when combination of nnz, rows, and columns don't make sense
  • Change BsrMatrix::block_layout to BsrMatrix::block_layout_type for consistency
  • Adds BsrMatrix::unmanaged_block to return an unmanged view to a 2D block of values
  • Adds BsrMatrix::unmanaged_block_const to return a const unmanged view to a 2D block of values

@cwpearson cwpearson self-assigned this Mar 16, 2023
@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch 4 times, most recently from 87bfbe2 to 3afb377 Compare March 22, 2023 21:05
@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch from 94df8d0 to 3afb377 Compare April 10, 2023 19:38
@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch from 2302095 to e4706ed Compare May 17, 2023 17:42
@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch from 03bd1f9 to 2f87d2b Compare June 27, 2023 20:27
@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch from 2f87d2b to ae17e46 Compare July 11, 2023 20:40
@cwpearson cwpearson changed the title Investigate BSR matrix SpMV Performance Improve BSR matrix SpMV Performance Jul 13, 2023
@cwpearson cwpearson added AT: RETEST Have this PR retested. and removed AT: WIP labels Jul 13, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 731
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 322
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 345
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 613
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 573
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 661
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 714
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 515
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 510
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 510
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 32
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: enhancement/bsr-spmv-performance
  • SHA: 47007ef
  • 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: 731
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 322
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 345
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 613
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 573
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 661
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 714
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 515
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 510
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 510
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 32
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 47007ef
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 731 (click to expand)

b'24:   5  5  5  6  6  6  7  7  7  8  8  8 38 38 38'
b'24:   9  9  9 39 39 39 40 40 10 10 10 11 11 38 38'
b'24:   9  9  9 39 39 39 40 40 10 10 10 11 11 11 11'
b'24:   9  9 12 12 39 13 13 13 10 10 10 11 11 11 11'
b'24:  14 14 12 12 12 13 13 13 41 41 42 42 15 15 15'
b'24:  14 14 12 12 12 13 13 13 41 41 42 42 15 15 15'
b'24:  14 14 16 16 16 17 17 17 18 18 42 42 15 15 15'
b'24:  19 19 16 16 16 17 17 17 18 18 18 20 20 20 15'
b'24:  19 19 16 16 16 17 17 17 18 18 18 20 20 20 20'
b'24:  19 19 21 21 21 44 17 22 22 22 18 20 20 43 43'
b'24:  23 23 21 21 21 44 44 22 22 22 24 24 24 43 43'
b'24:  23 23 21 21 21 44 44 22 22 22 24 24 24 25 25'
b'24:  23 23 23 26 26 44 44 27 27 27 24 24 24 25 25'
b'24:  28 28 26 26 26 26 26 27 27 27 29 29 29 25 25'
b'24:  28 28 28 26 26 26 31 27 27 27 29 29 29 46 46'
b'24:  28 28 30 30 30 31 31 31 45 45 29 29 29 46 46'
b'24:  32 32 30 30 30 31 31 31 45 45 45 33 33 46 46'
b'24:  32 32 30 30 30 31 31 31 35 47 47 33 33 33 48'
b'24:  32 49 49 34 34 34 31 35 35 47 47 47 33 48 48'
b'24:  32 49 49 34 34 34 34 35 35 35 47 47 33 48 48'
b'24: '
b'24/26 Test #24: wiki_coarsening ..................   Passed    0.20 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.731/TestAll_2023-07-13_16.56.08/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.19 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.731/TestAll_2023-07-13_16.56.08/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.22 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 411.85 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_cuda (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'cat: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.731/TestAll_2023-07-13_16.56.08/cuda/11.2.2/gcc-8.3.1-Cuda_OpenMP-release/reload_modules.sh: No such file or directory'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.20 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.322/TestAll_2023-07-13_16.56.08/clang/13.0.0/Cuda-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.21 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.322/TestAll_2023-07-13_16.56.08/clang/13.0.0/Cuda-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.63 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 459.11 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_cuda (Failed)'
b'\t 14 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-13.0.0-Cuda-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /projects/ppc64le-pwr9-rhel8/legacy-env.sh'
b'        module purge'
b'        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243'
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=Cuda --arch=Power9,Volta70 --compiler=/home/projects/ppc64le-pwr9-nvidia/spack/opt/spack/linux-rhel7-power9le/gcc-7.4.0/llvm-13.0.0-t6hzufjroylzhs7hg3dvmhrrcsvhygzv/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/10.1.243  --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.322/TestAll_2023-07-13_16.56.08/clang/13.0.0/Cuda-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"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020 # 345 (click to expand)

b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.00 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.345/TestAll_2023-07-13_16.56.25/gcc/10.2.0/Threads_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.4657e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 711.10 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_threads (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 gcc/10.2.0'
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=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples   --disable-test-eti-only'
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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.345/TestAll_2023-07-13_16.56.25/gcc/10.2.0/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'gcc-10.2.0-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 gcc/10.2.0'
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,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples   --disable-test-eti-only'
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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.345/TestAll_2023-07-13_16.56.25/gcc/10.2.0/Threads_Serial-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: blake17: 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_GCC1020_Light_LayoutRight # 613 (click to expand)

b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.01 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.613/TestAll_2023-07-13_16.56.35/gcc/10.2.0/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) =  73.67 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 gcc/10.2.0'
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=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.613/TestAll_2023-07-13_16.56.35/gcc/10.2.0/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'gcc-10.2.0-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 gcc/10.2.0'
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,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.613/TestAll_2023-07-13_16.56.35/gcc/10.2.0/Threads_Serial-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: blake07: 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_Tpls_GCC1020 # 573 (click to expand)

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.573/TestAll_2023-07-13_16.56.43/gcc/10.2.0/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.01 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.573/TestAll_2023-07-13_16.56.43/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 178.60 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0'
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,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=,blas --user-blas-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-lapack-path=/projects/x86-64-skylake/tpls/openblas/0.3.21/gcc/10.2.0/base/z6i3z3n/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.573/TestAll_2023-07-13_16.56.43/gcc/10.2.0/OpenMP_Serial-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: blake08: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19 # 661 (click to expand)

b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.01 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.661/TestAll_2023-07-13_16.56.54/intel/19.5.281/Threads-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 4.25123e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.02 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 104.56 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_threads (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.5.281-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 intel/compilers/19.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=SKX --compiler=/home/projects/x86-64/intel/compilers/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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.661/TestAll_2023-07-13_16.56.54/intel/19.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.5.281-Threads-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 intel/compilers/19.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=SKX --compiler=/home/projects/x86-64/intel/compilers/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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/KokkosKernels_PullRequest_Tpls_INTEL19.661/TestAll_2023-07-13_16.56.54/intel/19.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: blake09: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.714/TestAll_2023-07-13_16.58.29/clang/10.0.1/Threads_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.00 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.714/TestAll_2023-07-13_16.58.29/clang/10.0.1/Threads_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.19821e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 213.30 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_threads (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-10.0.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /etc/profile.d/modules.sh'
b'        module purge'
b'        module load cmake/3.19.3 clang/10.0.1'
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,Serial --arch=SKX --compiler=/home/projects/x86-64/compilers/llvm/10.0.1/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.714/TestAll_2023-07-13_16.58.29/clang/10.0.1/Threads_Serial-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: blake06: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.09 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.515/TestAll_2023-07-13_17.00.44/armpl/21.1.0/Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.35095e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.09 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 219.73 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.515/TestAll_2023-07-13_17.00.44/armpl/21.1.0/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'armpl-21.1.0-Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.515/TestAll_2023-07-13_17.00.44/armpl/21.1.0/Serial-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'salloc: Relinquishing job allocation 3843'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.510/TestAll_2023-07-13_17.00.44/gcc/10.2.0/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.10 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.510/TestAll_2023-07-13_17.00.44/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.07 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 1860.72 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.510/TestAll_2023-07-13_17.00.44/gcc/10.2.0/OpenMP_Serial-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'salloc: Relinquishing job allocation 3844'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 510 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.37 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.510/TestAll_2023-07-13_17.02.03/rocm/5.2.0/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.36 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.510/TestAll_2023-07-13_17.02.03/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.39 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 357.74 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_hip (Failed)'
b'\t 14 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0'
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=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.510/TestAll_2023-07-13_17.02.03/rocm/5.2.0/Hip_Serial-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: caraway05: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520 # 32 (click to expand)

b'[ 29%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 29%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trsm/Blas3_trsm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trmm/Blas3_trmm_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trtri/Blas_trtri_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trtri/Blas_trtri_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trtri/Blas_trtri_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/trtri/Blas_trtri_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] 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_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 34%] 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_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'[ 34%] Building CXX object CMakeFiles/kokkoskernels.dir/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/sparse/tpls/KokkosKernels_tpl_handles.cpp.o'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/sptrsv_solve/Sparse_sptrsv_solve_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.32/TestAll_2023-07-13_17.02.04/rocm/5.2.0/Hip_Serial-release/sparse/eti/generated_specializations_cpp/sptrsv_solve/Sparse_sptrsv_solve_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/impl/KokkosSparse_sptrsv_solve_spec.hpp:27:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/impl/KokkosSparse_sptrsv_solve_impl.hpp:26:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/src/KokkosSparse_spmv.hpp:28:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp:474:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp:963:40: error: no member named 'always_false_v' in namespace 'KokkosKernels::Impl'"
b'    static_assert(KokkosKernels::Impl::always_false_v,'
b'                  ~~~~~~~~~~~~~~~~~~~~~^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp:963:55: error: unexpected type name 'value_type': expected expression"
b'    static_assert(KokkosKernels::Impl::always_false_v,'
b'                                                      ^'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp:963:66: error: expected expression'
b'    static_assert(KokkosKernels::Impl::always_false_v,'
b'                                                                 ^'
b'[ 35%] Building CXX object CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/sptrsv_solve/Sparse_sptrsv_solve_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o'
b'3 errors generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2422: CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/sptrsv_solve/Sparse_sptrsv_solve_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp.o] Error 1'
b'make[2]: *** Waiting for unfinished jobs....'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.32/TestAll_2023-07-13_17.02.04/rocm/5.2.0/Hip_Serial-release/sparse/eti/generated_specializations_cpp/sptrsv_solve/Sparse_sptrsv_solve_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/impl/KokkosSparse_sptrsv_solve_spec.hpp:27:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/impl/KokkosSparse_sptrsv_solve_impl.hpp:26:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/src/KokkosSparse_spmv.hpp:28:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp:474:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp:963:40: error: no member named 'always_false_v' in namespace 'KokkosKernels::Impl'"
b'    static_assert(KokkosKernels::Impl::always_false_v,'
b'                  ~~~~~~~~~~~~~~~~~~~~~^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp:963:55: error: unexpected type name 'value_type': expected expression"
b'    static_assert(KokkosKernels::Impl::always_false_v,'
b'                                                      ^'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/sparse/tpls/KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp:963:66: error: expected expression'
b'    static_assert(KokkosKernels::Impl::always_false_v,'
b'                                                                 ^'
b'3 errors generated when compiling for gfx908.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2435: CMakeFiles/kokkoskernels.dir/sparse/eti/generated_specializations_cpp/sptrsv_solve/Sparse_sptrsv_solve_eti_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1120: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make: *** [Makefile:160: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0 openblas/0.3.20/rocm/5.2.0'
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=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas,rocblas,rocsparse    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.32/TestAll_2023-07-13_17.02.04/rocm/5.2.0/Hip_Serial-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: caraway06: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Sending e-mails to: cwpears@sandia.gov'
b'Finished: FAILURE'
b''

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Jul 14, 2023
@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: 734
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 325
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 4
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 4
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 4
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 10
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 5
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 517
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 512
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 512
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 34
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: enhancement/bsr-spmv-performance
  • SHA: 69a6882
  • 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: 734
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 325
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 4
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 4
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 4
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 10
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 5
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 517
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 512
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 512
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 34
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 69a6882
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 19b30d8
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 734 (click to expand)

b'24:   5  5  5  6  6  6  7  7  7  8  8  8 38 38 38'
b'24:   9  9  9 39 39 39 40 40 10 10 10 11 11 38 38'
b'24:   9  9  9 39 39 39 40 40 10 10 10 11 11 11 11'
b'24:   9  9 12 12 39 13 13 13 10 10 10 11 11 11 11'
b'24:  14 14 12 12 12 13 13 13 41 41 42 42 15 15 15'
b'24:  14 14 12 12 12 13 13 13 41 41 42 42 15 15 15'
b'24:  14 14 16 16 16 17 17 17 18 18 42 42 15 15 15'
b'24:  19 19 16 16 16 17 17 17 18 18 18 20 20 20 15'
b'24:  19 19 16 16 16 17 17 17 18 18 18 20 20 20 20'
b'24:  19 19 21 21 21 44 17 22 22 22 18 20 20 43 43'
b'24:  23 23 21 21 21 44 44 22 22 22 24 24 24 43 43'
b'24:  23 23 21 21 21 44 44 22 22 22 24 24 24 25 25'
b'24:  23 23 23 26 26 44 44 27 27 27 24 24 24 25 25'
b'24:  28 28 26 26 26 26 26 27 27 27 29 29 29 25 25'
b'24:  28 28 28 26 26 26 31 27 27 27 29 29 29 46 46'
b'24:  28 28 30 30 30 31 31 31 45 45 29 29 29 46 46'
b'24:  32 32 30 30 30 31 31 31 45 45 45 33 33 46 46'
b'24:  32 32 30 30 30 31 31 31 35 47 47 33 33 33 48'
b'24:  32 49 49 34 34 34 31 35 35 47 47 47 33 48 48'
b'24:  32 49 49 34 34 34 34 35 35 35 47 47 33 48 48'
b'24: '
b'24/26 Test #24: wiki_coarsening ..................   Passed    0.22 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.734/TestAll_2023-07-14_10.59.33/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.19 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.734/TestAll_2023-07-14_10.59.33/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.21 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 414.59 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_cuda (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'cat: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.734/TestAll_2023-07-14_10.59.33/cuda/11.2.2/gcc-8.3.1-Cuda_OpenMP-release/reload_modules.sh: No such file or directory'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.20 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.325/TestAll_2023-07-14_10.59.35/clang/13.0.0/Cuda-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.21 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.325/TestAll_2023-07-14_10.59.35/clang/13.0.0/Cuda-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.63 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 456.13 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_cuda (Failed)'
b'\t 14 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-13.0.0-Cuda-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /projects/ppc64le-pwr9-rhel8/legacy-env.sh'
b'        module purge'
b'        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243'
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=Cuda --arch=Power9,Volta70 --compiler=/home/projects/ppc64le-pwr9-nvidia/spack/opt/spack/linux-rhel7-power9le/gcc-7.4.0/llvm-13.0.0-t6hzufjroylzhs7hg3dvmhrrcsvhygzv/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/10.1.243  --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.325/TestAll_2023-07-14_10.59.35/clang/13.0.0/Cuda-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"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.4/TestAll_2023-07-14_11.02.39/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 110.34 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=    --with-options= --with-cuda-options=   --no-examples  '
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_GNU1021/KokkosKernels_PullRequest_GNU1021.4/TestAll_2023-07-14_11.02.39/gnu/10.2.1/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'gnu-10.2.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=    --with-options= --with-cuda-options=   --no-examples  '
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_GNU1021/KokkosKernels_PullRequest_GNU1021.4/TestAll_2023-07-14_11.02.39/gnu/10.2.1/Threads_Serial-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: solo156: 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_GNU1021_Light_LayoutRight # 4 (click to expand)

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.4/TestAll_2023-07-14_11.07.53/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 104.80 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
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_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.4/TestAll_2023-07-14_11.07.53/gnu/10.2.1/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'gnu-10.2.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
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_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.4/TestAll_2023-07-14_11.07.53/gnu/10.2.1/Threads_Serial-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: solo123: 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_Tpls_GNU1021 # 4 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.01 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.4/TestAll_2023-07-14_11.08.37/gnu/10.2.1/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.01 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.4/TestAll_2023-07-14_11.08.37/gnu/10.2.1/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 204.02 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1 openblas/0.3.21'
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,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=,blas    --with-options= --with-cuda-options=   --no-examples  '
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_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.4/TestAll_2023-07-14_11.08.37/gnu/10.2.1/OpenMP_Serial-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: solo103: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.01 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.10/TestAll_2023-07-14_11.08.50/intel/19.0.5.281/Threads-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 4.25123e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) =  93.16 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_threads (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release (test 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.10/TestAll_2023-07-14_11.08.50/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 (test 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.10/TestAll_2023-07-14_11.08.50/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: solo98: 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 # 5 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.00 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.5/TestAll_2023-07-14_11.25.48/llvm/10.0.1/Threads_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.00 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.5/TestAll_2023-07-14_11.25.48/llvm/10.0.1/Threads_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.19821e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.00 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 191.15 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_threads (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 llvm/10.0.1 gnu/10.2.1'
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,Serial --arch=BDW --compiler=/projects/netpub/sems/llvm/10.0.1/gcc/10.2.1/b4rc6cw/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples  '
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_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.5/TestAll_2023-07-14_11.25.48/llvm/10.0.1/Threads_Serial-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: solo156: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.09 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.517/TestAll_2023-07-14_11.25.49/armpl/21.1.0/Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.35095e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.09 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 215.57 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.517/TestAll_2023-07-14_11.25.49/armpl/21.1.0/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'armpl-21.1.0-Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.517/TestAll_2023-07-14_11.25.49/armpl/21.1.0/Serial-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'salloc: Relinquishing job allocation 3848'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.512/TestAll_2023-07-14_11.25.50/gcc/10.2.0/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.10 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.512/TestAll_2023-07-14_11.25.50/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.13 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 1761.49 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.512/TestAll_2023-07-14_11.25.50/gcc/10.2.0/OpenMP_Serial-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'salloc: Relinquishing job allocation 3849'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 512 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.37 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.512/TestAll_2023-07-14_11.27.03/rocm/5.2.0/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.36 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.512/TestAll_2023-07-14_11.27.03/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.39 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 355.97 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_hip (Failed)'
b'\t 14 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0'
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=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.512/TestAll_2023-07-14_11.27.03/rocm/5.2.0/Hip_Serial-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: caraway05: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520 # 34 (click to expand)

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.34/TestAll_2023-07-14_11.27.03/rocm/5.2.0/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.37 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.34/TestAll_2023-07-14_11.27.03/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.48 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 350.53 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_hip (Failed)'
b'\t 14 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0 openblas/0.3.20/rocm/5.2.0'
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=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas,rocblas,rocsparse    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.34/TestAll_2023-07-14_11.27.03/rocm/5.2.0/Hip_Serial-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: caraway06: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Sending e-mails to: cwpears@sandia.gov'
b'Finished: FAILURE'
b''

@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch from 69a6882 to 33506f3 Compare July 14, 2023 19:52
@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: 735
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 326
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 5
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 5
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 5
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 11
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 6
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 518
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 513
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 513
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 35
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: enhancement/bsr-spmv-performance
  • SHA: 33506f3
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has pushed a change to the PR before testing completed. NEW EVENT 'committed', ID C_kwDOBK7s5toAKGNhYmRmNzQzNzYzNmY5YjI3NmM4YzZiMTk4YWU0NTllZTg3MWFiODQ... The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 735
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 326
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 5
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 5
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 5
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 11
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 6
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 518
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 513
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 513
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 35
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 33506f3
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b81f148
PR_LABELS
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 735 (click to expand)

b'24:   5  5  5  6  6  6  7  7  7  8  8  8 38 38 38'
b'24:   9  9  9 39 39 39 40 40 10 10 10 11 11 38 38'
b'24:   9  9  9 39 39 39 40 40 10 10 10 11 11 11 11'
b'24:   9  9 12 12 39 13 13 13 10 10 10 11 11 11 11'
b'24:  14 14 12 12 12 13 13 13 41 41 42 42 15 15 15'
b'24:  14 14 12 12 12 13 13 13 41 41 42 42 15 15 15'
b'24:  14 14 16 16 16 17 17 17 18 18 42 42 15 15 15'
b'24:  19 19 16 16 16 17 17 17 18 18 18 20 20 20 15'
b'24:  19 19 16 16 16 17 17 17 18 18 18 20 20 20 20'
b'24:  19 19 21 21 21 44 17 22 22 22 18 20 20 43 43'
b'24:  23 23 21 21 21 44 44 22 22 22 24 24 24 43 43'
b'24:  23 23 21 21 21 44 44 22 22 22 24 24 24 25 25'
b'24:  23 23 23 26 26 44 44 27 27 27 24 24 24 25 25'
b'24:  28 28 26 26 26 26 26 27 27 27 29 29 29 25 25'
b'24:  28 28 28 26 26 26 31 27 27 27 29 29 29 46 46'
b'24:  28 28 30 30 30 31 31 31 45 45 29 29 29 46 46'
b'24:  32 32 30 30 30 31 31 31 45 45 45 33 33 46 46'
b'24:  32 32 30 30 30 31 31 31 35 47 47 33 33 33 48'
b'24:  32 49 49 34 34 34 31 35 35 47 47 47 33 48 48'
b'24:  32 49 49 34 34 34 34 35 35 35 47 47 33 48 48'
b'24: '
b'24/26 Test #24: wiki_coarsening ..................   Passed    0.20 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.735/TestAll_2023-07-14_14.04.13/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.18 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.735/TestAll_2023-07-14_14.04.13/cuda/11.2.2/gcc/8.3.1/Cuda_OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.22 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 409.73 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_cuda (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'cat: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.735/TestAll_2023-07-14_14.04.13/cuda/11.2.2/gcc-8.3.1-Cuda_OpenMP-release/reload_modules.sh: No such file or directory'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.21 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.326/TestAll_2023-07-14_14.04.17/clang/13.0.0/Cuda-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.21 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.326/TestAll_2023-07-14_14.04.17/clang/13.0.0/Cuda-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.63 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 469.84 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_cuda (Failed)'
b'\t 14 - sparse_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-13.0.0-Cuda-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /projects/ppc64le-pwr9-rhel8/legacy-env.sh'
b'        module purge'
b'        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243'
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=Cuda --arch=Power9,Volta70 --compiler=/home/projects/ppc64le-pwr9-nvidia/spack/opt/spack/linux-rhel7-power9le/gcc-7.4.0/llvm-13.0.0-t6hzufjroylzhs7hg3dvmhrrcsvhygzv/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/10.1.243  --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.326/TestAll_2023-07-14_14.04.17/clang/13.0.0/Cuda-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"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.5/TestAll_2023-07-14_14.23.36/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 108.77 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=    --with-options= --with-cuda-options=   --no-examples  '
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_GNU1021/KokkosKernels_PullRequest_GNU1021.5/TestAll_2023-07-14_14.23.36/gnu/10.2.1/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'gnu-10.2.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=    --with-options= --with-cuda-options=   --no-examples  '
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_GNU1021/KokkosKernels_PullRequest_GNU1021.5/TestAll_2023-07-14_14.23.36/gnu/10.2.1/Threads_Serial-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: solo131: 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_GNU1021_Light_LayoutRight # 5 (click to expand)

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.5/TestAll_2023-07-14_14.24.21/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 105.89 sec'
b''
b'The following tests FAILED:'
b'\t  7 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
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_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.5/TestAll_2023-07-14_14.24.21/gnu/10.2.1/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'gnu-10.2.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
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,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
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_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.5/TestAll_2023-07-14_14.24.21/gnu/10.2.1/Threads_Serial-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: solo188: 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_Tpls_GNU1021 # 5 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.01 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.5/TestAll_2023-07-14_14.26.33/gnu/10.2.1/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.01 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.5/TestAll_2023-07-14_14.26.33/gnu/10.2.1/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 203.10 sec'
b''
b'The following tests FAILED:'
b'\t 13 - sparse_serial (Failed)'
b'\t 14 - sparse_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1 openblas/0.3.21'
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,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --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=,blas    --with-options= --with-cuda-options=   --no-examples  '
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_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.5/TestAll_2023-07-14_14.26.33/gnu/10.2.1/OpenMP_Serial-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: solo269: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19_solo # 11 (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_INTEL19_solo'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_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 33506f3313a2bb94b08c0456ae755f34341c3405^{commit} # timeout=10'
b'Checking out Revision 33506f3313a2bb94b08c0456ae755f34341c3405 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 33506f3313a2bb94b08c0456ae755f34341c3405 # timeout=10'
b'Commit message: "track rejected sizes more aggressively"'
b' > git rev-list --no-walk 69a6882b241342c1e1fd283391e576d5b335498c # 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_INTEL19_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 7061a4bd0ef6935388c2d4843623a47cafd59ce7 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 7061a4bd0ef6935388c2d4843623a47cafd59ce7 # timeout=10'
b'Commit message: "Merge pull request #6282 from cwpearson/feature/export-compiler-version"'
b' > git rev-list --no-walk 7e6871f6a163d3ffff362ff4c64c3d4616d55f62 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_INTEL19_solo] $ /bin/bash -el /tmp/jenkins1198850294888058454.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   79f474e7c..b81f14853  develop    -> upstream/develop'
b'Already up to date.'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 1991098 queued and waiting for resources'
b'srun: job 1991098 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  33506f3313a2bb94b08c0456ae755f34341c3405 track rejected sizes more aggressively'
b''
b'Kokkos Repository Status:  7061a4bd0ef6935388c2d4843623a47cafd59ce7 Merge pull request #6282 from cwpearson/feature/export-compiler-version'
b''
b''
b'Going to test compilers:  intel/19.0.5.281'
b'Testing compiler intel/19.0.5.281'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'  Starting job intel-19.0.5.281-OpenMP-release'
b'kokkos devices: OpenMP'
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 -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869'
b'extra_args:  --disable-perftests'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 6 (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 33506f3313a2bb94b08c0456ae755f34341c3405^{commit} # timeout=10'
b'Checking out Revision 33506f3313a2bb94b08c0456ae755f34341c3405 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 33506f3313a2bb94b08c0456ae755f34341c3405 # timeout=10'
b'Commit message: "track rejected sizes more aggressively"'
b' > git rev-list --no-walk 69a6882b241342c1e1fd283391e576d5b335498c # 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 7061a4bd0ef6935388c2d4843623a47cafd59ce7 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 7061a4bd0ef6935388c2d4843623a47cafd59ce7 # timeout=10'
b'Commit message: "Merge pull request #6282 from cwpearson/feature/export-compiler-version"'
b' > git rev-list --no-walk 7e6871f6a163d3ffff362ff4c64c3d4616d55f62 # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins6996007530427675941.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   79f474e7c..b81f14853  develop    -> upstream/develop'
b'Already up to date.'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 1991111 queued and waiting for resources'
b'srun: job 1991111 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  33506f3313a2bb94b08c0456ae755f34341c3405 track rejected sizes more aggressively'
b''
b'Kokkos Repository Status:  7061a4bd0ef6935388c2d4843623a47cafd59ce7 Merge pull request #6282 from cwpearson/feature/export-compiler-version'
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'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'Checking out Revision 33506f3313a2bb94b08c0456ae755f34341c3405 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 33506f3313a2bb94b08c0456ae755f34341c3405 # timeout=10'
b'Commit message: "track rejected sizes more aggressively"'
b' > git rev-list --no-walk 69a6882b241342c1e1fd283391e576d5b335498c # 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/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/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.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 7061a4bd0ef6935388c2d4843623a47cafd59ce7 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 7061a4bd0ef6935388c2d4843623a47cafd59ce7 # timeout=10'
b'Commit message: "Merge pull request #6282 from cwpearson/feature/export-compiler-version"'
b' > git rev-list --no-walk 7e6871f6a163d3ffff362ff4c64c3d4616d55f62 # timeout=10'
b'[KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110] $ /bin/bash -el /tmp/jenkins3930328054586444244.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update'
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 tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.1.00                      -> 4.1.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'Already up to date.'
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 3851'
b'Running on machine: inouye'
b'KokkosKernels Repository Status:  33506f3313a2bb94b08c0456ae755f34341c3405 track rejected sizes more aggressively'
b''
b'Kokkos Repository Status:  7061a4bd0ef6935388c2d4843623a47cafd59ce7 Merge pull request #6282 from cwpearson/feature/export-compiler-version'
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'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'Checking out Revision 33506f3313a2bb94b08c0456ae755f34341c3405 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 33506f3313a2bb94b08c0456ae755f34341c3405 # timeout=10'
b'Commit message: "track rejected sizes more aggressively"'
b' > git rev-list --no-walk 69a6882b241342c1e1fd283391e576d5b335498c # 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/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/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.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 7061a4bd0ef6935388c2d4843623a47cafd59ce7 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 7061a4bd0ef6935388c2d4843623a47cafd59ce7 # timeout=10'
b'Commit message: "Merge pull request #6282 from cwpearson/feature/export-compiler-version"'
b' > git rev-list --no-walk 7e6871f6a163d3ffff362ff4c64c3d4616d55f62 # timeout=10'
b'[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins3767950249006151424.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update'
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 tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.1.00                      -> 4.1.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'Already up to date.'
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 3850'
b'Running on machine: inouye'
b'KokkosKernels Repository Status:  33506f3313a2bb94b08c0456ae755f34341c3405 track rejected sizes more aggressively'
b''
b'Kokkos Repository Status:  7061a4bd0ef6935388c2d4843623a47cafd59ce7 Merge pull request #6282 from cwpearson/feature/export-compiler-version'
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'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 513 (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_VEGA908_ROCM520'
b'The recommended git tool is: NONE'
b'No credentials specified'
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_VEGA908_ROCM520/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.31.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 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 33506f3313a2bb94b08c0456ae755f34341c3405^{commit} # timeout=10'
b'Checking out Revision 33506f3313a2bb94b08c0456ae755f34341c3405 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 33506f3313a2bb94b08c0456ae755f34341c3405 # timeout=10'
b'Commit message: "track rejected sizes more aggressively"'
b' > git rev-list --no-walk 69a6882b241342c1e1fd283391e576d5b335498c # 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_VEGA908_ROCM520/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.31.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 7061a4bd0ef6935388c2d4843623a47cafd59ce7 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 7061a4bd0ef6935388c2d4843623a47cafd59ce7 # timeout=10'
b'Commit message: "Merge pull request #6282 from cwpearson/feature/export-compiler-version"'
b' > git rev-list --no-walk 7e6871f6a163d3ffff362ff4c64c3d4616d55f62 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins8016870440340572761.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update'
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 tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.1.00                      -> 4.1.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'Already up to date.'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'Running on machine: caraway'
b'KokkosKernels Repository Status:  33506f3313a2bb94b08c0456ae755f34341c3405 track rejected sizes more aggressively'
b''
b'Kokkos Repository Status:  7061a4bd0ef6935388c2d4843623a47cafd59ce7 Merge pull request #6282 from cwpearson/feature/export-compiler-version'
b''
b''
b'Going to test compilers:  rocm/5.2.0'
b'Testing compiler rocm/5.2.0'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'  Starting job rocm-5.2.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908'
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'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520 # 35 (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_VEGA908_Tpls_ROCM520'
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_VEGA908_Tpls_ROCM520/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.31.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 33506f3313a2bb94b08c0456ae755f34341c3405^{commit} # timeout=10'
b'Checking out Revision 33506f3313a2bb94b08c0456ae755f34341c3405 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 33506f3313a2bb94b08c0456ae755f34341c3405 # timeout=10'
b'Commit message: "track rejected sizes more aggressively"'
b' > git rev-list --no-walk 69a6882b241342c1e1fd283391e576d5b335498c # 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_VEGA908_Tpls_ROCM520/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.31.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 7061a4bd0ef6935388c2d4843623a47cafd59ce7 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 7061a4bd0ef6935388c2d4843623a47cafd59ce7 # timeout=10'
b'Commit message: "Merge pull request #6282 from cwpearson/feature/export-compiler-version"'
b' > git rev-list --no-walk 7e6871f6a163d3ffff362ff4c64c3d4616d55f62 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520] $ /bin/bash -el /tmp/jenkins5023329971728206250.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b'   79f474e7c..b81f14853  develop    -> upstream/develop'
b'Already up to date.'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'Running on machine: caraway'
b'KokkosKernels Repository Status:  33506f3313a2bb94b08c0456ae755f34341c3405 track rejected sizes more aggressively'
b''
b'Kokkos Repository Status:  7061a4bd0ef6935388c2d4843623a47cafd59ce7 Merge pull request #6282 from cwpearson/feature/export-compiler-version'
b''
b''
b'Going to test compilers:  rocm/5.2.0'
b'Testing compiler rocm/5.2.0'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'  Starting job rocm-5.2.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908'
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'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

@cwpearson cwpearson removed the AT: WIP label Jul 14, 2023
@kokkos-devops-admin
Copy link

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

@cwpearson cwpearson added the AT: RETEST Have this PR retested. label Jul 20, 2023
@cwpearson cwpearson requested a review from lucbv July 20, 2023 22:30
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

Status Flag '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: 750
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 341
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 20
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 20
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 20
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 26
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 19
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 531
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 526
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 525
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 47
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: enhancement/bsr-spmv-performance
  • SHA: 1ff9d9c
  • 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: 750
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 341
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 20
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 20
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 20
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 26
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 19
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 531
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 526
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 525
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 47
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 1ff9d9c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA ce0653d
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 750 (click to expand)

b' > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
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 ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 78b856fd200d457302abbe2258a358557e3bd532 # timeout=10'
b'[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins18126052269218907305.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update'
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 tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.1.00                      -> 4.1.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"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 2 ++'
b' 1 file changed, 2 insertions(+)'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <59796> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  17756a7c6ec3cfb106610cd7751b2c2541163ce6 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=1242 run_time=566'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  17756a7c6ec3cfb106610cd7751b2c2541163ce6 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=1597 run_time=552'
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 # 341 (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=539 run_time=137'
b'gcc-9.3.0-OpenMP_Serial-release build_time=715 run_time=321'
b'gcc-9.3.0-Serial-release build_time=502 run_time=125'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  0d14b65694088292f772bcaa37b8409c327f1757 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=518 run_time=136'
b'gcc-9.3.0-Serial-release build_time=481 run_time=119'
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 # 20 (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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk 78b856fd200d457302abbe2258a358557e3bd532 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins1569755577876443574.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 2 ++'
b' 1 file changed, 2 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 1998313 queued and waiting for resources'
b'srun: job 1998313 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  8f47f24c2f085329ef5e55331d67aa376fe57338 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=467 run_time=167'
b'gnu-10.2.1-Threads_Serial-release build_time=624 run_time=245'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021_Light_LayoutRight # 20 (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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk 78b856fd200d457302abbe2258a358557e3bd532 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins5210232905650313507.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 2 ++'
b' 1 file changed, 2 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 1998314 queued and waiting for resources'
b'srun: job 1998314 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  54bdacea98f883e6d2ba84d140a1fc7cfe234672 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=431 run_time=155'
b'gnu-10.2.1-Threads_Serial-release build_time=583 run_time=230'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 20 (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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk 78b856fd200d457302abbe2258a358557e3bd532 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins518075249125857.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 2 ++'
b' 1 file changed, 2 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 1998315 queued and waiting for resources'
b'srun: job 1998315 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  bed2aedb17dcb4f87506f0b2f9762870bae5088a Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=644 run_time=300'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19_solo # 26 (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_INTEL19_solo'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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_INTEL19_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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk 78b856fd200d457302abbe2258a358557e3bd532 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_INTEL19_solo] $ /bin/bash -el /tmp/jenkins4274716623161533380.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 2 ++'
b' 1 file changed, 2 insertions(+)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 1998316 queued and waiting for resources'
b'srun: job 1998316 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  5a67624715ef7ab4b5b915e26ad3ca7b8178033d Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
b''
b''
b'Going to test compilers:  intel/19.0.5.281'
b'Testing compiler intel/19.0.5.281'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'  Starting job intel-19.0.5.281-OpenMP-release'
b'kokkos devices: OpenMP'
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 -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869'
b'extra_args:  --disable-perftests'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED intel-19.0.5.281-OpenMP-release'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'Unrecognized compiler intel/19.0.5.281 when looking for Spack variants'
b'  Starting job intel-19.0.5.281-Threads-release'
b'kokkos devices: Threads'
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 -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869'
b'extra_args:  --disable-perftests'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED intel-19.0.5.281-Threads-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release build_time=1563 run_time=140'
b'intel-19.0.5.281-Threads-release build_time=1036 run_time=137'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 19 (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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins4275149251894195268.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   ce0653d87..1b96d94b9  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 24 ++++++++++++++++--------'
b' 1 file changed, 16 insertions(+), 8 deletions(-)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  94f6a29d8fd6580257ff3f63319fe21b839f9ff3 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=688 run_time=265'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

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

b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update'
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 tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.1.00                      -> 4.1.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"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 24 ++++++++++++++++--------'
b' 1 file changed, 16 insertions(+), 8 deletions(-)'
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 3883'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  fa79439a174321469146ecc13fd0a26641786c2d Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
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=2022 run_time=2475'
b'armpl-21.1.0-Serial-release build_time=1898 run_time=334'
b'salloc: Relinquishing job allocation 3883'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.20 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.526/TestAll_2023-07-20_17.54.46/gcc/10.2.0/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.14 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.526/TestAll_2023-07-20_17.54.46/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.18 sec'
b''
b'96% tests passed, 1 tests failed out of 26'
b''
b'Total Test time (real) = 4246.25 sec'
b''
b'The following tests FAILED:'
b'\t 14 - sparse_openmp (Timeout)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --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=    --with-options= --with-cuda-options=   --no-examples  '
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 /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.526/TestAll_2023-07-20_17.54.46/gcc/10.2.0/OpenMP_Serial-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'salloc: Relinquishing job allocation 3882'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_ROCM520 # 525 (click to expand)

b'No credentials specified'
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_VEGA908_ROCM520/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.31.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 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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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_VEGA908_ROCM520/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.31.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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins7314659527383140790.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update   -> upstream/cwpearson/docs-apt-update'
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 tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.1.00                      -> 4.1.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"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 24 ++++++++++++++++--------'
b' 1 file changed, 16 insertions(+), 8 deletions(-)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'srun: job 1005021 queued and waiting for resources'
b'srun: job 1005021 has been allocated resources'
b'Running on machine: caraway'
b"KokkosKernels Repository Status:  1877045d89de45a930f28db230fcd8befffad75e Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
b''
b''
b'Going to test compilers:  rocm/5.2.0'
b'Testing compiler rocm/5.2.0'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'  Starting job rocm-5.2.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908'
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.2.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release build_time=934 run_time=463'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520 # 47 (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_VEGA908_Tpls_ROCM520'
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_VEGA908_Tpls_ROCM520/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.31.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 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9^{commit} # timeout=10'
b'Checking out Revision 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 1ff9d9ca2e504aa48708cd57b13ed9f76f9071e9 # timeout=10'
b'Commit message: "Improve performance of the native BsrMatrix SpMV, especially for single-vector cases."'
b' > git rev-list --no-walk 52324c3766f043557c9b54bd2637634e77096390 # 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_VEGA908_Tpls_ROCM520/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.31.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 ada7d5bfa5e169176b8de149811fa71dda6aef9b (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'Commit message: "Merge pull request #6295 from Rombur/nightly_c++23"'
b' > git rev-list --no-walk ada7d5bfa5e169176b8de149811fa71dda6aef9b # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520] $ /bin/bash -el /tmp/jenkins1317913348724948932.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b'   ce0653d87..1b96d94b9  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' sparse/unit_test/Test_Sparse_MergeMatrix.hpp | 24 ++++++++++++++++--------'
b' 1 file changed, 16 insertions(+), 8 deletions(-)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'srun: job 1005022 queued and waiting for resources'
b'srun: job 1005022 has been allocated resources'
b'Running on machine: caraway'
b"KokkosKernels Repository Status:  1877045d89de45a930f28db230fcd8befffad75e Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ada7d5bfa5e169176b8de149811fa71dda6aef9b Merge pull request #6295 from Rombur/nightly_c++23'
b''
b''
b'Going to test compilers:  rocm/5.2.0'
b'Testing compiler rocm/5.2.0'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'  Starting job rocm-5.2.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908'
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.2.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release build_time=977 run_time=461'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'Finished: SUCCESS'
b''

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Jul 21, 2023
…le-vector cases.

* Adds a new `"v4.2"` BsrMatrix SpMV implementation for non-transpose mode.
  * It is the default (when TPLs are disabled or not supported) on the GPU for non-transpose mode
  * The old implementation is retained for all other modes
  * old implementation may be requested explicitly with `controls.setParameter("algorithm", "v4.1")`
* Adds explicit invocation of old "4.1" impl to `KokkosKernels_sparse_spmv_bsr_benchmark`
* When TPLs are enabled, the new implementation may be requested anyway with `controls.setParameter("algorithm", "v4.2")`
* simplify `KokkosKernels::Impl::always_false_v`
* Add `template <typename View> class with_unmanaged` which provides a `type` alias reproducing `View` with `Kokkos::Unmanaged` added to its memory traits
* Add `KokkosKernels::Impl::with_unmanaged_t` as an alias for `typename with_unamanged::type`
* Add `template <typename View> auto KokkosKernels::Impl:make_unmanaged(const View &v)` which constructs a `with_unmanaged_t<View>` from v
* Add `<sstream>` to `KokkosKernels_Error.hpp`
* Add `DieOnError` and `SkipOnError` wrapped `bool`s to give names to boolean function arguments
* Link `KokkosKernels_sparse_spmv_bsr_benchmark` against `stdc++fs` for rocm 5.2
* More aggressive block size filtering in `KokkosSparse_csr_detect_block_size.hpp`
* Removes a useless warning from `Controls::getParameter` since what happens when a parameter is unset was made explicit in kokkos@be87154
* `BsrMatrix` constructor throws when combination of nnz, rows, and columns don't make sense
* Change `BsrMatrix::block_layout` to `BsrMatrix::block_layout_type` for consistency
* Adds `BsrMatrix::unmanaged_block` to return an unmanged view to a 2D block of values
* Adds `BsrMatrix::unmanaged_block_const` to return a const unmanged view to a 2D block of values
@cwpearson cwpearson force-pushed the enhancement/bsr-spmv-performance branch from 1ff9d9c to 86d8371 Compare July 24, 2023 16:42
@cwpearson
Copy link
Contributor Author

Looks like the KokkosKernels_PullRequest_A64FX_GCC1020 test just timed out on Inouye

@cwpearson cwpearson added AT: RETEST Have this PR retested. and removed AT: WIP labels Jul 24, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 752
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 343
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 22
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 22
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 22
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 28
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 21
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 533
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 528
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 527
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 49
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: enhancement/bsr-spmv-performance
  • SHA: 86d8371
  • 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: 752
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 343
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 22
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 22
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 22
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 28
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 21
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 533
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 528
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 527
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 49
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 86d8371
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 1b96d94
PR_LABELS AT: RETEST
PULLREQUESTNUM 1740
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Jul 24, 2023
@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
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

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

This is fine with me but we should probably clean up that little bit of extra code...

"BsrMatrix:: annz should be a multiple of the number of entries in a "
"block");
}
if (annz % (blockDim_ * blockDim_)) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Duplicate of above check?

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@ndellingwood
Copy link
Contributor

Marking with TrilinosPatchMatch to track so the Trilinos changes are not clobbered in the event we issue a patch relesae (see PR trilinos/Trilinos#12096)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
TrilinosPatchMatch Apply this label for PR's mirroring changes submitted directly to Trilinos
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants