Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TPL oneMKL GEMV support #1912

Merged

Conversation

jczhang07
Copy link
Contributor

No description provided.

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

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

@jczhang07 thanks for helping with this, I have some comments regarding the execution space that needs to be addressed, the reinterpret_cast is fine as is, just wanted to offer a different option without use of the macro

blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp Outdated Show resolved Hide resolved
blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp Outdated Show resolved Hide resolved
sycl::event event; \
\
Kokkos::Profiling::pushRegion(label); \
const STDSCALAR* a = reinterpret_cast<const STDSCALAR*>(A.data()); \
Copy link
Contributor

Choose a reason for hiding this comment

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

This is okay, but I would have looked into a compile time check like:

if constexpr (Kokkos::ArithTraits<SCALAR>::is_complex) {
const std::complex<Kokkos::ArithTraits<SCALAR>::mag_type>* a = reinterpret_cast<...>(A.data());
} else {
 // no reinterpret cast, just use the pointers directly
}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Tried but found this problem: a is undefined in "CODE USING a"

if constexpr (Kokkos::ArithTraits<SCALAR>::is_complex) {
   const std::complex<Kokkos::ArithTraits<SCALAR>::mag_type>* a = reinterpret_cast<...>(A.data());
} else {
  const SCALAR *a = A.data();
}

CODE USING a;

I have to duplicate "CODE USING a" to the if-else clauses to solve the problem. Thus I had another approach using kokkos_to_std_type_map

@jczhang07 jczhang07 force-pushed the jczhang/2023-07-21/feature-tpl-mkl-gemv branch from 6c11c96 to 9fd938d Compare July 25, 2023 21:58
exec.sycl_queue(), trans, M, N, alpha, a, LDA, x, 1, beta, y, 1); \
} else { \
event = oneapi::mkl::blas::column_major::gemv( \
exec.sycl_queue(), trans, M, N, alpha, a, LDA, x, 1, beta, y, 1); \
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@lucbv I am unsure of this one. The oneMKL gemv returned event, but I don't wait on that because I don't want to synchronize the GPU. But I saw you did that in SpMV. In other words, the event variable is unused here.

Copy link
Contributor

Choose a reason for hiding this comment

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

I believe in the case of SpMV I need to wait because the handle would otherwise be destroyed before the release function is called on it.
The SpMV TPL path will be optimized a bit for the handle destruction to be done in a non-blocking way but I have not worked on that part yet...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Pipeline was clean, but anyway I removed the use of event.

Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks : )
Let us retest and this should be good

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

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

We probably do not need to capture the return of gemv as this could lead to a compiler warning, let's see what testing reports.

@lucbv lucbv added enhancement feature request AT: PRE-TEST INSPECTED Mark this PR as approved for testing. labels Jul 25, 2023
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jul 26, 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' - Failure: Timed out waiting for job KokkosKernels_PullRequest_GNU1021 to start: Total Wait = 3603

@jczhang07 jczhang07 force-pushed the jczhang/2023-07-21/feature-tpl-mkl-gemv branch from 9fd938d to e2162fd Compare July 26, 2023 14:19
@kokkos-devops-admin
Copy link

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

@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jul 27, 2023
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jul 27, 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: 765
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 356
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 29
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 28
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 28
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 34
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 27
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 539
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 534
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 533
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 55
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jczhang07/kokkos-kernels)
  • Branch: jczhang/2023-07-21/feature-tpl-mkl-gemv
  • SHA: e2162fd
  • Mode: TEST_REPO

Pull Request Author: jczhang07

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 356
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 29
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 28
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 28
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 34
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 27
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 539
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 534
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 533
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 55
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA e2162fd
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 846a747
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 765 (click to expand)

b' * [new branch]          release-candidate-3.7.00 -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01 -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02 -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0 -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01 -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00 -> upstream/release-candidate-4.1.00'
b' * [new tag]             3.7.01     -> 3.7.01'
b' * [new tag]             3.7.02     -> 3.7.02'
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'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <60132> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  4a83c3bbed81f0285217d10ccd447e6b0bea66d0 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=1220 run_time=567'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  4a83c3bbed81f0285217d10ccd447e6b0bea66d0 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=1560 run_time=572'
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 # 356 (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=536 run_time=131'
b'gcc-9.3.0-OpenMP_Serial-release build_time=711 run_time=310'
b'gcc-9.3.0-Serial-release build_time=495 run_time=124'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  020cfb779c69c487a80fd5782944f4a927b912ef Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=516 run_time=136'
b'gcc-9.3.0-Serial-release build_time=473 run_time=122'
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 # 29 (click to expand)

b'Checking out Revision e2162fd3e1069ece3267d1ef95ca29edcdd31f31 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f e2162fd3e1069ece3267d1ef95ca29edcdd31f31 # timeout=10'
b'Commit message: "Add TPL oneMKL GEMV support"'
b' > git rev-list --no-walk e9a53dc04e7a02194ab7a6a8daa959b1193f10f2 # 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 2f12ebb3e773ffa7d573600d4f693f95f549ac59 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'Commit message: "Improve SYCL reduction performance: MDRangePolicy (#6271)"'
b' > git rev-list --no-walk 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins3430849391672610667.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   846a7477a..aa7942dc8  develop    -> upstream/develop'
b'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  d81baa92afaf554d81fd61b754281301724377fc Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-Threads_Serial-release'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP-release'
b'kokkos devices: OpenMP'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED gnu-10.2.1-OpenMP-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release build_time=473 run_time=168'
b'gnu-10.2.1-Threads_Serial-release build_time=617 run_time=248'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

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

b'Checking out Revision e2162fd3e1069ece3267d1ef95ca29edcdd31f31 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f e2162fd3e1069ece3267d1ef95ca29edcdd31f31 # timeout=10'
b'Commit message: "Add TPL oneMKL GEMV support"'
b' > git rev-list --no-walk e9a53dc04e7a02194ab7a6a8daa959b1193f10f2 # 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 2f12ebb3e773ffa7d573600d4f693f95f549ac59 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'Commit message: "Improve SYCL reduction performance: MDRangePolicy (#6271)"'
b' > git rev-list --no-walk 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins8581262758708801081.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   846a7477a..aa7942dc8  develop    -> upstream/develop'
b'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  84019f968b92f5fd961f7b1a0e586a0cfa5b2ded Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=432 run_time=159'
b'gnu-10.2.1-Threads_Serial-release build_time=588 run_time=229'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 28 (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/jczhang07/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/jczhang07/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/jczhang07/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse e2162fd3e1069ece3267d1ef95ca29edcdd31f31^{commit} # timeout=10'
b'Checking out Revision e2162fd3e1069ece3267d1ef95ca29edcdd31f31 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f e2162fd3e1069ece3267d1ef95ca29edcdd31f31 # timeout=10'
b'Commit message: "Add TPL oneMKL GEMV support"'
b' > git rev-list --no-walk e9a53dc04e7a02194ab7a6a8daa959b1193f10f2 # 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 2f12ebb3e773ffa7d573600d4f693f95f549ac59 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'Commit message: "Improve SYCL reduction performance: MDRangePolicy (#6271)"'
b' > git rev-list --no-walk 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins5711771581382963318.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   846a7477a..aa7942dc8  develop    -> upstream/develop'
b'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  13f17d7aee5cec6bdb2510b063c96e4733d144b5 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=649 run_time=298'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

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

b'[ 24%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/mult/Blas1_mult_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 25%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/mult/Blas1_mult_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 25%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/mult/Blas1_mult_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 26%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/reciprocal/Blas1_reciprocal_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 26%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/reciprocal/Blas1_reciprocal_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 27%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/reciprocal/Blas1_reciprocal_mv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 27%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/reciprocal/Blas1_reciprocal_mv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 27%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/rot/Blas1_rot_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 28%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/rot/Blas1_rot_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 28%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/rotg/Blas1_rotg_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 29%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/rotg/Blas1_rotg_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 29%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/rotm/Blas1_rotm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 29%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/rotmg/Blas1_rotmg_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/swap/Blas1_swap_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 30%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/swap/Blas1_swap_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 31%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/ger/Blas2_ger_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/ger/Blas2_ger_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 32%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/syr/Blas2_syr_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'[ 33%] Building CXX object CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemm/Blas3_gemm_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/impl/KokkosBlas2_gemv_spec.hpp(155),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.34/TestAll_2023-07-27_09.22.24/intel/19.0.5.281/Threads-release/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp(20):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp(792): catastrophic error: cannot open source file "oneapi/mkl/blas.hpp"'
b'  #include '
b'                                ^'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.34/TestAll_2023-07-27_09.22.24/intel/19.0.5.281/Threads-release/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 4)'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:1084: CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 4'
b'make[2]: *** Waiting for unfinished jobs....'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/impl/KokkosBlas2_gemv_spec.hpp(155),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.34/TestAll_2023-07-27_09.22.24/intel/19.0.5.281/Threads-release/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp(20):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp(792): catastrophic error: cannot open source file "oneapi/mkl/blas.hpp"'
b'  #include '
b'                                ^'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.34/TestAll_2023-07-27_09.22.24/intel/19.0.5.281/Threads-release/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp (code 4)'
b'make[2]: *** [CMakeFiles/kokkoskernels.dir/build.make:1098: CMakeFiles/kokkoskernels.dir/blas/eti/generated_specializations_cpp/gemv/Blas2_gemv_eti_COMPLEX_DOUBLE_LAYOUTLEFT_EXECSPACE_THREADS_MEMSPACE_HOSTSPACE.cpp.o] Error 4'
b'[ 33%] Linking CXX static library libkokkoskernels_gtest.a'
b'[ 33%] Built target kokkoskernels_gtest'
b'make[1]: *** [CMakeFiles/Makefile2:1133: CMakeFiles/kokkoskernels.dir/all] Error 2'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'intel-19.0.5.281-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.34/TestAll_2023-07-27_09.22.24/intel/19.0.5.281/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'intel-19.0.5.281-Threads-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/8.2.1 intel/19.0.5.281 mkl/19.0.5.281'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads --arch=BDW --compiler=/projects/global/toss3/compilers/intel/intel_2019/compilers_and_libraries_2019.5.281/linux/bin/intel64/icpc --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869" --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,mkl    --with-options= --with-cuda-options=   --no-examples   --disable-perftests'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.34/TestAll_2023-07-27_09.22.24/intel/19.0.5.281/Threads-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo323: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 27 (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/jczhang07/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/jczhang07/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/jczhang07/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse e2162fd3e1069ece3267d1ef95ca29edcdd31f31^{commit} # timeout=10'
b'Checking out Revision e2162fd3e1069ece3267d1ef95ca29edcdd31f31 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f e2162fd3e1069ece3267d1ef95ca29edcdd31f31 # timeout=10'
b'Commit message: "Add TPL oneMKL GEMV support"'
b' > git rev-list --no-walk e9a53dc04e7a02194ab7a6a8daa959b1193f10f2 # 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 2f12ebb3e773ffa7d573600d4f693f95f549ac59 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'Commit message: "Improve SYCL reduction performance: MDRangePolicy (#6271)"'
b' > git rev-list --no-walk 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins6924333090530894566.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   846a7477a..aa7942dc8  develop    -> upstream/develop'
b'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  7c6fa3618c4f8d49b48bddc6fbda821d622287ae Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=689 run_time=275'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

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

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'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.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 3906'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  e8998f2ae4b4c4184f87b350807050367f0bdc92 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=2031 run_time=1064'
b'armpl-21.1.0-Serial-release build_time=1853 run_time=318'
b'salloc: Relinquishing job allocation 3906'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          release-candidate-3.2.1 -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0 -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1 -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0 -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1 -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0 -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0 -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01 -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00 -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01 -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02 -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0 -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01 -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00 -> upstream/release-candidate-4.1.00'
b' * [new tag]             3.7.01     -> 3.7.01'
b' * [new tag]             3.7.02     -> 3.7.02'
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'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.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 3905'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  e8998f2ae4b4c4184f87b350807050367f0bdc92 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
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=2762 run_time=2151'
b'salloc: Relinquishing job allocation 3905'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b'Finished: SUCCESS'
b''

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

b'First time build. Skipping changelog.'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.31.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision 2f12ebb3e773ffa7d573600d4f693f95f549ac59 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'Commit message: "Improve SYCL reduction performance: MDRangePolicy (#6271)"'
b' > git rev-list --no-walk 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins305774357341843730.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          cwpearson/docs-apt-update -> upstream/cwpearson/docs-apt-update'
b' * [new branch]          develop    -> upstream/develop'
b' * [new branch]          master     -> upstream/master'
b' * [new branch]          release-candidate-3.2.1 -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0 -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1 -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0 -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1 -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0 -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0 -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01 -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00 -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01 -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02 -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0 -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01 -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00 -> upstream/release-candidate-4.1.00'
b' * [new tag]             3.7.01     -> 3.7.01'
b' * [new tag]             3.7.02     -> 3.7.02'
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'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'Running on machine: caraway'
b"KokkosKernels Repository Status:  ca45abd80c530903b2cd28d7de703022ada7b70d Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
b''
b''
b'Going to test compilers:  rocm/5.2.0'
b'Testing compiler rocm/5.2.0'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'  Starting job rocm-5.2.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.2.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release build_time=948 run_time=452'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'Finished: SUCCESS'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/jczhang07/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/jczhang07/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.31.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/jczhang07/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse e2162fd3e1069ece3267d1ef95ca29edcdd31f31^{commit} # timeout=10'
b'Checking out Revision e2162fd3e1069ece3267d1ef95ca29edcdd31f31 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f e2162fd3e1069ece3267d1ef95ca29edcdd31f31 # timeout=10'
b'Commit message: "Add TPL oneMKL GEMV support"'
b' > git rev-list --no-walk e9a53dc04e7a02194ab7a6a8daa959b1193f10f2 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.31.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision 2f12ebb3e773ffa7d573600d4f693f95f549ac59 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'Commit message: "Improve SYCL reduction performance: MDRangePolicy (#6271)"'
b' > git rev-list --no-walk 2f12ebb3e773ffa7d573600d4f693f95f549ac59 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520] $ /bin/bash -el /tmp/jenkins4500616531145997870.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b'   846a7477a..aa7942dc8  develop    -> upstream/develop'
b'Auto-merging blas/src/KokkosBlas2_gemv.hpp'
b"Merge made by the 'recursive' strategy."
b' blas/src/KokkosBlas2_gemv.hpp                      |   8 --'
b' blas/src/KokkosBlas3_gemm.hpp                      |   8 --'
b' common/{src => impl}/KokkosKernels_AlwaysFalse.hpp |  21 +--'
b' common/impl/KokkosKernels_ViewUtils.hpp            |  59 +++++++++'
b' common/src/KokkosKernels_Error.hpp                 |   1 +'
b' ode/impl/KokkosODE_RungeKutta_impl.hpp             |   8 +-'
b' ode/unit_test/Test_ODE_RK.hpp                      |  16 +--'
b' ode/unit_test/Test_ODE_RK_chem.hpp                 |   4 +-'
b' perf_test/Benchmark_Utils.hpp                      |  45 +++++++'
b' perf_test/ode/KokkosODE_RK.cpp                     |   8 +-'
b' perf_test/sparse/CMakeLists.txt                    |   6 +'
b' .../sparse/KokkosSparse_spmv_bsr_benchmark.cpp     |  90 +++++++------'
b' sparse/impl/KokkosSparse_crs_detect_block_size.hpp |  26 ++--'
b' sparse/impl/KokkosSparse_crs_to_bsr_impl.hpp       |  16 ++-'
b' .../impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp  | 144 +++++++++++++++++++++'
b' sparse/impl/KokkosSparse_spmv_bsrmatrix_spec.hpp   | 103 ++++++++++++---'
b' sparse/src/KokkosKernels_Controls.hpp              |   2 -'
b' sparse/src/KokkosSparse_BsrMatrix.hpp              |  51 ++++++--'
b' sparse/src/KokkosSparse_spmv.hpp                   |  12 +-'
b' .../KokkosSparse_spmv_bsrmatrix_tpl_spec_decl.hpp  |   2 +-'
b' sparse/unit_test/Test_Sparse_spmv_bsr.hpp          |   7 +-'
b' 21 files changed, 495 insertions(+), 142 deletions(-)'
b' rename common/{src => impl}/KokkosKernels_AlwaysFalse.hpp (63%)'
b' create mode 100644 common/impl/KokkosKernels_ViewUtils.hpp'
b' create mode 100644 perf_test/Benchmark_Utils.hpp'
b' create mode 100644 sparse/impl/KokkosSparse_spmv_bsrmatrix_impl_v42.hpp'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'Running on machine: caraway'
b"KokkosKernels Repository Status:  c2f721b93e30b01d1072898ed4b05ec7b6f73a37 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  2f12ebb3e773ffa7d573600d4f693f95f549ac59 Improve SYCL reduction performance: MDRangePolicy (#6271)'
b''
b''
b'Going to test compilers:  rocm/5.2.0'
b'Testing compiler rocm/5.2.0'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'Unrecognized compiler rocm/5.2.0 when looking for Spack variants'
b'  Starting job rocm-5.2.0-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'  PASSED rocm-5.2.0-Hip_Serial-release'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release build_time=969 run_time=462'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'Finished: SUCCESS'
b''

@lucbv
Copy link
Contributor

lucbv commented Jul 27, 2023

@jczhang07 the oneapi header needs to be guarded with #ifdef KOKKOS_ENABLE_SYCL, for simplicity you could just change line 790 to:

if defined(KOKKOS_ENABLE_SYCL) && defined(KOKKOSKERNELS_ENABLE_TPL_MKL)

then you can remove lines 798 and 890

@jczhang07 jczhang07 force-pushed the jczhang/2023-07-21/feature-tpl-mkl-gemv branch from e2162fd to 171ef7d Compare July 27, 2023 17:40
@lucbv lucbv added the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jul 27, 2023
@kokkos-devops-admin kokkos-devops-admin removed the AT: PRE-TEST INSPECTED Mark this PR as approved for testing. label Jul 27, 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: 767
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 358
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 31
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 30
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 30
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 36
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 29
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 541
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 536
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 535
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 57
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (jczhang07/kokkos-kernels)
  • Branch: jczhang/2023-07-21/feature-tpl-mkl-gemv
  • SHA: 171ef7d
  • Mode: TEST_REPO

Pull Request Author: jczhang07

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 358
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 31
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 30
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 30
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 36
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 29
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 541
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 536
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 535
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 57
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/jczhang07/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 171ef7d
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA aa7942d
PR_LABELS enhancement;feature request
PULLREQUESTNUM 1912
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@lucbv lucbv merged commit 71a2e0a into kokkos:develop Jul 27, 2023
10 checks passed
ndellingwood added a commit to ndellingwood/kokkos-kernels that referenced this pull request Nov 2, 2023
ndellingwood added a commit to ndellingwood/kokkos-kernels that referenced this pull request Nov 2, 2023
ndellingwood added a commit to ndellingwood/kokkos-kernels that referenced this pull request Nov 2, 2023
ndellingwood added a commit to ndellingwood/kokkos-kernels that referenced this pull request Nov 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants