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

ROCm 6 deprecation fixes for rocsparse #2050

Merged
merged 3 commits into from
Dec 18, 2023

Conversation

seanofthemillers
Copy link
Contributor

The upcoming ROCm 6 will rename some calls, and move some files around. Previous deprecation warnings are now build errors. This PR addresses two changes in particular:

  • The rocm_version.h file needs to shift to rocm-core/rocm_version.h
  • Some *_ex calls have been renamed

One issue with these changes is that the rocm-core directory came into existence in ROCm 5.2. Attempting to build with these changes will fail for older ROCms.

@lucbv lucbv requested review from cwpearson and lucbv November 28, 2023 16:54
@lucbv lucbv added the Cleanup Code maintenance that isn't a bugfix or new feature label Nov 28, 2023
@lucbv
Copy link
Contributor

lucbv commented Nov 28, 2023

Thanks @seanofthemillers this looks reasonable to me, we are having some down time on a CI machine so I will add the Pre-Inspected flag once it comes back online...

@kokkos-devops-admin
Copy link

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

@cwpearson
Copy link
Contributor

Hi @seanofthemillers, thanks! We use clang-format-8 like Kokkos core, If you click through the github-FORMAT check it will actually provide the patch you need to apply to make it happy (or you can run clang-format yourself).

Here's the formatting patch we currently need for this PR:

diff --git a/sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp b/sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp
index 6d8513f83..99799ced5 100644
--- a/sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp
+++ b/sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp
@@ -442,13 +442,15 @@ void spmv_rocsparse(const Kokkos::HIP& exec,
   }
 
 #if KOKKOSSPARSE_IMPL_ROCM_VERSION >= 60000
-  KOKKOS_ROCSPARSE_SAFE_CALL_IMPL(rocsparse_spmv(
-      handle, myRocsparseOperation, &alpha, Aspmat, vecX, &beta, vecY,
-      compute_type, alg, rocsparse_spmv_stage_buffer_size, &buffer_size, tmp_buffer));
+  KOKKOS_ROCSPARSE_SAFE_CALL_IMPL(
+      rocsparse_spmv(handle, myRocsparseOperation, &alpha, Aspmat, vecX, &beta,
+                     vecY, compute_type, alg, rocsparse_spmv_stage_buffer_size,
+                     &buffer_size, tmp_buffer));
   KOKKOS_IMPL_HIP_SAFE_CALL(hipMalloc(&tmp_buffer, buffer_size));
-  KOKKOS_ROCSPARSE_SAFE_CALL_IMPL(rocsparse_spmv(
-      handle, myRocsparseOperation, &alpha, Aspmat, vecX, &beta, vecY,
-      compute_type, alg, rocsparse_spmv_stage_compute, &buffer_size, tmp_buffer));
+  KOKKOS_ROCSPARSE_SAFE_CALL_IMPL(
+      rocsparse_spmv(handle, myRocsparseOperation, &alpha, Aspmat, vecX, &beta,
+                     vecY, compute_type, alg, rocsparse_spmv_stage_compute,
+                     &buffer_size, tmp_buffer));
 #elif KOKKOSSPARSE_IMPL_ROCM_VERSION >= 50400
   KOKKOS_ROCSPARSE_SAFE_CALL_IMPL(rocsparse_spmv_ex(
       handle, myRocsparseOperation, &alpha, Aspmat, vecX, &beta, vecY,

@cwpearson
Copy link
Contributor

...and looks like I could do it myself!

@seanofthemillers
Copy link
Contributor Author

@cwpearson Thanks for the fix, I spaced that completely

@kokkos-devops-admin
Copy link

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

@cwpearson cwpearson added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Dec 5, 2023
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Dec 5, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1090
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 677
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 348
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 335
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 336
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 340
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 312
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 822
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 817
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 811
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 332
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (seanofthemillers/kokkos-kernels)
  • Branch: rocm6_deprecation_fixes
  • SHA: 27082a9
  • Mode: TEST_REPO

Pull Request Author: seanofthemillers

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 677
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 348
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 335
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 336
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 340
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 312
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 822
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 817
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 811
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 332
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 27082a9
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1090 (click to expand)

b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             0.10.00                     -> 0.10.00'
b' * [new tag]             0.10.03                     -> 0.10.03'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
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.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b'Already up to date.'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <66253> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=1355 run_time=458'
b'Running on machine: weaver'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=1776 run_time=451'
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 # 677 (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=542 run_time=111'
b'gcc-9.3.0-OpenMP_Serial-release build_time=747 run_time=260'
b'gcc-9.3.0-Serial-release build_time=496 run_time=105'
b'Running on machine: weaver'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=524 run_time=106'
b'gcc-9.3.0-Serial-release build_time=480 run_time=99'
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 # 348 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 27082a96eb60469d88a028ce759ff88832ed5328^{commit} # timeout=10'
b'Checking out Revision 27082a96eb60469d88a028ce759ff88832ed5328 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 27082a96eb60469d88a028ce759ff88832ed5328 # timeout=10'
b'Commit message: "format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp"'
b' > git rev-list --no-walk 8d603b0e3e20a49a46588701d4706b83b00766ca # 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 b877a6e9baddaca2a881326f0965fbf6af284ea8 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f b877a6e9baddaca2a881326f0965fbf6af284ea8 # timeout=10'
b'Commit message: "Merge pull request #6645 from fnrizzi/fix_6644"'
b' > git rev-list --no-walk f8788ef2ae1940b627cc6ebc6abeef2c34e7e8dc # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins8718401041567648075.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'Already up to date.'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2117475 queued and waiting for resources'
b'srun: job 2117475 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=468 run_time=124'
b'gnu-10.2.1-Threads_Serial-release build_time=640 run_time=207'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021_Light_LayoutRight # 335 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 27082a96eb60469d88a028ce759ff88832ed5328^{commit} # timeout=10'
b'Checking out Revision 27082a96eb60469d88a028ce759ff88832ed5328 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 27082a96eb60469d88a028ce759ff88832ed5328 # timeout=10'
b'Commit message: "format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp"'
b' > git rev-list --no-walk 8d603b0e3e20a49a46588701d4706b83b00766ca # 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 b877a6e9baddaca2a881326f0965fbf6af284ea8 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f b877a6e9baddaca2a881326f0965fbf6af284ea8 # timeout=10'
b'Commit message: "Merge pull request #6645 from fnrizzi/fix_6644"'
b' > git rev-list --no-walk f8788ef2ae1940b627cc6ebc6abeef2c34e7e8dc # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins2743645561011607897.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'Already up to date.'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2117476 queued and waiting for resources'
b'srun: job 2117476 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=428 run_time=113'
b'gnu-10.2.1-Threads_Serial-release build_time=583 run_time=185'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 336 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 27082a96eb60469d88a028ce759ff88832ed5328^{commit} # timeout=10'
b'Checking out Revision 27082a96eb60469d88a028ce759ff88832ed5328 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 27082a96eb60469d88a028ce759ff88832ed5328 # timeout=10'
b'Commit message: "format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp"'
b' > git rev-list --no-walk 8d603b0e3e20a49a46588701d4706b83b00766ca # 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 b877a6e9baddaca2a881326f0965fbf6af284ea8 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f b877a6e9baddaca2a881326f0965fbf6af284ea8 # timeout=10'
b'Commit message: "Merge pull request #6645 from fnrizzi/fix_6644"'
b' > git rev-list --no-walk f8788ef2ae1940b627cc6ebc6abeef2c34e7e8dc # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins1741387971030581539.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'Already up to date.'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2117478 queued and waiting for resources'
b'srun: job 2117478 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release build_time=661 run_time=233'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL19_solo # 340 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 27082a96eb60469d88a028ce759ff88832ed5328^{commit} # timeout=10'
b'Checking out Revision 27082a96eb60469d88a028ce759ff88832ed5328 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 27082a96eb60469d88a028ce759ff88832ed5328 # timeout=10'
b'Commit message: "format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp"'
b' > git rev-list --no-walk 8d603b0e3e20a49a46588701d4706b83b00766ca # 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 b877a6e9baddaca2a881326f0965fbf6af284ea8 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f b877a6e9baddaca2a881326f0965fbf6af284ea8 # timeout=10'
b'Commit message: "Merge pull request #6645 from fnrizzi/fix_6644"'
b' > git rev-list --no-walk f8788ef2ae1940b627cc6ebc6abeef2c34e7e8dc # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_INTEL19_solo] $ /bin/bash -el /tmp/jenkins1471322991061968557.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
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 2117479 queued and waiting for resources'
b'srun: job 2117479 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=1688 run_time=112'
b'intel-19.0.5.281-Threads-release build_time=1208 run_time=111'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 312 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse 27082a96eb60469d88a028ce759ff88832ed5328^{commit} # timeout=10'
b'Checking out Revision 27082a96eb60469d88a028ce759ff88832ed5328 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 27082a96eb60469d88a028ce759ff88832ed5328 # timeout=10'
b'Commit message: "format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp"'
b' > git rev-list --no-walk 8d603b0e3e20a49a46588701d4706b83b00766ca # 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 b877a6e9baddaca2a881326f0965fbf6af284ea8 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f b877a6e9baddaca2a881326f0965fbf6af284ea8 # timeout=10'
b'Commit message: "Merge pull request #6645 from fnrizzi/fix_6644"'
b' > git rev-list --no-walk f8788ef2ae1940b627cc6ebc6abeef2c34e7e8dc # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins7899927935287091401.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
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 2117480 queued and waiting for resources'
b'srun: job 2117480 has been allocated resources'
b'Running on machine: solo'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=695 run_time=223'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             0.10.00                     -> 0.10.00'
b' * [new tag]             0.10.03                     -> 0.10.03'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
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.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b'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 4601'
b'Running on machine: inouye'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
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=2034 run_time=1125'
b'armpl-21.1.0-Serial-release build_time=1855 run_time=243'
b'salloc: Relinquishing job allocation 4601'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          fix_rtd_build               -> upstream/fix_rtd_build'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             0.10.00                     -> 0.10.00'
b' * [new tag]             0.10.03                     -> 0.10.03'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
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.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b'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 4600'
b'Running on machine: inouye'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
b''
b''
b'Going to test compilers:  gcc/10.2.0'
b'Testing compiler gcc/10.2.0'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'  Starting job gcc-10.2.0-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-10.2.0-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release build_time=2756 run_time=2123'
b'salloc: Relinquishing job allocation 4600'
b'salloc: Job allocation 4600 has been revoked.'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b'Finished: SUCCESS'
b''

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

b' > git checkout -f 27082a96eb60469d88a028ce759ff88832ed5328 # timeout=10'
b'Commit message: "format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp"'
b' > git rev-list --no-walk 8d603b0e3e20a49a46588701d4706b83b00766ca # timeout=10'
b'First time build. Skipping changelog.'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision b877a6e9baddaca2a881326f0965fbf6af284ea8 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f b877a6e9baddaca2a881326f0965fbf6af284ea8 # timeout=10'
b'Commit message: "Merge pull request #6645 from fnrizzi/fix_6644"'
b' > git rev-list --no-walk f8788ef2ae1940b627cc6ebc6abeef2c34e7e8dc # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_ROCM560] $ /bin/bash -el /tmp/jenkins3555295916659867396.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          fix_rtd_build               -> upstream/fix_rtd_build'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             0.10.00                     -> 0.10.00'
b' * [new tag]             0.10.03                     -> 0.10.03'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
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.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b'Already up to date.'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Running on machine: vega90a_caraway'
b'KokkosKernels Repository Status:  27082a96eb60469d88a028ce759ff88832ed5328 format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp'
b''
b'Kokkos Repository Status:  b877a6e9baddaca2a881326f0965fbf6af284ea8 Merge pull request #6645 from fnrizzi/fix_6644'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA90A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=1351 run_time=328'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Finished: SUCCESS'
b''

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

b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2582: 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] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.0/Hip_Serial-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp:21:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp:22:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp:28:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2596: 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] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.0/Hip_Serial-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_INT_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:21:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp:22:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp:28:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2610: 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] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.0/Hip_Serial-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_HIP_MEMSPACE_HIPSPACE.cpp:21:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp:22:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp:28:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2624: 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] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.0/Hip_Serial-release/graph/eti/generated_specializations_cpp/color_d1/Graph_color_d1_eti_COMPLEX_DOUBLE_ORDINAL_INT_OFFSET_SIZE_T_LAYOUTLEFT_EXECSPACE_SERIAL_MEMSPACE_HOSTSPACE.cpp:21:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/graph/impl/KokkosGraph_color_d1_spec.hpp:22:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp:28:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2638: 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] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/tpls/KokkosKernels_tpl_handles.cpp:18:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/tpls/KokkosKernels_tpl_handles_def.hpp:44:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2652: CMakeFiles/kokkoskernels.dir/sparse/tpls/KokkosKernels_tpl_handles.cpp.o] Error 1'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.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_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/impl/KokkosSparse_sptrsv_solve_spec.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp:28:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.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_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/impl/KokkosSparse_sptrsv_solve_spec.hpp:23:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosKernels_Handle.hpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_spgemm_handle.hpp:28:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/sparse/src/KokkosSparse_Utils_rocsparse.hpp:24:10: fatal error: 'rocm-core/rocm_version.h' file not found"
b'#include '
b'         ^~~~~~~~~~~~~~~~~~~~~~~~~~'
b'1 error generated when compiling for gfx90a.'
b'1 error generated when compiling for gfx90a.'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:2666: 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]: *** [CMakeFiles/kokkoskernels.dir/build.make:2680: 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:1499: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake rocm/5.6.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=VEGA908A --compiler=/opt/rocm-5.6.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,rocsolver    --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_VEGA90A_Tpls_ROCM560/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560.332/TestAll_2023-12-05_09.16.24/rocm/5.6.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: lean2: 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
Copy link
Contributor

cwpearson commented Dec 5, 2023

It looks like rocm/5.2.0 on caraway has rocm-core/rocm_version.h, but our 5.6.0 PR build is still failing. As an aside, I checked AMD's centos7 rocm docker image (5.6.0), and it does not have rocm-core/rocm_version.h, nor does it have a deprecation notice in rocm_version.h like caraway's rocm/5.2.0 does. Not sure what's going on yet.

@seanofthemillers
Copy link
Contributor Author

seanofthemillers commented Dec 5, 2023

I am also confused by this. I also don't see rocm-core in our machine's deployment of rocm 5.5, or 5.6, but I do see it in 5.2, 5.3, 5.4, 5.7 and 6.0. This got weirdly complicated in a hurry. I'll need to dig a bit deeper into this, but it looks like we may need a cmake level trigger on what directory to load the rocm_version.h file from.

@cwpearson
Copy link
Contributor

Any advice you can provide would be greatly appreciated!

@cwpearson
Copy link
Contributor

I've confirmed our rocm/5.6.0 install on caraway does not have a rocm-core directory.

@seanofthemillers
Copy link
Contributor Author

I'm testing now with the __has_include(<rocm-core/rocm_version.h>) macro - I will update once it finished compiling.

@kokkos-devops-admin
Copy link

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

@cwpearson cwpearson added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Dec 11, 2023
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Dec 11, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1102
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 689
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 360
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 347
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 348
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 352
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 324
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 834
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 829
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 823
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 344
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (seanofthemillers/kokkos-kernels)
  • Branch: rocm6_deprecation_fixes
  • SHA: d1bf499
  • Mode: TEST_REPO

Pull Request Author: seanofthemillers

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 689
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 360
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 347
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 348
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 352
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 324
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 834
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 829
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 823
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 344
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1102 (click to expand)

b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <66497> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  a07889a8d8e4f2b61791bdbd4887ea3d2c528466 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release build_time=1748 run_time=791'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  a07889a8d8e4f2b61791bdbd4887ea3d2c528466 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'  PASSED cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release build_time=1863 run_time=435'
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 # 689 (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=897 run_time=102'
b'gcc-9.3.0-OpenMP_Serial-release build_time=747 run_time=252'
b'gcc-9.3.0-Serial-release build_time=493 run_time=99'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  a07889a8d8e4f2b61791bdbd4887ea3d2c528466 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gcc/9.3.0'
b'Testing compiler gcc/9.3.0'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-OpenMP-release'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'Unrecognized compiler gcc/9.3.0 when looking for Spack variants'
b'  Starting job gcc-9.3.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-9.3.0-Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-9.3.0-OpenMP-release build_time=514 run_time=101'
b'gcc-9.3.0-Serial-release build_time=475 run_time=95'
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 # 360 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse d1bf49932d79d38acb3e8e31f34d6665fe3c9392^{commit} # timeout=10'
b'Checking out Revision d1bf49932d79d38acb3e8e31f34d6665fe3c9392 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'Commit message: "Fix for rocm_verison header inclusion"'
b' > git rev-list --no-walk 29a14c9abe88e9c70b53a62708fe4f83b50ef81e # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk 843fca336a8bc056b6650310f6c5152f06e3b7e7 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins3381776647781021652.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   6679f1967..cd8f77c1c  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124355 queued and waiting for resources'
b'srun: job 2124355 has been allocated resources'
b'srun: plugin_load_from_file: Incompatible Slurm plugin /usr/lib64/slurm/route_default.so version (22.05.10)'
b"srun: error: Couldn't load specified plugin name for route/default: Incompatible plugin version"
b'srun: error: cannot create route context for route/default'
b'srun: error: unable to split forward hostlist'
b'srun: error: slurm_send_recv_msgs failed miserably: No such device or address'
b'srun: error: Application launch failed: No such device or address'
b'srun: Job step aborted: Waiting up to 32 seconds for job step to finish.'
b'srun: error: Timed out waiting for job step to complete'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_GNU1021_Light_LayoutRight # 347 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse d1bf49932d79d38acb3e8e31f34d6665fe3c9392^{commit} # timeout=10'
b'Checking out Revision d1bf49932d79d38acb3e8e31f34d6665fe3c9392 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'Commit message: "Fix for rocm_verison header inclusion"'
b' > git rev-list --no-walk 29a14c9abe88e9c70b53a62708fe4f83b50ef81e # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk 843fca336a8bc056b6650310f6c5152f06e3b7e7 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins4767094932523587012.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   6679f1967..cd8f77c1c  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124354 queued and waiting for resources'
b'srun: job 2124354 has been allocated resources'
b'srun: plugin_load_from_file: Incompatible Slurm plugin /usr/lib64/slurm/route_default.so version (22.05.10)'
b"srun: error: Couldn't load specified plugin name for route/default: Incompatible plugin version"
b'srun: error: cannot create route context for route/default'
b'srun: error: unable to split forward hostlist'
b'srun: error: slurm_send_recv_msgs failed miserably: No such device or address'
b'srun: error: Application launch failed: No such device or address'
b'srun: Job step aborted: Waiting up to 32 seconds for job step to finish.'
b'srun: error: Timed out waiting for job step to complete'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 348 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse d1bf49932d79d38acb3e8e31f34d6665fe3c9392^{commit} # timeout=10'
b'Checking out Revision d1bf49932d79d38acb3e8e31f34d6665fe3c9392 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'Commit message: "Fix for rocm_verison header inclusion"'
b' > git rev-list --no-walk 29a14c9abe88e9c70b53a62708fe4f83b50ef81e # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk 843fca336a8bc056b6650310f6c5152f06e3b7e7 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins4146984807635951809.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   6679f1967..cd8f77c1c  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124356 queued and waiting for resources'
b'srun: job 2124356 has been allocated resources'
b'srun: plugin_load_from_file: Incompatible Slurm plugin /usr/lib64/slurm/route_default.so version (22.05.10)'
b"srun: error: Couldn't load specified plugin name for route/default: Incompatible plugin version"
b'srun: error: cannot create route context for route/default'
b'srun: error: unable to split forward hostlist'
b'srun: error: slurm_send_recv_msgs failed miserably: No such device or address'
b'srun: error: Application launch failed: No such device or address'
b'srun: Job step aborted: Waiting up to 32 seconds for job step to finish.'
b'srun: error: Timed out waiting for job step to complete'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse d1bf49932d79d38acb3e8e31f34d6665fe3c9392^{commit} # timeout=10'
b'Checking out Revision d1bf49932d79d38acb3e8e31f34d6665fe3c9392 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'Commit message: "Fix for rocm_verison header inclusion"'
b' > git rev-list --no-walk 29a14c9abe88e9c70b53a62708fe4f83b50ef81e # 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 ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk 843fca336a8bc056b6650310f6c5152f06e3b7e7 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_INTEL19_solo] $ /bin/bash -el /tmp/jenkins3297253724488476913.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   6679f1967..cd8f77c1c  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124357 queued and waiting for resources'
b'srun: job 2124357 has been allocated resources'
b'srun: plugin_load_from_file: Incompatible Slurm plugin /usr/lib64/slurm/route_default.so version (22.05.10)'
b"srun: error: Couldn't load specified plugin name for route/default: Incompatible plugin version"
b'srun: error: cannot create route context for route/default'
b'srun: error: unable to split forward hostlist'
b'srun: error: slurm_send_recv_msgs failed miserably: No such device or address'
b'srun: error: Application launch failed: No such device or address'
b'srun: Job step aborted: Waiting up to 32 seconds for job step to finish.'
b'srun: error: Timed out waiting for job step to complete'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 324 (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/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/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/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse d1bf49932d79d38acb3e8e31f34d6665fe3c9392^{commit} # timeout=10'
b'Checking out Revision d1bf49932d79d38acb3e8e31f34d6665fe3c9392 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'Commit message: "Fix for rocm_verison header inclusion"'
b' > git rev-list --no-walk 29a14c9abe88e9c70b53a62708fe4f83b50ef81e # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.30.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk 843fca336a8bc056b6650310f6c5152f06e3b7e7 # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins8702464279479696960.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   6679f1967..cd8f77c1c  develop    -> upstream/develop'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 2124358 queued and waiting for resources'
b'srun: job 2124358 has been allocated resources'
b'srun: plugin_load_from_file: Incompatible Slurm plugin /usr/lib64/slurm/route_default.so version (22.05.10)'
b"srun: error: Couldn't load specified plugin name for route/default: Incompatible plugin version"
b'srun: error: cannot create route context for route/default'
b'srun: error: unable to split forward hostlist'
b'srun: error: slurm_send_recv_msgs failed miserably: No such device or address'
b'srun: error: Application launch failed: No such device or address'
b'srun: Job step aborted: Waiting up to 32 seconds for job step to finish.'
b'srun: error: Timed out waiting for job step to complete'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
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 4632'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  1314d940c9150d7f70a2e82631bda17204d54ded Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  armpl/21.1.0'
b'Testing compiler armpl/21.1.0'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED armpl-21.1.0-OpenMP-release'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'Unrecognized compiler armpl/21.1.0 when looking for Spack variants'
b'  Starting job armpl-21.1.0-Serial-release'
b'kokkos devices: Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED armpl-21.1.0-Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release build_time=2317 run_time=1488'
b'armpl-21.1.0-Serial-release build_time=1912 run_time=246'
b'salloc: Relinquishing job allocation 4632'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
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.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'recursive' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
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 4631'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  1314d940c9150d7f70a2e82631bda17204d54ded Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  gcc/10.2.0'
b'Testing compiler gcc/10.2.0'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'Unrecognized compiler gcc/10.2.0 when looking for Spack variants'
b'  Starting job gcc-10.2.0-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: A64FX'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gcc-10.2.0-OpenMP_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release build_time=3485 run_time=2394'
b'salloc: Relinquishing job allocation 4631'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new tag]             0.10.00                     -> 0.10.00'
b' * [new tag]             0.10.03                     -> 0.10.03'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
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.02                      -> 3.7.02'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b"Merge made by the 'ort' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  af5ed7bb2fb7e6e21150e25a205a6d4d2335f869 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA90A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=1924 run_time=687'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM560'
b'Finished: SUCCESS'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/seanofthemillers/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/seanofthemillers/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/seanofthemillers/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse d1bf49932d79d38acb3e8e31f34d6665fe3c9392^{commit} # timeout=10'
b'Checking out Revision d1bf49932d79d38acb3e8e31f34d6665fe3c9392 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f d1bf49932d79d38acb3e8e31f34d6665fe3c9392 # timeout=10'
b'Commit message: "Fix for rocm_verison header inclusion"'
b' > git rev-list --no-walk 29a14c9abe88e9c70b53a62708fe4f83b50ef81e # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision ed08974c76ab00a28897c31b876dbd56d283d86d (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f ed08974c76ab00a28897c31b876dbd56d283d86d # timeout=10'
b'Commit message: "Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)"'
b' > git rev-list --no-walk 843fca336a8bc056b6650310f6c5152f06e3b7e7 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560] $ /bin/bash -el /tmp/jenkins83241772035202491.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b'   6679f1967..cd8f77c1c  develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .readthedocs.yaml                                  |  35 ++'
b' CMakeLists.txt                                     |   2 +-'
b' CheckHostBlasReturnComplex.cmake                   |   8 +-'
b' README.md                                          |   2 +-'
b' blas/src/KokkosBlas1_dot.hpp                       |  44 ++-'
b' blas/src/KokkosBlas1_swap.hpp                      |  16 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_avail.hpp       |  42 +-'
b' blas/tpls/KokkosBlas1_dot_tpl_spec_decl.hpp        | 436 +++++++++------------'
b' blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp       |   4 +-'
b' blas/tpls/KokkosBlas_Host_tpl.cpp                  |  55 ++-'
b' blas/unit_test/Test_Blas1_swap.hpp                 |  21 +-'
b' cmake/kokkoskernels_features.cmake                 |  27 +-'
b' docs/requirements.txt                              |   3 +-'
b' lapack/src/KokkosLapack_gesv.hpp                   |  25 ++'
b' lapack/tpls/KokkosLapack_Cuda_tpl.hpp              |   2 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_avail.hpp   |  24 +-'
b' lapack/tpls/KokkosLapack_gesv_tpl_spec_decl.hpp    | 360 ++++++-----------'
b' lapack/tpls/KokkosLapack_magma.hpp                 |  39 ++'
b' lapack/tpls/KokkosLapack_trtri_tpl_spec_decl.hpp   |   5 +-'
b' lapack/unit_test/Test_Lapack_gesv.hpp              |  18 +-'
b' ...osBlas3_gemm_standalone_perf_test_benchmark.cpp |  14 +-'
b' perf_test/sparse/CMakeLists.txt                    |   5 +'
b' perf_test/sparse/KokkosSparse_spmv_benchmark.cpp   |   1 +'
b' sparse/src/KokkosKernels_Handle.hpp                |   8 +-'
b' sparse/src/KokkosSparse_gauss_seidel_handle.hpp    |  11 +-'
b' sparse/unit_test/Test_Sparse_gauss_seidel.hpp      |   2 +-'
b' 26 files changed, 615 insertions(+), 594 deletions(-)'
b' create mode 100644 .readthedocs.yaml'
b' create mode 100644 lapack/tpls/KokkosLapack_magma.hpp'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  ca49cd5be8b2c87fe0dd34cb631cdc7aebe8a3ad Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  ed08974c76ab00a28897c31b876dbd56d283d86d Unit test for issue 3371 (negative vector length should not yield a negative max_team_size) (#6076)'
b''
b''
b'Going to test compilers:  rocm/5.6.0'
b'Testing compiler rocm/5.6.0'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.0 when looking for Spack variants'
b'  Starting job rocm-5.6.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.6.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.6.0-Hip_Serial-release build_time=1876 run_time=655'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560'
b'Sending e-mails to: cwpears@sandia.gov'
b'Finished: SUCCESS'
b''

@cwpearson
Copy link
Contributor

This looks like it's now passing the relevant tests on our CI, and hitting some unrelated CI infrastructure problems

@cwpearson cwpearson added the AT: RETEST Have this PR retested. label Dec 11, 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 '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: 1104
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 691
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 362
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 349
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 350
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 354
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 326
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 836
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 831
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 825
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 346
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (seanofthemillers/kokkos-kernels)
  • Branch: rocm6_deprecation_fixes
  • SHA: d1bf499
  • Mode: TEST_REPO

Pull Request Author: seanofthemillers

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 691
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 362
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 349
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 350
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 354
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 326
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 836
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 831
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 825
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 346
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/seanofthemillers/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d1bf499
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a80eb91
PR_LABELS Cleanup;AT: RETEST
PULLREQUESTNUM 2050
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Dec 11, 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
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@kokkos-devops-admin
Copy link

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

5 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

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.

Okay, this looks good to me, thanks @seanofthemillers

@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

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

@lucbv lucbv merged commit e2b240a into kokkos:develop Dec 18, 2023
10 checks passed
ndellingwood pushed a commit that referenced this pull request Jan 29, 2024
ROCm 6 deprecation fixes for rocsparse

(cherry picked from commit e2b240a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
AT: STALE Cleanup Code maintenance that isn't a bugfix or new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants