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

ODE: BDF methods #1930

Merged
merged 22 commits into from
Mar 12, 2024
Merged

ODE: BDF methods #1930

merged 22 commits into from
Mar 12, 2024

Conversation

lucbv
Copy link
Contributor

@lucbv lucbv commented Aug 3, 2023

Adding backward difference formula methods orders 1 to 5 (coefficients for 6 exist but no accurate start-up implemented).
Also implementing a fix for the convergence criteria of the Newton solver...
Fixing some documentation related to the Newton solver input parameters.

@vbrunini when you have time please have a look

@lucbv lucbv added bug feature request Cleanup Code maintenance that isn't a bugfix or new feature labels Aug 3, 2023
@lucbv lucbv requested a review from brian-kelley August 3, 2023 20:22
@lucbv lucbv self-assigned this Aug 3, 2023
@lucbv lucbv added the AT: WIP label Aug 3, 2023
const int init_steps = table.order - 1;
if (num_steps < init_steps) {
throw std::runtime_error(
"num_steps is too small to initialize the implict integrator!");
Copy link

Choose a reason for hiding this comment

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

Can't throw inside a KOKKOS_FUNCTION right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah, I think testing just complained about it, that's what I get for prototyping on my laptop x)

// solver the nonlinear problem
{
KokkosODE::Experimental::Newton::Solve(sys, param, jac, temp, y_new, rhs,
update);
Copy link

Choose a reason for hiding this comment

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

Probably need some handling of the solver error cases (and to propagate that up to report back to the calling app).

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yep, so like we have the error code via enum for Newton and RK we will do the same for this and add a specific code for nonlinear solver failure.
Will add that in next commit

KokkosODE::Experimental::BDF_type::BDF5>::Solve(mySys, t_start, t_end,
num_steps[idx], y0,
y_new, rhs, update,
y_vecs, temp, jac);
Copy link

Choose a reason for hiding this comment

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

Eventually at the app level we're going to need to wrap things in an interface that is common between the explicit & implicit solvers. I don't think we need to worry about it in this PR, and maybe it makes more sense for that wrapper level to stay in app code, but I think we should at least consider having it in kokkos-kernels.

The interfaces are pretty much the same except for the different number of scratch views needed for extra space internally right now right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Correct, I am still waiting for Adams method before going with the final method which might be called KokkosODE::Experimental::Solve() and will allow to pick any specific method under the hood via template+params.
The internal storage will be lumped into a single view eventually but I still want Adams to get a good sense of all the scenario

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job KokkosKernels_PullRequest_CLANG1001_solo to start: Total Wait = 3603

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 804
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 395
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 68
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 67
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 67
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 73
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 60
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 571
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 566
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 565
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 87
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: ODE_BDF1
  • SHA: 397c42c
  • Mode: TEST_REPO

Pull Request Author: lucbv

@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: 804
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 395
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 68
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 67
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 67
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 73
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 60
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 571
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 566
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 565
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 87
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 397c42c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 804 (click to expand)

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

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

b'24: '
b'24/26 Test #24: wiki_coarsening ..................   Passed    0.29 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.395/TestAll_2023-08-10_08.00.18/clang/13.0.0/Cuda-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.26 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.395/TestAll_2023-08-10_08.00.18/clang/13.0.0/Cuda-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.78 sec'
b''
b'96% tests passed, 1 tests failed out of 26'
b''
b'Total Test time (real) = 581.77 sec'
b''
b'The following tests FAILED:'
b'\t 16 - ode_serial (Subprocess aborted)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-13.0.0-Cuda-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /projects/ppc64le-pwr9-rhel8/legacy-env.sh'
b'        module purge'
b'        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda --arch=Power9,Volta70 --compiler=/home/projects/ppc64le-pwr9-nvidia/spack/opt/spack/linux-rhel7-power9le/gcc-7.4.0/llvm-13.0.0-t6hzufjroylzhs7hg3dvmhrrcsvhygzv/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/10.1.243  --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.395/TestAll_2023-08-10_08.00.18/clang/13.0.0/Cuda-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.68/TestAll_2023-08-10_08.27.09/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 136.69 sec'
b''
b'The following tests FAILED:'
b'\t  8 - ode_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.68/TestAll_2023-08-10_08.27.09/gnu/10.2.1/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'gnu-10.2.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.68/TestAll_2023-08-10_08.27.09/gnu/10.2.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo277: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:       ***  **    *  *   *           '
b'17:        ***      * * *   **          '
b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.00 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.67/TestAll_2023-08-10_08.27.19/gnu/10.2.1/OpenMP-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.48957e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 129.16 sec'
b''
b'The following tests FAILED:'
b'\t  8 - ode_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.67/TestAll_2023-08-10_08.27.19/gnu/10.2.1/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'gnu-10.2.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.67/TestAll_2023-08-10_08.27.19/gnu/10.2.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo91: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.01 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.67/TestAll_2023-08-10_08.32.04/gnu/10.2.1/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.10 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.67/TestAll_2023-08-10_08.32.04/gnu/10.2.1/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 252.64 sec'
b''
b'The following tests FAILED:'
b'\t 15 - ode_serial (SEGFAULT)'
b'\t 16 - ode_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1 openblas/0.3.21'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.67/TestAll_2023-08-10_08.32.04/gnu/10.2.1/OpenMP_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo349: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'            instantiation of "void Test::BDFSolve_parallel::operator()(int) const [with ode_type=Test::LotkaVolterra, bdf_type=KokkosODE::Experimental::BDF5, vec_type=Kokkos::View, mv_type=Kokkos::View, mat_type=Kokkos::View, scalar_type=double]" at line 45 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.73/TestAll_2023-08-10_08.32.15/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "std::enable_if_t::value, void> Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec_range(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::Threads>::Member, Kokkos::Impl::ParallelFor, Kokkos::Threads>::Member) [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Traits=, TagType=Kokkos::Impl::WorkTagTrait::base_traits::work_tag]" at line 74 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.73/TestAll_2023-08-10_08.32.15/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "std::enable_if_t::value, void> Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec_schedule(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>,'
b'                      Traits=, Schedule=Kokkos::Static]" at line 63 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.73/TestAll_2023-08-10_08.32.15/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Traits=]" at line 111 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.73/TestAll_2023-08-10_08.32.15/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::Threads>::execute() const [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Traits=]" at line 144 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.73/TestAll_2023-08-10_08.32.15/intel/19.0.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"'
b'            instantiation of "void Kokkos::parallel_for(const std::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Enable=void]" at line 153 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.73/TestAll_2023-08-10_08.32.15/intel/19.0.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"'
b'            instantiation of "void Kokkos::parallel_for(const ExecPolicy &, const FunctorType &, std::enable_if_t::value, void> *) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>]" at line 486 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp"'
b'            instantiation of "void Test::test_BDF_parallel() [with execution_space=Kokkos::Threads, scalar_type=double]" at line 501 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp"'
b''
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp (code 2)'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o] Error 2'
b'make[1]: *** [CMakeFiles/Makefile2:1375: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 86%] Linking CXX executable KokkosKernels_wiki_crsmatrix'
b'[ 87%] Linking CXX executable KokkosKernels_wiki_spgemm'
b'[ 87%] Linking CXX executable KokkosKernels_wiki_spadd'
b'[ 87%] Built target KokkosKernels_wiki_crsmatrix'
b'[ 87%] Built target KokkosKernels_wiki_spgemm'
b'[ 87%] Built target KokkosKernels_wiki_spadd'
b'[ 88%] Linking CXX executable KokkosKernels_wiki_spmv'
b'[ 88%] Built target KokkosKernels_wiki_spmv'
b'[ 88%] Linking CXX executable KokkosKernels_batched_sla_threads'
b'[ 88%] Built target KokkosKernels_batched_sla_threads'
b'[ 88%] Linking CXX executable KokkosKernels_batched_gemm_threads'
b'[ 88%] Built target KokkosKernels_batched_gemm_threads'
b'[ 89%] Linking CXX executable KokkosKernels_common_threads'
b'[ 89%] Built target KokkosKernels_common_threads'
b'[ 90%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 90%] Built target KokkosKernels_graph_threads'
b'[ 90%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 90%] Built target KokkosKernels_blas_threads'
b'[ 91%] Linking CXX executable KokkosKernels_batched_dla_threads'
b'[ 91%] Built target KokkosKernels_batched_dla_threads'
b'[ 91%] Linking CXX executable KokkosKernels_sparse_threads'
b'[ 91%] Built target KokkosKernels_sparse_threads'
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.73/TestAll_2023-08-10_08.32.15/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.73/TestAll_2023-08-10_08.32.15/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: solo151: 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 # 60 (click to expand)

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.00 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.60/TestAll_2023-08-10_08.47.54/llvm/10.0.1/Threads_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.07 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.60/TestAll_2023-08-10_08.47.54/llvm/10.0.1/Threads_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.19821e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.00 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 235.76 sec'
b''
b'The following tests FAILED:'
b'\t 15 - ode_serial (Subprocess aborted)'
b'\t 16 - ode_threads (Subprocess aborted)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 llvm/10.0.1 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/projects/netpub/sems/llvm/10.0.1/gcc/10.2.1/b4rc6cw/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.60/TestAll_2023-08-10_08.47.54/llvm/10.0.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo349: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'17:         ***      * *    ***         '
b'17:          **       *      **         '
b'17:            ***  **   *  *  *        '
b'17:             ***     * * *  **       '
b'17:              ***     * *   ***      '
b'17:               **      *     **      '
b'17:                 *** **   * *  *     '
b'17:                  ***    * **  **    '
b'17:                   **     *    **    '
b'17:                     *** **  * * *   '
b'17:                      ***   * ** **  '
b'17:                       **    *   **  '
b'17:                         *****  ** * '
b'17:                          **   * * * '
b'17:                            ***** ***'
b'17:                             **  * **'
b'17:                               **** *'
b'17:                                 *** '
b'17: '
b'17/18 Test #17: wiki_rcm .........................   Passed    0.09 sec'
b'test 18'
b'      Start 18: gmres_test_prec'
b''
b'18: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.571/TestAll_2023-08-10_08.51.05/armpl/21.1.0/Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'18: Test timeout computed to be: 2500'
b'18: Convergence tolerance is: 1e-10'
b'18: ========================================='
b'18: Verify from main: Ending residual is 3.35095e-14'
b'18: Number of iterations is: 1'
b'18: Diff of residual from main - residual from solver: 0'
b'18: Convergence flag is : 0'
b'18: Test passed!'
b'18/18 Test #18: gmres_test_prec ..................   Passed    0.09 sec'
b''
b'94% tests passed, 1 tests failed out of 18'
b''
b'Total Test time (real) = 276.81 sec'
b''
b'The following tests FAILED:'
b'\t  8 - ode_serial (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.571/TestAll_2023-08-10_08.51.05/armpl/21.1.0/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'armpl-21.1.0-Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.571/TestAll_2023-08-10_08.51.05/armpl/21.1.0/Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'salloc: Relinquishing job allocation 3982'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.566/TestAll_2023-08-10_08.51.05/gcc/10.2.0/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.14 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.566/TestAll_2023-08-10_08.51.05/gcc/10.2.0/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.13 sec'
b''
b'92% tests passed, 2 tests failed out of 26'
b''
b'Total Test time (real) = 2386.36 sec'
b''
b'The following tests FAILED:'
b'\t 15 - ode_serial (SEGFAULT)'
b'\t 16 - ode_openmp (SEGFAULT)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.566/TestAll_2023-08-10_08.51.05/gcc/10.2.0/OpenMP_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'salloc: Relinquishing job allocation 3981'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'24: '
b'24/26 Test #24: wiki_coarsening ..................   Passed    0.37 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.565/TestAll_2023-08-10_08.51.20/rocm/5.2.0/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.39 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.565/TestAll_2023-08-10_08.51.20/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.43 sec'
b''
b'96% tests passed, 1 tests failed out of 26'
b''
b'Total Test time (real) = 423.97 sec'
b''
b'The following tests FAILED:'
b'\t 16 - ode_serial (Subprocess aborted)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.565/TestAll_2023-08-10_08.51.20/rocm/5.2.0/Hip_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: caraway05: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'24/26 Test #24: wiki_coarsening ..................   Passed    0.40 sec'
b'test 25'
b'      Start 25: wiki_rcm'
b''
b'25: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.87/TestAll_2023-08-10_08.51.19/rocm/5.2.0/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'25: Test timeout computed to be: 2500'
b'25: Graph reordered by reverse Cuthill-McKee:'
b'25:  *    *    *                        '
b'25: * *   *    **                       '
b'25:  * *       ***                      '
b'25:   * *       ***                     '
b'25:    * *       ***                    '
b'25:     *         **                    '
b'25: **     *   *    *                   '
b'25:       * *  *    **                  '
b'25:        * *      ***                 '
b'25:         * *      ***                '
b'25:          *        **                '
b'25: ***   **    *   *   *               '
b'25:  ***       * *  *   **              '
b'25:   ***       * *     ***             '
b'25:    ***       * *     ***            '
b'25:     **        *       **            '
b'25:       ***  **    *  *   *           '
b'25:        ***      * * *   **          '
b'25:         ***      * *    ***         '
b'25:          **       *      **         '
b'25:            ***  **   *  *  *        '
b'25:             ***     * * *  **       '
b'25:              ***     * *   ***      '
b'25:               **      *     **      '
b'25:                 *** **   * *  *     '
b'25:                  ***    * **  **    '
b'25:                   **     *    **    '
b'25:                     *** **  * * *   '
b'25:                      ***   * ** **  '
b'25:                       **    *   **  '
b'25:                         *****  ** * '
b'25:                          **   * * * '
b'25:                            ***** ***'
b'25:                             **  * **'
b'25:                               **** *'
b'25:                                 *** '
b'25: '
b'25/26 Test #25: wiki_rcm .........................   Passed    0.39 sec'
b'test 26'
b'      Start 26: gmres_test_prec'
b''
b'26: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.87/TestAll_2023-08-10_08.51.19/rocm/5.2.0/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'26: Test timeout computed to be: 2500'
b'26: Convergence tolerance is: 1e-10'
b'26: ========================================='
b'26: Verify from main: Ending residual is 3.48957e-14'
b'26: Number of iterations is: 1'
b'26: Diff of residual from main - residual from solver: 0'
b'26: Convergence flag is : 0'
b'26: Test passed!'
b'26/26 Test #26: gmres_test_prec ..................   Passed    0.52 sec'
b''
b'96% tests passed, 1 tests failed out of 26'
b''
b'Total Test time (real) = 414.59 sec'
b''
b'The following tests FAILED:'
b'\t 16 - ode_serial (Subprocess aborted)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0 openblas/0.3.20/rocm/5.2.0'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas,rocblas,rocsparse    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.87/TestAll_2023-08-10_08.51.19/rocm/5.2.0/Hip_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: caraway06: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Sending e-mails to: [email protected]'
b'Finished: FAILURE'
b''

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job KokkosKernels_PullRequest_CLANG1001_solo to start: Total Wait = 3603

@lucbv lucbv added the AT: RETEST Have this PR retested. label Aug 15, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 827
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 418
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 91
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 90
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 90
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 96
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 78
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 589
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 584
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 583
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 105
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: ODE_BDF1
  • SHA: bdbdd57
  • Mode: TEST_REPO

Pull Request Author: lucbv

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 418
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 91
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 90
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 90
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 96
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 78
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 589
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 584
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 583
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 105
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA bdbdd57
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup;AT: RETEST
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 827 (click to expand)

b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.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' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <61148> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  e97346a0229c2e7374ffc86471914dbd8a4ca71b Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=1261 run_time=520'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  e97346a0229c2e7374ffc86471914dbd8a4ca71b Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=1584 run_time=509'
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 # 418 (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=548 run_time=114'
b'gcc-9.3.0-OpenMP_Serial-release build_time=718 run_time=257'
b'gcc-9.3.0-Serial-release build_time=498 run_time=110'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  c2e90a06a4024bc1cf353e3a538b1d38b8328b66 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=517 run_time=108'
b'gcc-9.3.0-Serial-release build_time=484 run_time=105'
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 # 91 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/lucbv/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/lucbv/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/lucbv/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad^{commit} # timeout=10'
b'Checking out Revision bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad # timeout=10'
b'Commit message: "ODE: clang-format"'
b' > git rev-list --no-walk f2204a067c6126eae006302cd65ce9b573f91a86 # 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 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'Commit message: "Use std::aligned_alloc for allocations (#6341)"'
b' > git rev-list --no-walk 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -el /tmp/jenkins4025104967393134551.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   e13aedc0a..0c2a295fa  develop    -> upstream/develop'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
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:  b8eeacb3b65b64d06091a5f0fa696736f4b32214 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=474 run_time=138'
b'gnu-10.2.1-Threads_Serial-release build_time=623 run_time=218'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'Finished: SUCCESS'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/lucbv/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/lucbv/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/lucbv/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad^{commit} # timeout=10'
b'Checking out Revision bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad # timeout=10'
b'Commit message: "ODE: clang-format"'
b' > git rev-list --no-walk f2204a067c6126eae006302cd65ce9b573f91a86 # 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 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'Commit message: "Use std::aligned_alloc for allocations (#6341)"'
b' > git rev-list --no-walk 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins54501416654589227.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   e13aedc0a..0c2a295fa  develop    -> upstream/develop'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
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:  8520b464668e0b6175c0951ee35c75d521f74254 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=439 run_time=131'
b'gnu-10.2.1-Threads_Serial-release build_time=590 run_time=198'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GNU1021 # 90 (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/lucbv/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/lucbv/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/lucbv/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad^{commit} # timeout=10'
b'Checking out Revision bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad # timeout=10'
b'Commit message: "ODE: clang-format"'
b' > git rev-list --no-walk f2204a067c6126eae006302cd65ce9b573f91a86 # 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 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'Commit message: "Use std::aligned_alloc for allocations (#6341)"'
b' > git rev-list --no-walk 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -el /tmp/jenkins1473676400730126455.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   e13aedc0a..0c2a295fa  develop    -> upstream/develop'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
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:  2b3b2d460fbf5098d365356df14d37e4f46dda94 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=652 run_time=256'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

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

b'            instantiation of "void Test::BDFSolve_parallel::operator()(int) const [with ode_type=Test::LotkaVolterra, bdf_type=KokkosODE::Experimental::BDF5, vec_type=Kokkos::View, mv_type=Kokkos::View, mat_type=Kokkos::View, scalar_type=double]" at line 45 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.96/TestAll_2023-08-15_07.54.22/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "std::enable_if_t::value, void> Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec_range(const FunctorType &, Kokkos::Impl::ParallelFor, Kokkos::Threads>::Member, Kokkos::Impl::ParallelFor, Kokkos::Threads>::Member) [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Traits=, TagType=Kokkos::Impl::WorkTagTrait::base_traits::work_tag]" at line 74 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.96/TestAll_2023-08-15_07.54.22/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "std::enable_if_t::value, void> Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec_schedule(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>,'
b'                      Traits=, Schedule=Kokkos::Static]" at line 63 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.96/TestAll_2023-08-15_07.54.22/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::Threads>::exec(Kokkos::Impl::ThreadsExec &, const void *) [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Traits=]" at line 111 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.96/TestAll_2023-08-15_07.54.22/intel/19.0.5.281/Threads-release/kokkos-install/include/Threads/Kokkos_Threads_Parallel_Range.hpp"'
b'            instantiation of "void Kokkos::Impl::ParallelFor, Kokkos::Threads>::execute() const [with FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Traits=]" at line 144 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.96/TestAll_2023-08-15_07.54.22/intel/19.0.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"'
b'            instantiation of "void Kokkos::parallel_for(const std::string &, const ExecPolicy &, const FunctorType &) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>, Enable=void]" at line 153 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/KokkosKernels_PullRequest_Tpls_INTEL19_solo.96/TestAll_2023-08-15_07.54.22/intel/19.0.5.281/Threads-release/kokkos-install/include/Kokkos_Parallel.hpp"'
b'            instantiation of "void Kokkos::parallel_for(const ExecPolicy &, const FunctorType &, std::enable_if_t::value, void> *) [with ExecPolicy=Kokkos::RangePolicy, FunctorType=Test::BDFSolve_parallel, Kokkos::View, Kokkos::View, double>]" at line 506 of'
b'                      "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp"'
b'            instantiation of "void Test::test_BDF_parallel() [with execution_space=Kokkos::Threads, scalar_type=double]" at line 523 of "/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp"'
b''
b'[ 86%] Linking CXX executable KokkosKernels_wiki_crsmatrix'
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp (code 2)'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o] Error 2'
b'make[1]: *** [CMakeFiles/Makefile2:1375: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 86%] Linking CXX executable KokkosKernels_wiki_spadd'
b'[ 87%] Linking CXX executable KokkosKernels_wiki_spgemm'
b'[ 87%] Built target KokkosKernels_wiki_crsmatrix'
b'[ 87%] Built target KokkosKernels_wiki_spadd'
b'[ 87%] Built target KokkosKernels_wiki_spgemm'
b'[ 88%] Linking CXX executable KokkosKernels_wiki_spmv'
b'[ 88%] Built target KokkosKernels_wiki_spmv'
b'[ 88%] Linking CXX executable KokkosKernels_batched_sla_threads'
b'[ 88%] Built target KokkosKernels_batched_sla_threads'
b'[ 88%] Linking CXX executable KokkosKernels_batched_gemm_threads'
b'[ 88%] Built target KokkosKernels_batched_gemm_threads'
b'[ 89%] Linking CXX executable KokkosKernels_common_threads'
b'[ 89%] Built target KokkosKernels_common_threads'
b'[ 90%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 90%] Built target KokkosKernels_graph_threads'
b'[ 90%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 90%] Built target KokkosKernels_blas_threads'
b'[ 91%] Linking CXX executable KokkosKernels_batched_dla_threads'
b'[ 91%] Built target KokkosKernels_batched_dla_threads'
b'[ 91%] Linking CXX executable KokkosKernels_sparse_threads'
b'[ 91%] Built target KokkosKernels_sparse_threads'
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.96/TestAll_2023-08-15_07.54.22/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.96/TestAll_2023-08-15_07.54.22/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: solo297: 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 # 78 (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/lucbv/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/lucbv/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/lucbv/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad^{commit} # timeout=10'
b'Checking out Revision bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad # timeout=10'
b'Commit message: "ODE: clang-format"'
b' > git rev-list --no-walk f2204a067c6126eae006302cd65ce9b573f91a86 # 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 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'Commit message: "Use std::aligned_alloc for allocations (#6341)"'
b' > git rev-list --no-walk 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -el /tmp/jenkins3514794979326068522.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b'   e13aedc0a..0c2a295fa  develop    -> upstream/develop'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  6e5046eb4927658075cbc196f33ae99bfed63da3 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=691 run_time=238'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

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

b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.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' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b''
b'Currently Loaded Modules:'
b'  1) gcc/10.2.0       11) numactl/2.0.12          21) parmetis/4.0.3'
b'  2) autoconf/2.69    12) hwloc/1.11.11           22) metis/5.1.0'
b'  3) automake/1.16.1  13) pmix/2.2.3              23) openblas/0.3.4'
b'  4) libtool/2.4.6    14) ucx/1.7.0               24) superlu/5.2.1'
b'  5) cmake/3.17.0     15) openmpi/4.0.2           25) superlu-dist/5.4.0'
b'  6) git/2.19.2       16) curl/7.71.0             26) boost/1.72.0'
b'  7) zlib/1.2.11      17) netcdf-c/4.6.3          27) fftw/3.3.8'
b'  8) bzip2/1.0.6      18) parallel-netcdf/1.11.1  28) singularity/3.5.3'
b'  9) xz/5.2.4         19) hdf5/1.10.5             29) devpack-gnu10/20201002'
b' 10) yaml-cpp/0.6.2   20) cgns/3.4.0'
b''
b' '
b''
b''
b'Currently Loaded Modules:'
b'  1) cmake/3.17.0'
b''
b' '
b''
b'salloc: Granted job allocation 4022'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  75e60c0d8bed6e05c426f830b30990bc713bcaea Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=2013 run_time=1032'
b'armpl-21.1.0-Serial-release build_time=1866 run_time=272'
b'salloc: Relinquishing job allocation 4022'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110'
b'Finished: SUCCESS'
b''

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

b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.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' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
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 4023'
b'Running on machine: inouye'
b"KokkosKernels Repository Status:  75e60c0d8bed6e05c426f830b30990bc713bcaea Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=2775 run_time=2147'
b'salloc: Relinquishing job allocation 4023'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020'
b'Finished: SUCCESS'
b''

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

b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad # timeout=10'
b'Commit message: "ODE: clang-format"'
b' > git rev-list --no-walk f2204a067c6126eae006302cd65ce9b573f91a86 # timeout=10'
b'First time build. Skipping changelog.'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.31.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/develop^{commit} # timeout=10'
b'Checking out Revision 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'Commit message: "Use std::aligned_alloc for allocations (#6341)"'
b' > git rev-list --no-walk 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins1504520981216786913.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1'
b' * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0'
b' * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1'
b' * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0'
b' * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1'
b' * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0'
b' * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0'
b' * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01'
b' * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00'
b' * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01'
b' * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02'
b' * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0'
b' * [new branch]          release-candidate-4.0.01    -> upstream/release-candidate-4.0.01'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new tag]             2.6.00                      -> 2.6.00'
b' * [new tag]             2.7.00                      -> 2.7.00'
b' * [new tag]             2.7.24                      -> 2.7.24'
b' * [new tag]             2.8.00                      -> 2.8.00'
b' * [new tag]             2.9.00                      -> 2.9.00'
b' * [new tag]             3.0.00                      -> 3.0.00'
b' * [new tag]             3.1.00                      -> 3.1.00'
b' * [new tag]             3.1.01                      -> 3.1.01'
b' * [new tag]             3.2.00                      -> 3.2.00'
b' * [new tag]             3.2.01                      -> 3.2.01'
b' * [new tag]             3.3.00                      -> 3.3.00'
b' * [new tag]             3.3.01                      -> 3.3.01'
b' * [new tag]             3.4.00                      -> 3.4.00'
b' * [new tag]             3.4.01                      -> 3.4.01'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.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' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'Running on machine: caraway'
b"KokkosKernels Repository Status:  bc66fd679a55b6e87e00e7a3fea07a415a50e318 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=949 run_time=413'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520 # 105 (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/lucbv/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/lucbv/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/lucbv/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad^{commit} # timeout=10'
b'Checking out Revision bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f bdbdd57f6cc54bcdbeae15fc41c2e3b1a6a11aad # timeout=10'
b'Commit message: "ODE: clang-format"'
b' > git rev-list --no-walk f2204a067c6126eae006302cd65ce9b573f91a86 # 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 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 (origin/develop)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'Commit message: "Use std::aligned_alloc for allocations (#6341)"'
b' > git rev-list --no-walk 8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520] $ /bin/bash -el /tmp/jenkins2967962223875135264.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b'   e13aedc0a..0c2a295fa  develop    -> upstream/develop'
b'Auto-merging ode/src/KokkosODE_Types.hpp'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/docs.yml     | 13 +++++++------'
b' ode/src/KokkosODE_Types.hpp    |  6 +++++-'
b' scripts/docker/Dockerfile.sycl |  2 +-'
b' 3 files changed, 13 insertions(+), 8 deletions(-)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'Running on machine: caraway'
b"KokkosKernels Repository Status:  6f3610ef3994210527c1f1c7d56407a98bbba315 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  8d8b24a1f165b56c1debe457ef8d6291bb1a8b01 Use std::aligned_alloc for allocations (#6341)'
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=980 run_time=410'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520'
b'Sending e-mails to: [email protected]'
b'Finished: SUCCESS'
b''

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Aug 15, 2023
@kokkos-devops-admin
Copy link

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

@lucbv lucbv added the AT: WIP label Sep 20, 2023
@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: 906
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 497
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 170
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 169
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 169
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 175
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 662
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 657
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 655
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 176
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: ODE_BDF1
  • SHA: eb4a5c0
  • Mode: TEST_REPO

Pull Request Author: lucbv

@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: 906
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 497
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 170
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 169
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 169
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 175
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 151
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 662
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 657
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 655
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520

  • Build Num: 176
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA eb4a5c0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA a0684e1
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 906 (click to expand)

b'[ 73%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/__/__/__/test_common/Test_Main.cpp.o'
b'[ 73%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_openmp.dir/__/__/__/test_common/Test_Main.cpp.o'
b'[ 74%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_cuda.dir/__/__/__/test_common/Test_Main.cpp.o'
b'[ 74%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 74%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 75%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 75%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o'
b'[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/__/__/__/test_common/Test_Main.cpp.o'
b'[ 75%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_cuda.dir/backends/Test_Cuda_Batched_Sparse.cpp.o'
b'[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_openmp.dir/backends/Test_OpenMP_Batched_GEMM.cpp.o'
b'[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_openmp.dir/backends/Test_OpenMP_Batched_Dense.cpp.o'
b'[ 76%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_gemm_cuda.dir/backends/Test_Cuda_Batched_GEMM.cpp.o'
b'[ 76%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_cuda.dir/backends/Test_Cuda_Batched_Dense.cpp.o'
b'[ 76%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_cuda.dir/backends/Test_Cuda_Common.cpp.o'
b'[ 76%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_openmp.dir/backends/Test_OpenMP_Graph.cpp.o'
b'[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_openmp.dir/backends/Test_OpenMP_Blas.cpp.o'
b'[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_cuda.dir/backends/Test_Cuda_Blas.cpp.o'
b'[ 76%] Building CXX object common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o'
b'[ 76%] Building CXX object batched/sparse/unit_test/CMakeFiles/KokkosKernels_batched_sla_openmp.dir/backends/Test_OpenMP_Batched_Sparse.cpp.o'
b'[ 76%] Building CXX object graph/unit_test/CMakeFiles/KokkosKernels_graph_cuda.dir/backends/Test_Cuda_Graph.cpp.o'
b'[ 77%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 77%] Built target KokkosKernels_batched_sla_openmp'
b'[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o'
b'[ 77%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 77%] Built target KokkosKernels_common_openmp'
b'[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 77%] Linking CXX executable KokkosKernels_batched_sla_cuda'
b'[ 77%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 77%] Built target KokkosKernels_batched_sla_cuda'
b'[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_cuda.dir/backends/Test_Cuda_BlockSparse.cpp.o'
b'[ 77%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o'
b'[ 78%] Linking CXX executable KokkosKernels_common_cuda'
b'[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_openmp.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 78%] Built target KokkosKernels_common_cuda'
b'[ 79%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_blocksparse_openmp.dir/backends/Test_OpenMP_BlockSparse.cpp.o'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/__/__/test_common/Test_Main.cpp.o'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/backends/Test_Cuda_ODE.cpp.o'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(586): error: identifier "TestExecSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(586): error: expected a declaration'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(589): error: identifier "TestExecSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(589): error: expected a declaration'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(592): error: identifier "TestExecSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(592): error: expected a declaration'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(595): error: identifier "TestExecSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(595): error: expected a declaration'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(598): error: identifier "TestExecSpace" is undefined'
b''
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(598): error: expected a declaration'
b''
b'[ 81%] Linking CXX executable KokkosKernels_blas_openmp'
b'10 errors detected in the compilation of "/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/ode/unit_test/backends/Test_Cuda_ODE.cpp".'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/backends/Test_Cuda_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1964: ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 81%] Built target KokkosKernels_blas_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 81%] Built target KokkosKernels_graph_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 81%] Built target KokkosKernels_batched_dla_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_cuda'
b'[ 81%] Built target KokkosKernels_blas_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_cuda'
b'[ 81%] Built target KokkosKernels_blocksparse_openmp'
b'[ 81%] Built target KokkosKernels_blocksparse_cuda'
b'[ 82%] Linking CXX executable KokkosKernels_batched_dla_cuda'
b'[ 82%] Built target KokkosKernels_batched_dla_cuda'
b'[ 82%] Linking CXX executable KokkosKernels_graph_cuda'
b'[ 82%] Built target KokkosKernels_graph_cuda'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 82%] Built target KokkosKernels_sparse_openmp'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_cuda'
b'[ 82%] Built target KokkosKernels_sparse_cuda'
b'[ 82%] Linking CXX executable KokkosKernels_batched_gemm_cuda'
b'[ 82%] Built target KokkosKernels_batched_gemm_cuda'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'cat: /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.906/TestAll_2023-09-20_10.59.27/cuda/11.2.2/gcc-8.3.1-Cuda_OpenMP-release/reload_modules.sh: No such file or directory'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b'[ 79%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'5 errors generated when compiling for sm_70.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/backends/Test_Cuda_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1966: ode/unit_test/CMakeFiles/KokkosKernels_ode_cuda.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'In file included from /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE.hpp:25:'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_Logistic();'
b'                            ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:34: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b"/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b'5 errors generated when compiling for sm_70.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1993: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'[ 79%] Linking CXX executable KokkosKernels_graph_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 79%] Built target KokkosKernels_graph_serial'
b'[ 80%] Linking CXX executable KokkosKernels_blas_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 80%] Built target KokkosKernels_blas_serial'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 80%] Built target KokkosKernels_batched_dla_serial'
b'[ 80%] Linking CXX executable KokkosKernels_blas_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 80%] Built target KokkosKernels_blas_cuda'
b'[ 80%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 80%] Built target KokkosKernels_blocksparse_serial'
b'[ 80%] Linking CXX executable KokkosKernels_blocksparse_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 80%] Built target KokkosKernels_blocksparse_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 81%] Built target KokkosKernels_batched_dla_cuda'
b'[ 81%] Linking CXX executable KokkosKernels_graph_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 81%] Built target KokkosKernels_graph_cuda'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_serial'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 82%] Built target KokkosKernels_sparse_serial'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_cuda'
b'/home/projects/ppc64le/binutils/2.30.0/bin/ld: warning: libgfortran.so.5, needed by /home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib/liblapack.so, may conflict with libgfortran.so.4'
b'[ 82%] Built target KokkosKernels_sparse_cuda'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'clang-13.0.0-Cuda-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        source /projects/ppc64le-pwr9-rhel8/legacy-env.sh'
b'        module purge'
b'        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda --arch=Power9,Volta70 --compiler=/home/projects/ppc64le-pwr9-nvidia/spack/opt/spack/linux-rhel7-power9le/gcc-7.4.0/llvm-13.0.0-t6hzufjroylzhs7hg3dvmhrrcsvhygzv/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/cuda/10.1.243  --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=cusparse,cublas,blas --user-blas-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-lapack-path=/home/projects/ppc64le-pwr9/spack/opt/spack/linux-rhel7-power9le/gcc-9.3.0/openblas-0.3.20-wt32he2mqdzpqfzdbyhiwaqibx6j6s3l/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10.497/TestAll_2023-09-20_10.59.27/clang/13.0.0/Cuda-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: template argument 1 is invalid'
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                                                    ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function virtual void openmp_BDF_Nordsieck_Test::TestBody():'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: TestExecSpace was not declared in this scope'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                          ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: no matching function for call to test_Nordsieck<, double>()'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note: candidate: template void Test::test_Nordsieck()'
b'  541 | void test_Nordsieck() {'
b'      |      ^~~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note:   template argument deduction/substitution failed:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: template argument 1 is invalid'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1730: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 71%] Linking CXX executable KokkosBatched_Test_SPMV'
b'[ 71%] Built target KokkosBatched_Test_SPMV'
b'[ 71%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 71%] Built target KokkosBatched_Test_CG'
b'[ 71%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 71%] Built target KokkosKernels_batched_sla_openmp'
b'[ 72%] Linking CXX executable KokkosBatched_Test_GMRES'
b'[ 72%] Built target KokkosBatched_Test_GMRES'
b'[ 72%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 72%] Built target KokkosKernels_common_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 72%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_blocksparse_openmp'
b'[ 72%] Built target KokkosKernels_blocksparse_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 72%] Built target KokkosKernels_graph_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 72%] Built target KokkosKernels_blas_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 72%] Built target KokkosKernels_batched_dla_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 72%] Built target KokkosKernels_sparse_openmp'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.170/TestAll_2023-09-20_11.21.06/gnu/10.2.1/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'gnu-10.2.1-Threads_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/KokkosKernels_PullRequest_GNU1021.170/TestAll_2023-09-20_11.21.06/gnu/10.2.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo279: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: template argument 1 is invalid'
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                                                    ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function virtual void openmp_BDF_Nordsieck_Test::TestBody():'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: TestExecSpace was not declared in this scope'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                          ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: no matching function for call to test_Nordsieck<, double>()'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note: candidate: template void Test::test_Nordsieck()'
b'  541 | void test_Nordsieck() {'
b'      |      ^~~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note:   template argument deduction/substitution failed:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: template argument 1 is invalid'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1730: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 71%] Linking CXX executable KokkosBatched_Test_SPMV'
b'[ 71%] Built target KokkosBatched_Test_SPMV'
b'[ 71%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 71%] Built target KokkosBatched_Test_CG'
b'[ 71%] Linking CXX executable KokkosKernels_batched_sla_openmp'
b'[ 71%] Built target KokkosKernels_batched_sla_openmp'
b'[ 72%] Linking CXX executable KokkosBatched_Test_GMRES'
b'[ 72%] Built target KokkosBatched_Test_GMRES'
b'[ 72%] Linking CXX executable KokkosKernels_common_openmp'
b'[ 72%] Built target KokkosKernels_common_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_batched_gemm_openmp'
b'[ 72%] Built target KokkosKernels_batched_gemm_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_blocksparse_openmp'
b'[ 72%] Built target KokkosKernels_blocksparse_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 72%] Built target KokkosKernels_graph_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 72%] Built target KokkosKernels_blas_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 72%] Built target KokkosKernels_batched_dla_openmp'
b'[ 72%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 72%] Built target KokkosKernels_sparse_openmp'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.169/TestAll_2023-09-20_11.03.26/gnu/10.2.1/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'gnu-10.2.1-Threads_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls=    --with-options= --with-cuda-options=  --with-spaces=hostspace --no-examples   --no-default-eti'
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight.169/TestAll_2023-09-20_11.03.26/gnu/10.2.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo279: task 0: Exited with exit code 2'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'  589 |   ::Test::test_BDF_LotkaVolterra();'
b'      |                                                         ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function virtual void openmp_BDF_StiffChemestry_serial_Test::TestBody():'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: TestExecSpace was not declared in this scope'
b'  592 |   ::Test::test_BDF_StiffChemestry();'
b'      |                                   ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:58: error: no matching function for call to test_BDF_StiffChemestry<, double>()'
b'  592 |   ::Test::test_BDF_StiffChemestry();'
b'      |                                                          ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:380:6: note: candidate: template void Test::test_BDF_StiffChemestry()'
b'  380 | void test_BDF_StiffChemestry() {'
b'      |      ^~~~~~~~~~~~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:380:6: note:   template argument deduction/substitution failed:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:58: error: template argument 1 is invalid'
b'  592 |   ::Test::test_BDF_StiffChemestry();'
b'      |                                                          ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function virtual void openmp_BDF_parallel_serial_Test::TestBody():'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: TestExecSpace was not declared in this scope'
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                             ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: no matching function for call to test_BDF_parallel<, double>()'
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                                                    ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:478:6: note: candidate: template void Test::test_BDF_parallel()'
b'  478 | void test_BDF_parallel() {'
b'      |      ^~~~~~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:478:6: note:   template argument deduction/substitution failed:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: template argument 1 is invalid'
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                                                    ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function virtual void openmp_BDF_Nordsieck_Test::TestBody():'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: TestExecSpace was not declared in this scope'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                          ^~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: no matching function for call to test_Nordsieck<, double>()'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note: candidate: template void Test::test_Nordsieck()'
b'  541 | void test_Nordsieck() {'
b'      |      ^~~~~~~~~~~~~~'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note:   template argument deduction/substitution failed:'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: template argument 1 is invalid'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/backends/Test_OpenMP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1991: ode/unit_test/CMakeFiles/KokkosKernels_ode_openmp.dir/all] Error 2'
b'[ 80%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 80%] Built target KokkosKernels_graph_serial'
b'[ 80%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 80%] Built target KokkosKernels_graph_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 81%] Built target KokkosKernels_blas_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 81%] Built target KokkosKernels_blas_openmp'
b'[ 81%] Built target KokkosKernels_blocksparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_openmp'
b'[ 81%] Built target KokkosKernels_blocksparse_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 81%] Built target KokkosKernels_batched_dla_serial'
b'[ 82%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 82%] Built target KokkosKernels_batched_dla_openmp'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 82%] Built target KokkosKernels_sparse_openmp'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 82%] Built target KokkosKernels_sparse_serial'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 gnu/10.2.1 openblas/0.3.21'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=BDW --compiler=/opt/rh/devtoolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.169/TestAll_2023-09-20_11.39.08/gnu/10.2.1/OpenMP_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo279: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(595): error: expected a declaration'
b'    ::Test::test_BDF_parallel();'
b'    ^'
b''
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE.hpp(25),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp(20):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(598): error: identifier "TestExecSpace" is undefined'
b'    ::Test::test_Nordsieck();'
b'                           ^'
b''
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE.hpp(25),'
b'                 from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp(20):'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp(598): error: expected a declaration'
b'    ::Test::test_Nordsieck();'
b'    ^'
b''
b'[ 85%] Linking CXX executable KokkosKernels_wiki_crsmatrix'
b'compilation aborted for /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp (code 2)'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o] Error 2'
b'make[1]: *** [CMakeFiles/Makefile2:1404: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 85%] Built target KokkosKernels_wiki_crsmatrix'
b'[ 85%] Linking CXX executable KokkosKernels_wiki_spadd'
b'[ 85%] Built target KokkosKernels_wiki_spadd'
b'[ 86%] Linking CXX executable KokkosKernels_wiki_spmv'
b'[ 86%] Built target KokkosKernels_wiki_spmv'
b'[ 86%] Linking CXX executable KokkosKernels_batched_sla_threads'
b'[ 86%] Built target KokkosKernels_batched_sla_threads'
b'[ 86%] Linking CXX executable KokkosKernels_batched_gemm_threads'
b'[ 86%] Built target KokkosKernels_batched_gemm_threads'
b'[ 87%] Linking CXX executable KokkosKernels_common_threads'
b'[ 87%] Built target KokkosKernels_common_threads'
b'[ 88%] Linking CXX executable KokkosKernels_blocksparse_threads'
b'[ 88%] Built target KokkosKernels_blocksparse_threads'
b'[ 89%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 89%] Built target KokkosKernels_graph_threads'
b'[ 89%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 89%] Built target KokkosKernels_blas_threads'
b'[ 90%] Linking CXX executable KokkosKernels_batched_dla_threads'
b'[ 90%] Built target KokkosKernels_batched_dla_threads'
b'[ 90%] Linking CXX executable KokkosKernels_sparse_threads'
b'[ 90%] Built target KokkosKernels_sparse_threads'
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.175/TestAll_2023-09-20_11.50.07/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.175/TestAll_2023-09-20_11.50.07/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: solo279: 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 # 151 (click to expand)

b'                                                   ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: expected unqualified-id'
b'  ::Test::test_Nordsieck();'
b'                                                ^'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/backends/Test_Threads_ODE.cpp:20:'
b'In file included from /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE.hpp:25:'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_Logistic();'
b'                            ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:52: error: expected unqualified-id'
b'  ::Test::test_BDF_Logistic();'
b'                                                   ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:34: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:57: error: expected unqualified-id'
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                                        ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:58: error: expected unqualified-id'
b'  ::Test::test_BDF_StiffChemestry();'
b'                                                         ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: expected unqualified-id'
b'  ::Test::test_BDF_parallel();'
b'                                                   ^'
b"/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: expected unqualified-id'
b'  ::Test::test_Nordsieck();'
b'                                                ^'
b'10 errors generated.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1964: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'10 errors generated.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/build.make:90: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/backends/Test_Threads_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1991: ode/unit_test/CMakeFiles/KokkosKernels_ode_threads.dir/all] Error 2'
b'[ 80%] Linking CXX executable KokkosKernels_graph_threads'
b'[ 80%] Built target KokkosKernels_graph_threads'
b'[ 81%] Linking CXX executable KokkosKernels_blas_threads'
b'[ 81%] Built target KokkosKernels_blas_threads'
b'[ 81%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 81%] Built target KokkosKernels_graph_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 81%] Built target KokkosKernels_blas_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_threads'
b'[ 81%] Built target KokkosKernels_blocksparse_serial'
b'[ 81%] Built target KokkosKernels_blocksparse_threads'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_threads'
b'[ 81%] Built target KokkosKernels_batched_dla_threads'
b'[ 82%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 82%] Built target KokkosKernels_batched_dla_serial'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_threads'
b'[ 82%] Built target KokkosKernels_sparse_threads'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 82%] Built target KokkosKernels_sparse_serial'
b'make: *** [Makefile:146: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.22.3 llvm/10.0.1 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/projects/netpub/sems/llvm/10.0.1/gcc/10.2.1/b4rc6cw/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.151/TestAll_2023-09-20_12.37.10/llvm/10.0.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo279: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'      |                                                    ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function 'virtual void serial_BDF_Nordsieck_Test::TestBody()':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: 'TestExecSpace' was not declared in this scope"
b'  598 |   ::Test::test_Nordsieck();'
b'      |                          ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: no matching function for call to 'test_Nordsieck<, double>()'"
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note: candidate: 'template void Test::test_Nordsieck()'"
b'  541 | void test_Nordsieck() {'
b'      |      ^~~~~~~~~~~~~~'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note:   template argument deduction/substitution failed:'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: template argument 1 is invalid'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:93: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:1869: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'[ 72%] Linking CXX executable KokkosBatched_Test_SPMV'
b'[ 72%] Built target KokkosBatched_Test_SPMV'
b'[ 72%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 72%] Built target KokkosBatched_Test_CG'
b'[ 72%] Linking CXX executable KokkosKernels_batched_sla_serial'
b'[ 72%] Built target KokkosKernels_batched_sla_serial'
b'[ 73%] Linking CXX executable KokkosBatched_Test_GMRES'
b'[ 73%] Built target KokkosBatched_Test_GMRES'
b'[ 73%] Linking CXX executable KokkosKernels_common_serial'
b'[ 73%] Built target KokkosKernels_common_serial'
b'[ 73%] Linking CXX executable KokkosKernels_batched_gemm_serial'
b'[ 73%] Built target KokkosKernels_batched_gemm_serial'
b'[ 73%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'[ 73%] Built target KokkosKernels_blocksparse_serial'
b'[ 73%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 73%] Built target KokkosKernels_graph_serial'
b'[ 73%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 73%] Built target KokkosKernels_blas_serial'
b'[ 73%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 73%] Built target KokkosKernels_batched_dla_serial'
b'[ 73%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 73%] Built target KokkosKernels_sparse_serial'
b'make: *** [Makefile:158: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'armpl-21.1.0-OpenMP-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.662/TestAll_2023-09-20_11.23.08/armpl/21.1.0/OpenMP-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'armpl-21.1.0-Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=armpl,armpl    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.662/TestAll_2023-09-20_11.23.08/armpl/21.1.0/Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'salloc: Relinquishing job allocation 4203'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function 'virtual void serial_BDF_StiffChemestry_serial_Test::TestBody()':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: 'TestExecSpace' was not declared in this scope"
b'  592 |   ::Test::test_BDF_StiffChemestry();'
b'      |                                   ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:58: error: no matching function for call to 'test_BDF_StiffChemestry<, double>()'"
b'  592 |   ::Test::test_BDF_StiffChemestry();'
b'      |                                                          ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:380:6: note: candidate: 'template void Test::test_BDF_StiffChemestry()'"
b'  380 | void test_BDF_StiffChemestry() {'
b'      |      ^~~~~~~~~~~~~~~~~~~~~~~'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:380:6: note:   template argument deduction/substitution failed:'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:58: error: template argument 1 is invalid'
b'  592 |   ::Test::test_BDF_StiffChemestry();'
b'      |                                                          ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function 'virtual void serial_BDF_parallel_serial_Test::TestBody()':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: 'TestExecSpace' was not declared in this scope"
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                             ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: no matching function for call to 'test_BDF_parallel<, double>()'"
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                                                    ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:478:6: note: candidate: 'template void Test::test_BDF_parallel()'"
b'  478 | void test_BDF_parallel() {'
b'      |      ^~~~~~~~~~~~~~~~~'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:478:6: note:   template argument deduction/substitution failed:'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:52: error: template argument 1 is invalid'
b'  595 |   ::Test::test_BDF_parallel();'
b'      |                                                    ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp: In member function 'virtual void serial_BDF_Nordsieck_Test::TestBody()':"
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: 'TestExecSpace' was not declared in this scope"
b'  598 |   ::Test::test_Nordsieck();'
b'      |                          ^~~~~~~~~~~~~'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: no matching function for call to 'test_Nordsieck<, double>()'"
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b"/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note: candidate: 'template void Test::test_Nordsieck()'"
b'  541 | void test_Nordsieck() {'
b'      |      ^~~~~~~~~~~~~~'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:541:6: note:   template argument deduction/substitution failed:'
b'/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:49: error: template argument 1 is invalid'
b'  598 |   ::Test::test_Nordsieck();'
b'      |                                                 ^'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:93: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2139: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'[ 80%] Linking CXX executable KokkosKernels_graph_serial'
b'[ 80%] Built target KokkosKernels_graph_serial'
b'[ 80%] Linking CXX executable KokkosKernels_graph_openmp'
b'[ 80%] Built target KokkosKernels_graph_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_serial'
b'[ 81%] Built target KokkosKernels_blas_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blas_openmp'
b'[ 81%] Built target KokkosKernels_blocksparse_openmp'
b'[ 81%] Built target KokkosKernels_blas_openmp'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'[ 81%] Built target KokkosKernels_blocksparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 81%] Built target KokkosKernels_batched_dla_serial'
b'[ 82%] Linking CXX executable KokkosKernels_batched_dla_openmp'
b'[ 82%] Built target KokkosKernels_batched_dla_openmp'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_openmp'
b'[ 82%] Built target KokkosKernels_sparse_openmp'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 82%] Built target KokkosKernels_sparse_serial'
b'make: *** [Makefile:158: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gcc-10.2.0-OpenMP_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module purge'
b'        module load cmake/3.17.0 gcc/10.2.0'
b'        export OMP_NUM_THREADS=47'
b'        export OMP_PROC_BIND=close'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=A64FX --compiler=/opt/spatse/gcc/2020-09-17/spack/opt/spack/linux-rhel8-a64fx/gcc-8.2.1/gcc-10.2.0-f73mwr3ryd77o37a5jyofxet6nk7xowg/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.657/TestAll_2023-09-20_11.23.08/gcc/10.2.0/OpenMP_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'salloc: Relinquishing job allocation 4202'
b'salloc: Job allocation 4202 has been revoked.'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/__/__/test_common/Test_Main.cpp.o'
b'Scanning dependencies of target KokkosBatched_Test_CG'
b'[ 81%] Building CXX object perf_test/batched/sparse/CG/CMakeFiles/KokkosBatched_Test_CG.dir/KokkosBatched_Test_CG.cpp.o'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'[ 81%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/backends/Test_HIP_ODE.cpp.o'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE.hpp:25:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_Logistic();'
b'                            ^'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/backends/Test_HIP_ODE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE.hpp:25:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_Logistic();'
b'                            ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:34: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:34: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b'5 errors generated when compiling for gfx908.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:95: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2113: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'5 errors generated when compiling for gfx908.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/build.make:95: ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/backends/Test_HIP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2141: ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/all] Error 2'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 81%] Built target KokkosKernels_batched_dla_serial'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_hip'
b'[ 81%] Built target KokkosKernels_blocksparse_hip'
b'[ 81%] Linking CXX executable KokkosKernels_blas_hip'
b'[ 81%] Built target KokkosKernels_blas_hip'
b'[ 81%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'[ 81%] Built target KokkosKernels_blocksparse_serial'
b'[ 82%] Linking CXX executable KokkosKernels_batched_dla_hip'
b'[ 82%] Built target KokkosKernels_batched_dla_hip'
b'[ 82%] Linking CXX executable KokkosKernels_graph_hip'
b'[ 82%] Built target KokkosKernels_graph_hip'
b'[ 82%] Linking CXX executable KokkosKernels_batched_sla_hip'
b'[ 82%] Built target KokkosKernels_batched_sla_hip'
b'[ 82%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 82%] Built target KokkosBatched_Test_CG'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 82%] Built target KokkosKernels_sparse_serial'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_hip'
b'[ 82%] Built target KokkosKernels_sparse_hip'
b'make: *** [Makefile:160: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/KokkosKernels_PullRequest_VEGA908_ROCM520.655/TestAll_2023-09-20_11.23.25/rocm/5.2.0/Hip_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: caraway05: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

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

b'Scanning dependencies of target KokkosBatched_Test_CG'
b'[ 80%] Building CXX object perf_test/batched/sparse/CG/CMakeFiles/KokkosBatched_Test_CG.dir/KokkosBatched_Test_CG.cpp.o'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o'
b'[ 80%] Building CXX object ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/backends/Test_HIP_ODE.cpp.o'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/backends/Test_Serial_ODE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE.hpp:25:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_Logistic();'
b'                            ^'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/backends/Test_HIP_ODE.cpp:20:'
b'In file included from /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE.hpp:25:'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:586:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_Logistic();'
b'                            ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:34: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:589:34: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_LotkaVolterra();'
b'                                 ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:592:35: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_StiffChemestry();'
b'                                  ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:595:29: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_BDF_parallel();'
b'                            ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b"/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/kokkos-kernels/ode/unit_test/Test_ODE_BDF.hpp:598:26: error: use of undeclared identifier 'TestExecSpace'"
b'  ::Test::test_Nordsieck();'
b'                         ^'
b'5 errors generated when compiling for gfx908.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/build.make:95: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/backends/Test_Serial_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2113: ode/unit_test/CMakeFiles/KokkosKernels_ode_serial.dir/all] Error 2'
b'make[1]: *** Waiting for unfinished jobs....'
b'5 errors generated when compiling for gfx908.'
b'make[2]: *** [ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/build.make:95: ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/backends/Test_HIP_ODE.cpp.o] Error 1'
b'make[1]: *** [CMakeFiles/Makefile2:2141: ode/unit_test/CMakeFiles/KokkosKernels_ode_hip.dir/all] Error 2'
b'[ 80%] Linking CXX executable KokkosKernels_batched_dla_serial'
b'[ 80%] Built target KokkosKernels_batched_dla_serial'
b'[ 80%] Linking CXX executable KokkosKernels_blocksparse_hip'
b'[ 80%] Built target KokkosKernels_blocksparse_hip'
b'[ 80%] Linking CXX executable KokkosKernels_blas_hip'
b'[ 80%] Built target KokkosKernels_blas_hip'
b'[ 80%] Linking CXX executable KokkosKernels_blocksparse_serial'
b'[ 80%] Built target KokkosKernels_blocksparse_serial'
b'[ 81%] Linking CXX executable KokkosKernels_batched_dla_hip'
b'[ 81%] Built target KokkosKernels_batched_dla_hip'
b'[ 81%] Linking CXX executable KokkosKernels_graph_hip'
b'[ 81%] Built target KokkosKernels_graph_hip'
b'[ 81%] Linking CXX executable KokkosKernels_batched_sla_hip'
b'[ 81%] Built target KokkosKernels_batched_sla_hip'
b'[ 81%] Linking CXX executable KokkosBatched_Test_CG'
b'[ 81%] Built target KokkosBatched_Test_CG'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_serial'
b'[ 82%] Built target KokkosKernels_sparse_serial'
b'[ 82%] Linking CXX executable KokkosKernels_sparse_hip'
b'[ 82%] Built target KokkosKernels_sparse_hip'
b'make: *** [Makefile:160: all] Error 2'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.2.0-Hip_Serial-release (build failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake/3.19.3 rocm/5.2.0 openblas/0.3.20/rocm/5.2.0'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908 --compiler=/home/projects/ROCm/rocm-5.2.0/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas,rocblas,rocsparse    --with-options= --with-cuda-options=   --no-examples  '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520/KokkosKernels_PullRequest_VEGA908_Tpls_ROCM520.176/TestAll_2023-09-20_11.23.31/rocm/5.2.0/Hip_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: caraway06: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Sending e-mails to: [email protected]'
b'Finished: FAILURE'
b''

@lucbv lucbv force-pushed the ODE_BDF1 branch 2 times, most recently from f73c0aa to 78916fc Compare September 27, 2023 17:41
The benchmark helps us monitor the performance of the BDF
implementaiton across multiple platforms as well as impact of
changes over time.
Small changes to compare more closely with reference implementation.
Some of these might be reverted eventually but that's fine for now.
Changing the Newton solver convergence criteria as well as changing
a few default input parameters leads to a more stable algorithms
which can now integrate the stiff Henderson autocatalytic example
well in 66 time steps instead of 200k for fixed order integration...
The initial step routine was overwriting the initial right hand side
which led to obvious issues further down the road... now things should
work fine. Need to figure out if I can re-initialize the variables in
the perf test while excluding that time from each iteration.
Basically adding new untimed setup within the main loop of the
benchmark to reset the intial conditions, buffers and vectors
ahead of each iteration.
@lucbv lucbv removed the AT: WIP label Mar 7, 2024
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 1221
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 808
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 479
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 466
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 467
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 471
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 443
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 953
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 948
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 939
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 459
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (lucbv/kokkos-kernels)
  • Branch: ODE_BDF1
  • SHA: 228c55c
  • Mode: TEST_REPO

Pull Request Author: lucbv

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 808
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 479
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 466
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 467
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 471
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 443
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 953
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 948
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM560

  • Build Num: 939
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM560

  • Build Num: 459
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/lucbv/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 228c55c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8f2945d
PR_LABELS bug;feature request;Cleanup
PULLREQUESTNUM 1930
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

4 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

@brian-kelley brian-kelley left a comment

Choose a reason for hiding this comment

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

LGTM, just have a few superficial comments - mostly about cleaning up commented code and debug printouts

Comment on lines +142 to +144

// std::cout << "f = psi + d - c * f = " << psi(0) << " + " << d(0) << " - "
// << c << " * " << f(0) << std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
// std::cout << "f = psi + d - c * f = " << psi(0) << " + " << d(0) << " - "
// << c << " * " << f(0) << std::endl;

@@ -63,11 +63,18 @@ struct Gesv {

template <typename ArgAlgo>
struct SerialGesv {
template <typename MatrixType, typename VectorType>
template <typename MatrixType, typename XVectorType, typename YVectorType>
Copy link
Contributor

Choose a reason for hiding this comment

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

Ideally the TeamGesv and TeamVectorGesv versions would have the same interface, but that can happen later

Comment on lines +320 to +323
// const int numRows = temp.extent_int(0); const int numCols =
// temp.extent_int(1); std::cout << "numRows: " << numRows << ", numCols: " <<
// numCols << std::endl; std::cout << "Extract subview from temp" <<
// std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
// const int numRows = temp.extent_int(0); const int numCols =
// temp.extent_int(1); std::cout << "numRows: " << numRows << ", numCols: " <<
// numCols << std::endl; std::cout << "Extract subview from temp" <<
// std::endl;

constexpr int max_order = 5;

// For NDF coefficients see Sahmpine and Reichelt, The Matlab ODE suite, SIAM
// SISCm 18, 1, p1-22, January 1997 Kokkos::Array<double, 6> kappa{{0.,
Copy link
Contributor

Choose a reason for hiding this comment

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

clang-format off here?

// This needs to go away and be pulled out of temp instead...
auto rhs = Kokkos::subview(temp, Kokkos::ALL(), 0);
auto update = Kokkos::subview(temp, Kokkos::ALL(), 1);
// vec_type rhs("rhs", ode.neqs), update("update", ode.neqs);
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
// vec_type rhs("rhs", ode.neqs), update("update", ode.neqs);

for (int eqIdx = 0; eqIdx < ode.neqs; ++eqIdx) {
y0(eqIdx) = y_new(eqIdx);
}
// printf("t=%f, dt=%f, y={%f, %f, %f}\n", t, dt, y0(0), y0(1), y0(2));
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
// printf("t=%f, dt=%f, y={%f, %f, %f}\n", t, dt, y0(0), y0(1), y0(2));

/// \param y0 [in/out]: vector of initial conditions, set to the solution
/// at the end of the integration
/// \param y_new [out]: vector of solution at t_end
/// \param temp [in]: vectors for temporary storage
Copy link
Contributor

Choose a reason for hiding this comment

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

Will the user know what size temp and temp2 should be?

compute_coeffs(order, 1.0, U);

{
std::cout << "R: " << std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this meant to be permanent? It seems like the kind of thing that should be printed only if a test fails

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@lucbv
Copy link
Contributor Author

lucbv commented Mar 12, 2024

Merging this as the CI is down which makes it hard to make changes at this point.
I will start a new PR with the changes suggested by @brian-kelley and that can get tested/merged when CI on caraway and solo is available...

@lucbv lucbv merged commit 519ef7b into kokkos:develop Mar 12, 2024
10 checks passed
@lucbv lucbv deleted the ODE_BDF1 branch March 12, 2024 20:12
brian-kelley pushed a commit to brian-kelley/kokkos-kernels that referenced this pull request Mar 14, 2024
* ODE: adding BDF algorithms

Implementing BDF formula for stiff ODEs.
Orders 1 to 5 are available and tested.
The integrators can be called on GPU to
solve multiple systems in parallel.

* ODE: fixing storage handling for start-up RK stack

* ODE: clang-format

* ODE: first adaptive version of BDF

The current implementation only allows for adaptivity in time,
at this point the BDF Step actually converges as expected with
first order integration!

* ODE: fixing issues with adaptive BDF

The unit-test BDF_adaptive now shows the integration
of the logistic equation using adaptive time steps and
increasing integration order from 1 to 5.

* ODE: running BDF on StiffChemistry problem

The problem runs fine and is solved but there are oscillations
while the behavior of the solution is smooth. More investigation
is needed...

* BDF: fixing types and template parameters in batched calls

Bascially we need template parameters to be more versatile
and cannot assume that all rank1 views will have the exact
same underlying type, for instance layouts can be different.

* More fixes for GPUs only in tests this time.

* ODE: BDF adaptive, fix small bug

After adding rhs and update vectors to temp the subviews taken for
other variables need to be offset appropriately...

* Revert "More fixes for GPUs only in tests this time."

This reverts commit 2f70432.

* Revert "Revert "More fixes for GPUs only in tests this time.""

This reverts commit 836012b.

* ODE: BDF small change to temporarily avoid compile time issue

True fix involving a KOKKOS_VERSION check is upcoming after more
tests on GPU side...

* ODE: BDF fix for some printf statements that will go away soon...

* ODE: adding benchmark for BDF

The benchmark helps us monitor the performance of the BDF
implementaiton across multiple platforms as well as impact of
changes over time.

* ODE: improve benchmark interface...

* ODE: BDF changes to use RMS norm and change some default values

Small changes to compare more closely with reference implementation.
Some of these might be reverted eventually but that's fine for now.

* ODE: BDF convergence more stable and results look pretty good now!

Changing the Newton solver convergence criteria as well as changing
a few default input parameters leads to a more stable algorithms
which can now integrate the stiff Henderson autocatalytic example
well in 66 time steps instead of 200k for fixed order integration...

* ODE: BDF fix bug in initial time step calculation

The initial step routine was overwriting the initial right hand side
which led to obvious issues further down the road... now things should
work fine. Need to figure out if I can re-initialize the variables in
the perf test while excluding that time from each iteration.

* ODE: BDF removing bad print statement...

std::cout in device code

* ODE - BDF: improving perf test

Basically adding new untimed setup within the main loop of the
benchmark to reset the intial conditions, buffers and vectors
ahead of each iteration.

* Modifying unit-test to catch proper return type

* Applying clang-format
lucbv added a commit that referenced this pull request Apr 8, 2024
* HIP: since Kokkos has moved it out of experimental we should clean up

Just reflecting the move of HIP and HIPSpace out of experimental
so that we do not get deprecation warning and even failures down
the road. This was really done in Kokkos Core 4.0.0 so it is time
to catch up...

* Applying clang-format

* Sparse: fix cusparse spgemm hang properly

The issue is fixed by disabling the TPL in spec_avail
when a problematic version of CUDA/cuSPARSE is being used.

* Sparse: fix logic for bad cursparse spgemm version.

Just inverted the logic statement to enable the TPL when it is
known to work correctly.

* Improvements on the unification attempt logic for axpby(), including new tests

* Addressing feedbacks from Luc, plus some small changes here and there:

In KokkosBlas1_axpby_unification_attempt.hpp:
- Removed unnecessary variables, routines, and checks
- Imposed terminology consistency: variable names begin with lower case letters, type names begin with upper case letters
- Using static_assert as much as possible
- Using 'public' and 'private' keywords accordingly
- Improved some explanations and error messages

In KokkosBlas1_axpby_spec.hpp:
- Replace 'a' and 'b' by 'scalar_x' and 'scalar_y' where appropriate, to keep consistency with the terminology used in the 'impl' and 'mv_impl' files of the axpby operation.
- Not using the 'KOKKOSBLAS_OPTIMIZATION_LEVEL_AXPBY' define anymore. Code is now consistent with the 'old' value 3 for such define.

In KokkosBlas1_axpby_impl.hpp and KokkosBlas1_axpby_mv_impl.hpp:
- Not using the 'KOKKOSBLAS_OPTIMIZATION_LEVEL_AXPBY' define anymore. Code is now consistent with the 'old' value 3 for such define.
- Using 'if constexpr' whenever possible
- Checking that -1 <= scalar_x <= 2 and that -1 <= scalar_y <= 2
- Replaced '} else {' by '} else if (scalar_x == 2)' or by '} else if (scalar_y == 2)', whenever possible
- Improved error messages
- Improved explanation headers a bit

In KokkosBlas1_axpby.hpp:
- Renamed some variables to more meaningful names

* Formatting

* Using 'ifdef HAVE_KOKKOSKERNELS_DEBUG', per Luc's suggestion

* Addressing feedbacks from Luc

* Correcting compilation errors in my Mac

* Backup

* SYR2: fix unit-test type issue

On KokkosEco_Trilinos_Weaver_CUDA112_opt-uvm the SYR2 test
enerates a compile time error probably due to a mixed use of host
and device views when comparing implemented vs. reference results.

* CUDA 11.0.1 / cuSPARSE 11.0.0 changed SpMM enums

* SYR2: applying clang-format

* CUDA 11.2.1 / cuSPARSE 11.4.0 changed SpMV

* KokkosBlas1_axpby: include <iostream> for debug builds

Resolve compilation errors in debug mode:
"error: no member named 'cout' in namespace 'std';"

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Backup

* Address CI build errors

* Some cleanup on current pull request, making it more related to 'just' the creation of the lapack subdirectory and the moving of some files to there

* More cleanup

* Re-enabling gesv unit tests under the lapack subdirectory

* Adding BLAS routines back, for backwards compatibility

* Formatting

* Small cleaning

* Correcting error in Jenkins

* Fixing compilation error on Jenkins when dealing with HIP

* Add required rtd conf file

* README.md: Use correct project slug

* docs/requirements.txt: Add sphinx-rtd-theme

* Addressing latest feedbacks from Luc.

* Formatting

* KokkosKernelsConfig.cmake: add all_libs target and necessary aliases

* Intent of these changes is to allow for building Trilinos with
  KokkosKernels as an external TPL

* hide native merge-path SpMV behind "native-merge"

* test native-merge algorithm

* Quick fix for night compilation with Trilinos

* SPTRSV: check if cusparse is available before calling TPL path

Since SpTRSV does not implement the TPL layer the usual way we need
to be extra careful before calling the TPL implementation path. If
cusparse is not available then we definitely want to revert back to
calling the native implementation. Similarly, if the execution space
is not Kokkos::CUDA, let's use the native implementation.

* SpTRSV: more strickly check prerequisites in SptrsvHandle

Check that CUSPARSE is enabled and that HandleExecSpace is
Kokkos::CUDA before allowing users to set the implementation to use
the CUSPARSE TPL.

* SpTRSV: fix some type definition and variable usaged for cuSPARSE

Since we are guarding the cusparse path a bit better we need to be
careful when some types are defined and to mark some variables
(void) when they do not get used by an implementation...

* SpTRSV: applying clang-format

* SpTRSV: more fixes

* SpTRSV: apply clang-format

* SYCL: fix for Trilinos build with MKL

* Apply clang-format to non-cmake files

* SYR2: fix issue with bad type in test function

After comparing various function signatures and view types, the change
allows tests to pass correctly and seem correct based on input params.

* Update Test_Blas2_syr2.hpp

Fix mistake in host/device view argument

* LAPACK: adding rocsolver TPL

Adding the necessary CMake logic and TPL layer to support rocsolver
for LAPACK. Enabling the TPL in gesv and updating gesv test to run
by default the more common configurations and only run specific ones
when the associated TPL (MAGMA) is enabled.

* Lapack: change according to Brian's review

The SpaceAccessibility of IPIVV needs to be modified for MAGMA.
The value_type of IPIVV needs to be rocblas_int when running with
rocSOLVER.

The types used for gesv_tpl_spec_avail and the actual TPL
instantiation where mismatched leading to linker error.

* cmake/Dependencies.cmake: remove ROCSOLVER

Removing ROCSOLVER to prevent configuration errors with Trilinos
Will bring back when support is added in Trilinos for ROCSOLVER as TPL

* Lapack: cusolver TPL logic and support for gesv

Adding CMake logic to support cusolver and implementing gesv using
cusolver getrf and getrs. Unit-test is passing without problems!

* Lapack: updating logic in cm_generate_makefile for cusolver

There is some specific TPL logic in cm_generate_makefile and it
cannot be found for cusolver, changing that might to the trick!

* Backup

* Backup

* Backup

* Formatting

* mv_unification tests with double are failing by very small amounts, e.g. 5.9e-14 vs. 3.6e-14

* Trying one more increment on tolerance

* Putting pragma's and unrolls properly right before for loops (compilation warning at weaver)

* Giving it another try to larger tolarance, after fixing the warning on pragma and unroll

* Lapack: gesv, implementing review commments

* Adding Changelog for Release 4.2.0 (#2031)

* Adding Changelog for Release 4.2.0

Part of Kokkos C++ Performance Portability Programming EcoSystem 4.2

* Formatting the changelog a bit more

Mentioning more clearly LAPACK vs BLAS, grouping PRs by logical work unit, etc...

* Remove minor revisions, improve text descriptions

* Changelog: add spmv perftest detail

---------

Co-authored-by: Luc Berger <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>
Co-authored-by: brian-kelley <[email protected]>

* NRM1: refactoring TPL layer a bit with c++17 if constexpr

Hopefully this leads to simpler code, less duplication, less
macro and easier maintenance!
Adding support for oneapi MKL while making tpl layer changes.

* BLAS: Nrm1 implementing Brian's feedback

* Blas: nrm1, fix in tpl spec decl

* BLAS: nrm1 problems with ExecSpace template and lack of Kokkos::Threads

Fix issue with Kokkos::Threads and Kokkos::HIP

* Another attempt while waiting to get access to the solo cluster

* Formatting

* Correction error from the last commit

* Fixing the error that was happening only at the solo cluster

* Increase tolerance a bit more

* ncreasing tolerances in all 4 locations

* Backup

* Backup

* Formatting

* Forgot to add ClusteringAlgorithm:: at some spots

* Formatting

* Lapack: fixing issue with Magma TPL in gesv, trtri, etc...

Adding proper support for MAGMA after having it moved to the Lapack
directory and checking it does not create issues with cuSOLVER.

* Update blas/unit_test/Test_Blas1_swap.hpp

Co-authored-by: brian-kelley <[email protected]>

* cmake: Add workaround check for CUSOLVER support with Trilinos

TPL_ENABLE_CUDA default enables CUBLAS and CUSOLVER in Trilinos, but not CUSPARSE
This PR modifies the TPL requirement checks to maintain compatibility with existing configration options of Trilinos

Attempt to resolve/workaround issue #2047

* Addressing Brian Kelley's feedbacks

* Formatting

* Removing 'ClusteringAlgorithm::'

* Lapack: gesv, incorporate Brian's feedback

* Applying clang-format

* Fixing some deprecation warnings/errors for ROCm 6

* BLAS: fix bug in TPL layer of KokkosBlas::swap

The cuBLAS Kokkos::complex<float> specialization had a small bug
where the rank of the view was not specified correctly!

* CMake: fix bugs in deciding KOKKOSKERNELS_TPL_BLAS_RETURN_COMPLEX

* TPL: revise BLAS1 dot implementation

* Fix compile errors for C-linkage dot functions returning std::complex

* Use a C struct for complex numbers

to avoid error: '_Complex' is a C99 extension [-Werror,-Wc99-extensions].

* Add a workaround by disabling host MKL dot with complex numbers

* Allow KokkosKernels_ENABLE_PERFTESTS=ON to build perf_tests without KokkosKernels_ENABLE_TESTS=ON

* format sparse/tpls/KokkosSparse_spmv_tpl_spec_decl.hpp

* cmake: fix tpl check so cusolver can be disabled when needed

* Link std::filesystem for IntelLLVM in perf_test/sparse

* gemm3 perf test: user CUDA, SYCL, or HIP device for kokkos:initialize

* Fix for rocm_verison header inclusion

* fence Kokkos before timed interations

* Deprecate KOKKOSLINALG_OPT_LEVEL

* Add CMake warning message if KokkosKernels_LINALG_OPT_LEVEL is used

* Async matrix release for MKL >= 2023.2

* Support CUBLAS_{LIBRARIES,LIBRARY_DIRS,INCLUDE_DIRS,ROOT} and KokkosKernels_CUBLAS_ROOT

* KokkosSparse_spmv_impl_merge.hpp: use capture by reference

Resolve warnings in builds with c++20 support enabled:
"kokkos-kernels/sparse/impl/KokkosSparse_spmv_impl_merge.hpp:166:81: warning: implicit capture of 'this' via '[=]' is deprecated in C++20 [-Wdeprecated]"

* KokkosSparse_par_ilut_numeric_impl.hpp: use capture by reference

Resolve warnings in builds with c++20 support enabled:
"kokkos-kernels/sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp(591):
warning #2908-D: the implicit by-copy capture of "this" is deprecated"

* Backup

* Backup

* Backup

* Backup

* Formatting

* Correcting compilation error

* Typo

* Changes for syr and syr2, to be tested at weaver

* Formatting

* Changes for axpby

* Backup

* Formatting

* Just to force new checking tests in github

* Addressing feedback from Luc.

* Don't call optimize_gemv for one-shot spmv

* Add HIPManagedSpace support

- CMake option for ETI
- Run unit tests with a Kokkos::Device, not just Kokkos::HIP
	- Like we do for Cuda
	- Still use HIPSpace unless Managed is the only enabled memspace
- Couple of minor fixes
	- Allow querying free HIPManagedSpace memory for SpGEMM
	- Disable VBD coloring (not a huge deal, had to do same on CUDA)
	- Use correct memory space in SpTRSV solve

* Backup

* Backup

* Backup

* Minor typo

* Add block support to all SPILUK algorithms (#2064)

* Interface for block iluk

* Progress. Test hooked up

* Progress on test refactoring

* More test reorg

* Fix test

* Refactor spiluk numeric a bit with a struct wrapper

* Add good logging

* progress

* Fix block test

* Progress but potential dead end

* Giving up on this approach for now

* progress

* Make verbose

* Progress

* Progress

* RP working?

* Progress on TP alg

* Bug fix

* Progress on template stuff

* Progress on block TP

* Progress

* Get rid of all the static_casts

* More cleanup. Steams now support blocks

* Tests not passing

* Serail tests all working, both algs, blocked

* Remove output coming from spiluk test

* Final fixes for CPU

* Cuda req full template specification for SerialGemm::invoke

* Don't use scratch for now

* Formatting

* Fix warnings

* Formatting

* Add tolerance to view checks. Use macro and remove redundant test util

* Fix for HIP

* formatting

* Another test reorg to fix weirdness on solo

* formatting

* Remove unused var

* Github feedback

* Remove test cout

* formatting

* Zero-size arrays can cause problems

* Fix unused var warning

* Add CUDA/HIP TPL support for KokkosSparse::spadd (#1962)

* spadd: change arguments to ctor of SPADDHandle

add a default value to input_sorted;
add a second argument input_merged to indicate unqiue entries;
So that we can easily know whether we can use TPLs on the input matrices

* spadd: add cuda/rocm TPL support for spadd_symbolic/numeric

* Make spiluk_handle::reset backwards compatible (#2087)

* Make spiluk_handle::reset backwards compatible

By making block_size default to -1, which means don't change
block size.

* Switch default val for block_size for reset_handle

* formatting

* Fix comment

* spadd: add APIs without an execution space argument (#2090)

* Lapack - SVD: adding initial files that do not implement anything (#2092)

Adding SVD feature to Lapack component, the interface is similar
to classic Lapack and the implementation relies on the TPL layer
to provide initial capabilities. The TPL supported are LAPACK,
MKL, cuSOLVER and rocSOLVER.

Testing three analytical cases 2x2, 2x3 and 3x2 and then some
randomly generated matrices.

* Hands off namespace `Kokkos::Impl` - cleanup couple violations that snuck in (#2094)

* Do not use things from namespace Kokkos::Impl (Kokkos::{Impl:: -> }ALL_t)

* Do not use things from namespace Kokkos::Impl (Kokkos::Impl::DeepCopy)

Can achieve the same with Kokkos::deep_copy

* Fix warning `declaration of ‘std::size_t n’ shadows a parameter`

* Change name of yaml-cpp to yamlcpp

* Fix macro setting in CMakeLists

* GMRES: Add support for BSR matrices

Also, add a test for this.

* Remove all mentions of HBWSpace

* Reintroduce EXECSPACE_(SERIAL,OPENMP,THREADS}_VALID_MEM_SPACES

Drop HBWSPACE as an option

* Lapack: adding svd benchmark

Fixing unit-test for CUSOLVER and adding benchmark to check the
algorithm performance on various platforms.

* Fix Cuda TPL finding (#2098)

- Allow finding cusparse, cusolver based on manually provided paths
  - This is necessary when using an nvhpc toolchain instead of a
    standard cuda toolchain
- Set header paths correctly (this is redundant in a cuda installation,
  in which $CUDA_ROOT/include is already a system include dir, but
  needed in other cases)

* Add support for BSR matrices to some trsv routines (#2104)

* Add support for BSR matrices to some trsv routines
* Change trsv to gesv

* Lapack - SVD: adding quick return when cuSOLVER is skipped (#2107)

Currently we still run the tests on U, S and Vt which does not
make sense since we actively skip this test because cuSOLVER does
not support more columns than rows...

* Fix build error in trsv on gcc8

* Add a workaround for compilation errors with cuda-12.2.0 + gcc-12.3 (#2108)

On Perlmutter@NERSC, I met this error

/usr/lib64/gcc/x86_64-suse-linux/12/include/avx512fp16intrin.h(38): error: vector_size attribute requires an arithmetic or enum type
   typedef __half __v8hf __attribute__ ((__vector_size__ (16)));

The workaround was mentioned at https://forums.developer.nvidia.com/t/including-cub-header-breakes-compilation-with-gcc-12-and-sse2-or-better/255018

* Lapack - SVD: fix for unit-test when MKL is enabled (#2110)

This is really a problem with our implementation of the BLAS
interface when MKL is enabled since MKL redefines the function
signatures of blas functions using MKL_INT instead if int...

* Revert "Merge pull request #2037 from ndellingwood/remove-rocsolver-optional-dependency" (#2106)

This reverts commit 5a36d57, reversing
changes made to 2c66d29.

* Fixing missing inclusion in source file

* BLAS - MKL: fixing HostBlas calls to handle MKL_INT type (#2112)

MKL redefines the BLAS interface based on how MKL_INT is defined
we need to wrap that definition with our own Kokkos Kernels INT
type to make both compatible with regular BLAS.

applying clang-format

* Fix weird Trilinos compiler error

It seemed to have a problem with these deep_copies, so just do
the copy by hand like it was being done before my recent trsv
PR.

* Update changelog

* Update changelog

* Block spiluk follow up (#2085)

* Fix for gemm
* Remove unused divide method
* Enhancements to spiluk test
* Progress. Block spiluk now checks out against analytical results
* LUPrec test with spiluk woring
* Disable spiluk LU test on non-host
* Enhancements to spiluk test
* Clean up a few issues uncovered by gh review

* github workflows: update to v4 (use Node 20)

* Refactor Test_Sparse_sptrsv (#2102)

* Refactor Test_Sparse_sptrsv

* More cleanups

* Remove old commented-out code

* CMake: error out in certain case (#2115)

Graph unit tests are unique in that they use default_scalar for the
KokkosKernelsHandle. So if test-eti-only is ON, but neither float nor
double is instatiated, then error out for the graph unit tests.

Users can still build without float or double if they want, but only if
they turn off tests or the graph component.

* Wiki examples for BLAS2 functions are added (#2122)

Some small additional change the the function headers themselves
to add some missing header file inclusions.

Applying clang-format

Removing constexpr since it won't happen before some work in Core.

* Increase tolerance on gesv test (Fix #2123) (#2124)

And uncomment the verbose output for when tolerance is exceeded,
since that helps debug this sort of issue.
This is only printed at most once so it won't spam the output if
the entire vector is wrong.

* Spmv handle (#2126)

* spmv handle, TPL reuse

* using handle in unification layer and hooking up new algorithm
enums with old Controls options

* Update spmv_merge perf test
Compare KK merge vs. default and KK native

* Small changes to help text of spmv_merge perf test

* Complete backwards compatibility with Controls interface
- copy over spmv algorithm selection correctly
- copy expert tuning parameters

* Controls spmv: accept other name for bsr algo

* bsr spmv test: disable tensor core
It was not actually being run before due to a different name
actually enabling it (experimental_bsr_tc rather than experimental_tc)

* Disable OneMKL spmv for complex types
oneapi 2023.2 throws error saying complex isn't supported

* OneMKL: call optimize_gemv during setup

* Option to apply RCM reordering to extracted CRS diagonal blocks (#2125)

* Add rcm option when extracting diagonal blocks

* Update kk_extract_diagonal_blocks_crsmatrix_sequential

* Add test for extracting diagonal blocks with rcm

* Update RCM checking

* cm_test_all_sandia: various updates

- updates for blake

* cm_test_all_sandia: drop decommissioned/unavailable machines

- remove voltrino, mayer

* Fix2130 (#2132)

* Fix #2130

- Do not call BsrMatrix spmv impl if block size is 1
- Instead, convert it to unmanaged CrsMatrix and call spmv again
  - cuSPARSE returned an error code in this case
  - Better performance

* Formatting

* Remove redundant remove_pointer_t

Handle is already a non-pointer type

* Benchmark: modifying spmv benchmark to run range of spmv tests (#2135)

This could be further automated to run on matrix from suite sparse

* Kokkos Kernels: update version guards to drop old version of Kokkos (#2133)

Since we are now in the 4.2 series we only support up to 4.1.00.
Older version of Kokkos Core will require older version of Kokkos
Kernels for compatibility. Once 4.3.00 is out we will move to
drop support for the 4.1 series and only keep 4.2 and 4.3 series.

* ODE: BDF methods (#1930)

* ODE: adding BDF algorithms

Implementing BDF formula for stiff ODEs.
Orders 1 to 5 are available and tested.
The integrators can be called on GPU to
solve multiple systems in parallel.

* ODE: fixing storage handling for start-up RK stack

* ODE: clang-format

* ODE: first adaptive version of BDF

The current implementation only allows for adaptivity in time,
at this point the BDF Step actually converges as expected with
first order integration!

* ODE: fixing issues with adaptive BDF

The unit-test BDF_adaptive now shows the integration
of the logistic equation using adaptive time steps and
increasing integration order from 1 to 5.

* ODE: running BDF on StiffChemistry problem

The problem runs fine and is solved but there are oscillations
while the behavior of the solution is smooth. More investigation
is needed...

* BDF: fixing types and template parameters in batched calls

Bascially we need template parameters to be more versatile
and cannot assume that all rank1 views will have the exact
same underlying type, for instance layouts can be different.

* More fixes for GPUs only in tests this time.

* ODE: BDF adaptive, fix small bug

After adding rhs and update vectors to temp the subviews taken for
other variables need to be offset appropriately...

* Revert "More fixes for GPUs only in tests this time."

This reverts commit 2f70432.

* Revert "Revert "More fixes for GPUs only in tests this time.""

This reverts commit 836012b.

* ODE: BDF small change to temporarily avoid compile time issue

True fix involving a KOKKOS_VERSION check is upcoming after more
tests on GPU side...

* ODE: BDF fix for some printf statements that will go away soon...

* ODE: adding benchmark for BDF

The benchmark helps us monitor the performance of the BDF
implementaiton across multiple platforms as well as impact of
changes over time.

* ODE: improve benchmark interface...

* ODE: BDF changes to use RMS norm and change some default values

Small changes to compare more closely with reference implementation.
Some of these might be reverted eventually but that's fine for now.

* ODE: BDF convergence more stable and results look pretty good now!

Changing the Newton solver convergence criteria as well as changing
a few default input parameters leads to a more stable algorithms
which can now integrate the stiff Henderson autocatalytic example
well in 66 time steps instead of 200k for fixed order integration...

* ODE: BDF fix bug in initial time step calculation

The initial step routine was overwriting the initial right hand side
which led to obvious issues further down the road... now things should
work fine. Need to figure out if I can re-initialize the variables in
the perf test while excluding that time from each iteration.

* ODE: BDF removing bad print statement...

std::cout in device code

* ODE - BDF: improving perf test

Basically adding new untimed setup within the main loop of the
benchmark to reset the intial conditions, buffers and vectors
ahead of each iteration.

* Modifying unit-test to catch proper return type

* Applying clang-format

* cm_test_all_sandia: update caraway compilers

add rocm/5.6.1 and rocm/6.0.0, and openblas/0.3.23 as tpl

* Sparse MKL: changing the location of the MKL_SAFE_CALL macro (#2134)

* Sparse MKL: changing the location of the MKL_SAFE_CALL macro

Moving the macro outside of namespaces to ensure that it will be
interpreted correctly when called from any other location in the
library.

It does not make much sense to guard Impl code in the Experimental
namespace and in this case it cleans up a problem with namespace
disambiguation for the compiler...

* Sparse BsrSpMV: removing Experimental namespace from Impl namespace

* Applying clang-format

* Sparse SpMV: fixing more namespace issues!

* Fixing missing descriptor for bsr spmv

* Kokkos Kernels: change the default offset ETI from size_t to int (#2140)

This change makes it easier for customer to leverage TPL support
which almost always requires offset=int, ordinal=int to be enabled
meaning that no TPL support is available with our default ETI...

* KokkosSparse_spmv_bsrmatrix_spec: fix Bsr_TC_Precision namespacing

Resolve compilation errors in nightly cuda/12.2 A100 build

* Drop comment for cleaner clang-format fix

* Fix usage of RAII to set cusparse/rocsparse stream (#2141)

Temporary objects like "A()" get destructed immediately.
For the object to have scope lifetime, it needs a name like "A a();".
This was causing cusparse/rocsparse spmv to always execute on the default stream,
causing incorrect timing in the spmv perf test.

* Use execution space operator== (#2136)

It actually is part of the public interface

* cm_test_all_sandia: more caraway module updates and cleanup (#2145)

* Spmv perftest improvements (#2146)

* Spmv perf test improvements

- Add option to flush caches by filling a dummy buffer between
iterations
- Add option to call the non-reuse interface instead of handle/reuse
interface
- Fix modes T, H in nonsquare case (make x,y the correct length)

* Fix mode help text

* Update version to 4.3.0

* Revert "Kokkos Kernels: change the default offset ETI from size_t to int (#2140)"

This reverts commit 3a5498d.

* Fix signed/unsigned comparison warnings (#2150)

This is only hit when spmv is called with integer scalars,
which doesn't happen in our CI but does often in Tpetra.

* SPMV tpl fixes, cusparse workaround (#2152)

* SPMV tpl fixes, workaround

* Avoid possible integer conversion warnings

* Document cusparseSpMM algos that were tested

* Merge pull request #2147 from lucbv/KK_Utils_cleanup

KokkosKernels Utils: cleaning the zero_vector interface

(cherry picked from commit 363868e)

* KokkosBlas1_axpby.hpp: change debug macro guard for printInformation (#2157)

* KokkosBlas1_axpby.hpp: change debug macro guard for printInformation

- resolves test failures in Trilinos (MueLu) that rely on gold file diff
comparisons by removing extra output in debug builds

* fix compilation error

* Update changelog for 4.3.00 (#2148)

* Update changelog for 4.3.00

* Update CHANGELOG.md

---------

Co-authored-by: Luc Berger <[email protected]>

* FIx changelog typo

* Fix merge artifacts

* CMakeLists.txt: fix Kokkos_VERSION check

* Merge pull request #2165 from ndellingwood/test-updates

Updates from feedback runnig Trilinos testing

(cherry picked from commit cacba80)

* Update master_history.txt for 4.3.0

* KokkosLapack_svd_tpl_spec_decl: defer to MKL spec when LAPACK also enabled

Resolves redefintion of struct SVD compilation errors with both MKL and LAPACK are enabled
Reported by @maartenarnst in trilinos/Trilinos#12891

Co-authored-by: brian-kelley <[email protected]>
(cherry picked from commit 5bf5474)

---------

Co-authored-by: Luc Berger-Vergiat <[email protected]>
Co-authored-by: Ernesto Prudencio <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>
Co-authored-by: Evan Harvey <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>
Co-authored-by: brian-kelley <[email protected]>
Co-authored-by: Sean Miller <[email protected]>
Co-authored-by: Junchao Zhang <[email protected]>
Co-authored-by: Junchao Zhang <[email protected]>
Co-authored-by: Brian Kelley <[email protected]>
Co-authored-by: James Foucar <[email protected]>
Co-authored-by: Damien L-G <[email protected]>
Co-authored-by: Caleb Schilly <[email protected]>
Co-authored-by: Damien L-G <[email protected]>
Co-authored-by: Vinh Dang <[email protected]>
lucbv added a commit that referenced this pull request Aug 12, 2024
* fence Kokkos before timed interations

* Deprecate KOKKOSLINALG_OPT_LEVEL

* Add CMake warning message if KokkosKernels_LINALG_OPT_LEVEL is used

* Async matrix release for MKL >= 2023.2

* Support CUBLAS_{LIBRARIES,LIBRARY_DIRS,INCLUDE_DIRS,ROOT} and KokkosKernels_CUBLAS_ROOT

* KokkosSparse_spmv_impl_merge.hpp: use capture by reference

Resolve warnings in builds with c++20 support enabled:
"kokkos-kernels/sparse/impl/KokkosSparse_spmv_impl_merge.hpp:166:81: warning: implicit capture of 'this' via '[=]' is deprecated in C++20 [-Wdeprecated]"

* KokkosSparse_par_ilut_numeric_impl.hpp: use capture by reference

Resolve warnings in builds with c++20 support enabled:
"kokkos-kernels/sparse/impl/KokkosSparse_par_ilut_numeric_impl.hpp(591):
warning #2908-D: the implicit by-copy capture of "this" is deprecated"

* Backup

* Backup

* Backup

* Backup

* Formatting

* Correcting compilation error

* Typo

* Changes for syr and syr2, to be tested at weaver

* Formatting

* Changes for axpby

* Backup

* Formatting

* Just to force new checking tests in github

* Addressing feedback from Luc.

* Don't call optimize_gemv for one-shot spmv

* Add HIPManagedSpace support

- CMake option for ETI
- Run unit tests with a Kokkos::Device, not just Kokkos::HIP
	- Like we do for Cuda
	- Still use HIPSpace unless Managed is the only enabled memspace
- Couple of minor fixes
	- Allow querying free HIPManagedSpace memory for SpGEMM
	- Disable VBD coloring (not a huge deal, had to do same on CUDA)
	- Use correct memory space in SpTRSV solve

* Backup

* Backup

* Backup

* Minor typo

* Add block support to all SPILUK algorithms (#2064)

* Interface for block iluk

* Progress. Test hooked up

* Progress on test refactoring

* More test reorg

* Fix test

* Refactor spiluk numeric a bit with a struct wrapper

* Add good logging

* progress

* Fix block test

* Progress but potential dead end

* Giving up on this approach for now

* progress

* Make verbose

* Progress

* Progress

* RP working?

* Progress on TP alg

* Bug fix

* Progress on template stuff

* Progress on block TP

* Progress

* Get rid of all the static_casts

* More cleanup. Steams now support blocks

* Tests not passing

* Serail tests all working, both algs, blocked

* Remove output coming from spiluk test

* Final fixes for CPU

* Cuda req full template specification for SerialGemm::invoke

* Don't use scratch for now

* Formatting

* Fix warnings

* Formatting

* Add tolerance to view checks. Use macro and remove redundant test util

* Fix for HIP

* formatting

* Another test reorg to fix weirdness on solo

* formatting

* Remove unused var

* Github feedback

* Remove test cout

* formatting

* Zero-size arrays can cause problems

* Fix unused var warning

* Add CUDA/HIP TPL support for KokkosSparse::spadd (#1962)

* spadd: change arguments to ctor of SPADDHandle

add a default value to input_sorted;
add a second argument input_merged to indicate unqiue entries;
So that we can easily know whether we can use TPLs on the input matrices

* spadd: add cuda/rocm TPL support for spadd_symbolic/numeric

* Make spiluk_handle::reset backwards compatible (#2087)

* Make spiluk_handle::reset backwards compatible

By making block_size default to -1, which means don't change
block size.

* Switch default val for block_size for reset_handle

* formatting

* Fix comment

* spadd: add APIs without an execution space argument (#2090)

* Lapack - SVD: adding initial files that do not implement anything (#2092)

Adding SVD feature to Lapack component, the interface is similar
to classic Lapack and the implementation relies on the TPL layer
to provide initial capabilities. The TPL supported are LAPACK,
MKL, cuSOLVER and rocSOLVER.

Testing three analytical cases 2x2, 2x3 and 3x2 and then some
randomly generated matrices.

* Hands off namespace `Kokkos::Impl` - cleanup couple violations that snuck in (#2094)

* Do not use things from namespace Kokkos::Impl (Kokkos::{Impl:: -> }ALL_t)

* Do not use things from namespace Kokkos::Impl (Kokkos::Impl::DeepCopy)

Can achieve the same with Kokkos::deep_copy

* Fix warning `declaration of ‘std::size_t n’ shadows a parameter`

* Change name of yaml-cpp to yamlcpp

* Fix macro setting in CMakeLists

* GMRES: Add support for BSR matrices

Also, add a test for this.

* Remove all mentions of HBWSpace

* Reintroduce EXECSPACE_(SERIAL,OPENMP,THREADS}_VALID_MEM_SPACES

Drop HBWSPACE as an option

* Lapack: adding svd benchmark

Fixing unit-test for CUSOLVER and adding benchmark to check the
algorithm performance on various platforms.

* Fix Cuda TPL finding (#2098)

- Allow finding cusparse, cusolver based on manually provided paths
  - This is necessary when using an nvhpc toolchain instead of a
    standard cuda toolchain
- Set header paths correctly (this is redundant in a cuda installation,
  in which $CUDA_ROOT/include is already a system include dir, but
  needed in other cases)

* Add support for BSR matrices to some trsv routines (#2104)

* Add support for BSR matrices to some trsv routines
* Change trsv to gesv

* Lapack - SVD: adding quick return when cuSOLVER is skipped (#2107)

Currently we still run the tests on U, S and Vt which does not
make sense since we actively skip this test because cuSOLVER does
not support more columns than rows...

* Fix build error in trsv on gcc8

* Add a workaround for compilation errors with cuda-12.2.0 + gcc-12.3 (#2108)

On Perlmutter@NERSC, I met this error

/usr/lib64/gcc/x86_64-suse-linux/12/include/avx512fp16intrin.h(38): error: vector_size attribute requires an arithmetic or enum type
   typedef __half __v8hf __attribute__ ((__vector_size__ (16)));

The workaround was mentioned at https://forums.developer.nvidia.com/t/including-cub-header-breakes-compilation-with-gcc-12-and-sse2-or-better/255018

* Lapack - SVD: fix for unit-test when MKL is enabled (#2110)

This is really a problem with our implementation of the BLAS
interface when MKL is enabled since MKL redefines the function
signatures of blas functions using MKL_INT instead if int...

* Revert "Merge pull request #2037 from ndellingwood/remove-rocsolver-optional-dependency" (#2106)

This reverts commit 5a36d577e725546062af3b297eec87e23a40ab58, reversing
changes made to 2c66d291f9b5512e17f9375304902b6ba42133b2.

* Fixing missing inclusion in source file

* BLAS - MKL: fixing HostBlas calls to handle MKL_INT type (#2112)

MKL redefines the BLAS interface based on how MKL_INT is defined
we need to wrap that definition with our own Kokkos Kernels INT
type to make both compatible with regular BLAS.

applying clang-format

* Fix weird Trilinos compiler error

It seemed to have a problem with these deep_copies, so just do
the copy by hand like it was being done before my recent trsv
PR.

* Update changelog

* Update changelog

* Block spiluk follow up (#2085)

* Fix for gemm
* Remove unused divide method
* Enhancements to spiluk test
* Progress. Block spiluk now checks out against analytical results
* LUPrec test with spiluk woring
* Disable spiluk LU test on non-host
* Enhancements to spiluk test
* Clean up a few issues uncovered by gh review

* github workflows: update to v4 (use Node 20)

* Refactor Test_Sparse_sptrsv (#2102)

* Refactor Test_Sparse_sptrsv

* More cleanups

* Remove old commented-out code

* CMake: error out in certain case (#2115)

Graph unit tests are unique in that they use default_scalar for the
KokkosKernelsHandle. So if test-eti-only is ON, but neither float nor
double is instatiated, then error out for the graph unit tests.

Users can still build without float or double if they want, but only if
they turn off tests or the graph component.

* Wiki examples for BLAS2 functions are added (#2122)

Some small additional change the the function headers themselves
to add some missing header file inclusions.

Applying clang-format

Removing constexpr since it won't happen before some work in Core.

* Increase tolerance on gesv test (Fix #2123) (#2124)

And uncomment the verbose output for when tolerance is exceeded,
since that helps debug this sort of issue.
This is only printed at most once so it won't spam the output if
the entire vector is wrong.

* Spmv handle (#2126)

* spmv handle, TPL reuse

* using handle in unification layer and hooking up new algorithm
enums with old Controls options

* Update spmv_merge perf test
Compare KK merge vs. default and KK native

* Small changes to help text of spmv_merge perf test

* Complete backwards compatibility with Controls interface
- copy over spmv algorithm selection correctly
- copy expert tuning parameters

* Controls spmv: accept other name for bsr algo

* bsr spmv test: disable tensor core
It was not actually being run before due to a different name
actually enabling it (experimental_bsr_tc rather than experimental_tc)

* Disable OneMKL spmv for complex types
oneapi 2023.2 throws error saying complex isn't supported

* OneMKL: call optimize_gemv during setup

* Option to apply RCM reordering to extracted CRS diagonal blocks (#2125)

* Add rcm option when extracting diagonal blocks

* Update kk_extract_diagonal_blocks_crsmatrix_sequential

* Add test for extracting diagonal blocks with rcm

* Update RCM checking

* cm_test_all_sandia: various updates

- updates for blake

* cm_test_all_sandia: drop decommissioned/unavailable machines

- remove voltrino, mayer

* Fix2130 (#2132)

* Fix #2130

- Do not call BsrMatrix spmv impl if block size is 1
- Instead, convert it to unmanaged CrsMatrix and call spmv again
  - cuSPARSE returned an error code in this case
  - Better performance

* Formatting

* Remove redundant remove_pointer_t

Handle is already a non-pointer type

* Benchmark: modifying spmv benchmark to run range of spmv tests (#2135)

This could be further automated to run on matrix from suite sparse

* Kokkos Kernels: update version guards to drop old version of Kokkos (#2133)

Since we are now in the 4.2 series we only support up to 4.1.00.
Older version of Kokkos Core will require older version of Kokkos
Kernels for compatibility. Once 4.3.00 is out we will move to
drop support for the 4.1 series and only keep 4.2 and 4.3 series.

* ODE: BDF methods (#1930)

* ODE: adding BDF algorithms

Implementing BDF formula for stiff ODEs.
Orders 1 to 5 are available and tested.
The integrators can be called on GPU to
solve multiple systems in parallel.

* ODE: fixing storage handling for start-up RK stack

* ODE: clang-format

* ODE: first adaptive version of BDF

The current implementation only allows for adaptivity in time,
at this point the BDF Step actually converges as expected with
first order integration!

* ODE: fixing issues with adaptive BDF

The unit-test BDF_adaptive now shows the integration
of the logistic equation using adaptive time steps and
increasing integration order from 1 to 5.

* ODE: running BDF on StiffChemistry problem

The problem runs fine and is solved but there are oscillations
while the behavior of the solution is smooth. More investigation
is needed...

* BDF: fixing types and template parameters in batched calls

Bascially we need template parameters to be more versatile
and cannot assume that all rank1 views will have the exact
same underlying type, for instance layouts can be different.

* More fixes for GPUs only in tests this time.

* ODE: BDF adaptive, fix small bug

After adding rhs and update vectors to temp the subviews taken for
other variables need to be offset appropriately...

* Revert "More fixes for GPUs only in tests this time."

This reverts commit 2f70432761485bc6a4c65a1833e7299dd2c340e2.

* Revert "Revert "More fixes for GPUs only in tests this time.""

This reverts commit 836012bb529551727b3f5913057acad94dfe60df.

* ODE: BDF small change to temporarily avoid compile time issue

True fix involving a KOKKOS_VERSION check is upcoming after more
tests on GPU side...

* ODE: BDF fix for some printf statements that will go away soon...

* ODE: adding benchmark for BDF

The benchmark helps us monitor the performance of the BDF
implementaiton across multiple platforms as well as impact of
changes over time.

* ODE: improve benchmark interface...

* ODE: BDF changes to use RMS norm and change some default values

Small changes to compare more closely with reference implementation.
Some of these might be reverted eventually but that's fine for now.

* ODE: BDF convergence more stable and results look pretty good now!

Changing the Newton solver convergence criteria as well as changing
a few default input parameters leads to a more stable algorithms
which can now integrate the stiff Henderson autocatalytic example
well in 66 time steps instead of 200k for fixed order integration...

* ODE: BDF fix bug in initial time step calculation

The initial step routine was overwriting the initial right hand side
which led to obvious issues further down the road... now things should
work fine. Need to figure out if I can re-initialize the variables in
the perf test while excluding that time from each iteration.

* ODE: BDF removing bad print statement...

std::cout in device code

* ODE - BDF: improving perf test

Basically adding new untimed setup within the main loop of the
benchmark to reset the intial conditions, buffers and vectors
ahead of each iteration.

* Modifying unit-test to catch proper return type

* Applying clang-format

* cm_test_all_sandia: update caraway compilers

add rocm/5.6.1 and rocm/6.0.0, and openblas/0.3.23 as tpl

* Sparse MKL: changing the location of the MKL_SAFE_CALL macro (#2134)

* Sparse MKL: changing the location of the MKL_SAFE_CALL macro

Moving the macro outside of namespaces to ensure that it will be
interpreted correctly when called from any other location in the
library.

It does not make much sense to guard Impl code in the Experimental
namespace and in this case it cleans up a problem with namespace
disambiguation for the compiler...

* Sparse BsrSpMV: removing Experimental namespace from Impl namespace

* Applying clang-format

* Sparse SpMV: fixing more namespace issues!

* Fixing missing descriptor for bsr spmv

* Kokkos Kernels: change the default offset ETI from size_t to int (#2140)

This change makes it easier for customer to leverage TPL support
which almost always requires offset=int, ordinal=int to be enabled
meaning that no TPL support is available with our default ETI...

* KokkosSparse_spmv_bsrmatrix_spec: fix Bsr_TC_Precision namespacing

Resolve compilation errors in nightly cuda/12.2 A100 build

* Drop comment for cleaner clang-format fix

* Fix usage of RAII to set cusparse/rocsparse stream (#2141)

Temporary objects like "A()" get destructed immediately.
For the object to have scope lifetime, it needs a name like "A a();".
This was causing cusparse/rocsparse spmv to always execute on the default stream,
causing incorrect timing in the spmv perf test.

* Use execution space operator== (#2136)

It actually is part of the public interface

* cm_test_all_sandia: more caraway module updates and cleanup (#2145)

* Spmv perftest improvements (#2146)

* Spmv perf test improvements

- Add option to flush caches by filling a dummy buffer between
iterations
- Add option to call the non-reuse interface instead of handle/reuse
interface
- Fix modes T, H in nonsquare case (make x,y the correct length)

* Fix mode help text

* KokkosKernels Utils: cleaning the zero_vector interface

One of the overload requires an unused template, removing that
extraneous template and simplify how that function is called in
a second overload.

* Kokkos Kernels: fixing call to zero_vector in Gauss-Seidel

* CMakeLists.txt: Update develop to 4.3.99

* Address reviewer comments

* Update CMakeLists.txt

Co-authored-by: brian-kelley <[email protected]>

* cm_test_all_sandia: solo updates

module updates post TOSS upgrade

* Fix signed/unsigned comparison warnings (#2150)

This is only hit when spmv is called with integer scalars,
which doesn't happen in our CI but does often in Tpetra.

* SPMV tpl fixes, cusparse workaround (#2152)

* SPMV tpl fixes, workaround

* Avoid possible integer conversion warnings

* Document cusparseSpMM algos that were tested

* Applying clang-format

* Use default_size_type as default offset in matrix types (#2149)

Now a declaration like CrsMatrix<Scalar, Ordinal, Device>
will by default use an ETI'd type combination (as int is the default
ETI'd offset)

* spmv bsr perftest: move fences to right place (#2153)

* Kokkos Kernels: removing old code branches ahead of 4.3.00 release (#2139)

Some old code branches kept for compatibility with Kokkos Core
versions less than 4.2.00 are dropped after release 4.3.00.
The largest changes are the removal of support the Kokkos print
macro in favor of Kokkos::printf() and the removal of half support
from Kokkos Kernels since it is now in Kokkos Core.

* Code for running performance measurements on ger() (#2082)

* Correct flop count

* Addressing feedbacks from Luc

* Using 'zero()' instead of '0.'

* KokkosBlas1_axpby.hpp: change debug macro guard for printInformation (#2157)

* KokkosBlas1_axpby.hpp: change debug macro guard for printInformation

- resolves test failures in Trilinos (MueLu) that rely on gold file diff
comparisons by removing extra output in debug builds

* fix compilation error

* Add user tolerance to Serial SVD (#2120)

* Add user tolerance to Serial SVD
---------

Co-authored-by: whorne <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>

* Add a simple Harwell-Boeing file reader (#2155)

* Add a simple Harwell-Boeing file reader

And a test that validates against the MM reader.

* Support for symmetrize

* This loop can be simplified, there's no diag duplication

* Improve IO test

* spmv tpls: use correct bool for eti template param (#2160)

(It should just be the default,
KokkosSpars::Impl::eti_spec_avail<..>::value)

* Fix sparse_ioutils test on kokkos-dev (#2162)

Adding a ss.sync call fixes it but I have no idea why it
was needed here. All the other stringstream reads work fine.

* Fix #2156 (#2164)

spmv: add special path for rank-2 x/y, but where both have 1 column
and a TPL is available for rank-1 but not rank-2.

Also call "subhandle->set_exec_space" correctly in the TPLs to ensure
proper synchronization between setup, spmv and cleanup (in the case that
different exec instances are used in different calls)

* Updates from feedback runnig Trilinos testing

- Update debug level to > 1 guarding `printInformation(...)` in
  KokkosBlas1_axpby.hpp to reduce noisy test output
- Loosen tolerance of lapack.svd test to avoid random failures that
  occur near prior tolerance level

* Fix #2167: classic MKL doesn't use space instance (#2168)

* CHANGELOG.md: 4.3.00 update

* KokkosLapack_svd_tpl_spec_decl: defer to MKL spec when LAPACK also enabled

Resolves redefintion of struct SVD compilation errors with both MKL and LAPACK are enabled
Reported by @maartenarnst in https://github.com/trilinos/Trilinos/issues/12891

Co-authored-by: brian-kelley <[email protected]>

* .github/workflows: Added bdw.yml

* .github/workflows: Added spr.yml

* .github/workflows: Added mi210.yml

* .github/workflows: Added h100.yml

* .github/workflows: Added volta70.yml

* .github/workflows: Added power9.yml and power9_tpls.yml

* Jgfouca/block spiluk fixes (#2172)

* Progress

* Attempt 1, fix multiplication order

* Converges in 1 step

* Various cleanups

* Be sure not to reduce performance of unblocked impl

Also add some comments.

* Remove test mangling

* Fixes for GPU

* Fix warning

* formatting

* Increase eps for floats

* This is no longer needed

* .github/workflows: Add PR_VEGA908_ROCM561_HIP_SERIAL_LEFT_OPENBLAS_OPENLAPACK_REL

* Add guard for cusparse spmv_mv_tpl_spec_avail

Address issue #2175
Configuring with magma tpl enabled and cusparse disabled mistakenly triggers the cusparse tpl avail check to be true
Guard the KOKKOSSPARSE_SPMV_MV_TPL_SPEC_AVAIL_CUSPARSE macros when CUSPARSE is enabled to prevent this

* .github/workflows: Remove OPENLAPACK from names

* .github/workflows: Remove power9 until we have hardware to test it on

* .github/workflows: Enable rocblas in rocm tpl check

* .github/workflows: Remove volta70 until we have hardware to test it on

* Add early return if numRows == 0 in trsv to avoid integer divide-by-zero error

* Resolves multiple definition of Magma and Cuda singletons (#2178)

Address issue #2175

* magma: fix linker errors for builds without cusolver (#2181)

* magma: fix linker errors for builds without cusolver

* BatchedGemm test: workaround testing cublas+magma

- temporary workaround to skip magma test when cublas enabled to avoid issues like #2177

* .github/workflows/mi210: Fix include paths

* workflows/osx.yml: test against most recent kokkos tag

- test against most recent kokkos release rather than develop branch, as
  done with AT CI, to avoid compatibility breakages

* Resolve vortex compilation issue by resolving (potentially) duplicate symbol (#2183)

Stick to pattern of removing leading 'c' or 'z' in method name and relying on the template type

Co-authored-by: malphil <[email protected]>

* Changes to enable OneAPI usage with Trilinos build (#2185)

- Get rid of SYCL_OVERRIDE setting
- Add MKL_PROVIDES_BLAS_LAPACK cmake variable and define so that
  code knows whether to use int, or MKL_INT
  - Trilinos builds might link with OneAPI for GPU but standard
    BLAS/LAPACK on CPU

* Fix macOS docs build (#2190)

* Fix docs build

* try docs fix

* make sphinx available at config time

* GH-Actions: adding security actions and scorecard (#2192)

Pretty much taking the new files from PR #2191 and re-creating
it in a clean PR on top of develop with small changes relevant
to our repository.

Cleaning up some workflows to tailor it for our needs

* Scorecard: adding manual dispatch and target default branch (#2195)

* BsrMatrix: Fix HostMirror typedef (#2196)

It needed to have size_type.

* update changelog for 4.3.1

* Update CHANGELOG.md

* docs.yml: change kokkos version to latest release

- avoid version range check issues for release tests

* Sparse - SpGEMM: labeling spgemm_symbolic in TPL layer a bit more clearly (#2193)

This just improves the readability of the output from the tools as it now
has a symbolic matching the numeric phase. Previously we only had spgemm
in the label which is a bit confusing as it could be the whole spgemm time
i.e. both symbolic and numeric, additionally we had symbolic in the MKL
path but not in cusparse, rocsparse...

* SpMV: Test NaN, fix NaN handling when beta=0 (#2188)

* Test_Sparse_spmv_bsr.hpp: add NaNs to tests

* handle NaN in spmv_beta_transpose when beta=0

* handle nan in SpmvMergeHierarchical when beta=0

* Test NaNs in Y, don't reuse modifed Y, catch NaNs in results test

* remove unused <iostream> include

* explicit casting of zero

* Test_sparse_spmv.hpp: remove unused nans parameter

* KokkosSparse_spmv.hpp: CUDA11 can't detect this function always returns

* Test_Sparse_spmv.hpp: remove unused variable

* Run unit tests in correct execution space

* Test_Sparse_spmv.hpp: remove unused type aliases

* Kokkos::nan() -> KokkosKernels::Impl::quiet_NaN()

* Disable cuBLAS dot wrapper (#2206)

(not deleted, just guarded with #if 0 and comments explaining)

It performs significantly worse than our native impl on 11.2, 11.8 and 12.0 on V100.
This is in the dot perf test with a warm-up call.

https://github.com/trilinos/Trilinos/issues/12982 was a symptom of this.

* Fix spmv regressions (#2204)

* Restore cusparse spmv ALG2 path for imbalanced

With correct version cutoffs

* spmv: use separate rank-1 and rank-2 tpl subhandles

* Remove redundant single-column path in native spmv_mv

* Fix unused param warning

* c++17: add [[fallthrough]] attribute (#1493)

* c++17: add [[fallthrough]] attribute

* cm_test_all_sandia: -Wimplicit-fallthrough

* Enable 3 at2 builds (#2210)

* .github/mi210: Enable on PRs

* .github/mi210: Disable non-tpl build

* .github/bdw: Enable PR_BDW_GNU1020_OPENMP_SERIAL_LEFT_OPENBLAS_REL

* .github/h100: Enable PR_HOPPER90_CUDA1180_CUDA_LEFT_RIGHT_REL

* Bump ossf/scorecard-action from 2.0.6 to 2.3.3 (#2214)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.0.6 to 2.3.3.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](https://github.com/ossf/scorecard-action/compare/99c53751e09b9529366343771cc321ec74e9bd3d...dc50aa9510b46c811795eb24b2f1ba02a914e534)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 3.1.3 to 4.3.3 (#2215)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.3.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/a8a3f3ad30e3422c9c7b888a15615d19a852ae32...65462800fd760344b1a7b4382951275a0abb4808)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/dependency-review-action from 2.5.1 to 4.3.2 (#2217)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 2.5.1 to 4.3.2.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/0efb1d1d84fc9633afcdaad14c485cbbc90ef46c...0c155c5e8556a497adf53f2c18edabf945ed8e70)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump step-security/harden-runner from 2.7.1 to 2.8.0 (#2218)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.7.1 to 2.8.0.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/a4aa98b93cab29d9b1101a6143fb8bce00e2eac4...f086349bfa2bd1361f7909c78558e816508cdc10)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 2.25.3 to 3.25.6 (#2216)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.25.3 to 3.25.6.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/ceaec5c11a131e0d282ff3b6f095917d234caace...9fdb3e49720b44c48891d036bb502feb25684276)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Kokkos Kernels: initial security policy (#2220)

We state were patches will be made and how to report security vulnerabilities to the project.

* Kokkos Kernels: adding SHA for github actions (#2221)

* Kokkos Kernels: adding SHA for github actions

* Adding sha for docker images

* More dependencies fix (#2222)

* workflows: fix sha for label checker docker image

* workflows: fixing Docker files dependencies.

* Fix Docker files (#2223)

* SPMV TPLs: improve profile region labels (#2219)

- Mark rank-2 versions as "spmv_mv" not "spmv" (the native impl has
  this, and it's useful to know which one is being run)
- Add missing commas separating "BSRMATRIX" and the scalar type name

* cusparse spgemm: provide non-null row-ptr (#2213)

* Bump github/codeql-action from 3.25.6 to 3.25.7 (#2225)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.6 to 3.25.7.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/9fdb3e49720b44c48891d036bb502feb25684276...f079b8493333aace61c81488f8bd40919487bd9f)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 3.6.0 to 4.1.6 (#2226)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.1.6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/f43a0e5ff2bd294095638e18286ca9a3d1956744...a5ac7e51b41094c92402da3b24376905380afc29)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* README: adding link to scorecard (#2230)

* spmv_mv wrappers for rocsparse (#2233)

* spmv_mv wrappers for rocsparse (rocsparse_spmm())

* Use consistent types for alpha/beta in spmv wrappers

* Bump step-security/harden-runner from 2.8.0 to 2.8.1 (#2236)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.8.0 to 2.8.1.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/f086349bfa2bd1361f7909c78558e816508cdc10...17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.7 to 3.25.8 (#2237)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.7 to 3.25.8.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/f079b8493333aace61c81488f8bd40919487bd9f...2e230e8fe0ad3a14a340ad0815ddb96d599d2aff)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/dependency-review-action from 4.3.2 to 4.3.3 (#2235)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/0c155c5e8556a497adf53f2c18edabf945ed8e70...72eb03d02c7872a771aacd928f3123ac62ad6d3a)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add testing for transpose corner cases (#2234)

* Add testing for transpose corner cases

crs, bsr, graph: test cases that are 0x0, 100x0 and 0x100. In these cases make
sure the matrix generator doesn't try to insert any entries (nnz = 0).

* Update sparse/unit_test/Test_Sparse_Transpose.hpp

Co-authored-by: Luc Berger <[email protected]>

* Update sparse/unit_test/Test_Sparse_Transpose.hpp

Co-authored-by: Luc Berger <[email protected]>

---------

Co-authored-by: Luc Berger <[email protected]>

* Graph: removing executable from repo (#2239)

* Fix logic around merge path with TPLs (#2240)

SPMV_MERGE_PATH is not always a native algorithm. Add
SPMV_NATIVE_MERGE_PATH to cover that case specifically. Test this new
option.

* spgemm unit test: change matrix value distribution (#2241)

Change the distribution A, B values are sampled from so that
values in C can't end up close to 0 (as the result of summing terms
that are larger). The relative error metric in is_same_matrix is sensitive
to this.

Fixes #2232

* kokkoskernels_tpls.cmake: remove duplicates arguments when creating argument for exported INTERFACE_INCLUDE_DIRECTORIES

Attempt to workaround issue #2238

* Sparse - BsrMatrix: adding new wiki example for documentation (#2228)

There is already an example for this but it uses a CrsMatrix as
starting point to build a BsrMatrix which is not really helpful in
general as the hope is that you can use the BsrMatrix without needing
the CrsMatrix as it would double the storage needed...

Addressing Kim's comments

* Sparse - CrsToBsr: fix type mismatch (#2242)

* Update rocsparse algo defaults (#2245)

* Update default spmv algorithms for rocsparse

- Use stream for common cases (default, fast setup) as it has nearly zero
  setup cost and performs well for somewhat balanced matrices
- Use adaptive (which is rocsparse's default) only if SPMV_MERGE_PATH
  is the algorithm, as it has a very high setup cost

* Re-enable rocsparse spmv for SPMV_FAST_SETUP

* In deprecated spmv, fix Controls algorithm mapping (#2246)

native -> SPMV_NATIVE
native-merge -> SPMV_NATIVE_MERGE_PATH
merge -> SPMV_MERGE_PATH
tpl -> SPMV_FAST_SETUP

* Add batched serial tbsv (#2202)

* Add batched serial tbsv

* remove incx argument and use strided views instead

* Add a new line at the end of files

* fix random number generation for complex numbers

* remove unused variables from internal tbsv serial functions

* remove allclose for testing

---------

Co-authored-by: Yuuichi Asahi <[email protected]>

* Bump actions/checkout from 4.1.6 to 4.1.7 (#2248)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/a5ac7e51b41094c92402da3b24376905380afc29...692973e3d937129bcbf40652eb9f2f61becf3332)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.8 to 3.25.10 (#2249)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.8 to 3.25.10.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/2e230e8fe0ad3a14a340ad0815ddb96d599d2aff...23acc5c183826b7a8a97bce3cecc52db901f8251)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* FindTPLROC*: updates to fix export of import targets

Changes for the Rocm tpls to match the handling as done with the Cuda tpls

Should resolve issue #2238

* Fix warning about memcpy (#2252)

When building Stokhos BlockCrs, this util function gave a warning
about memcpy modifying a non-trivially-copyable type. Silence it
by casting to void*

* RCM fixes, improvements (#2254)

* Fix RCM starting vertex issue, improve testing
* apply reversing as labels are computed
instead of at the end. Saves a loop over all the labels
* use min-degree starting vertex within each connected component

* spgemm: add profiling regions to native implementations (#2253)

* spgemm: add profiling regions to native implementations

* Add profiling region to KokkosSPGEMM::KokkosSPGEMM_symbolic

* sparse: replace macros with constexpr bools (#2260)

* Rename `Impl::alignPtr` to `Impl::alignPtrTo`, allow it to infer argument type (#2261)

* KokkosKernels::Impl::alignPtr infers argument type

* Rename KokkosKernels::Impl::alignPtr -> alignPtrTo

* Bump github/codeql-action from 3.25.10 to 3.25.11 (#2263)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.10 to 3.25.11.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/23acc5c183826b7a8a97bce3cecc52db901f8251...b611370bb5703a7efb587f9d136a52ea24c5c38c)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* sparse: spadd_symbolic fences before device values used on host (#2259)

* sparse: spadd_symbolic fences before device values used on host

* sparse: use prefix sum to remove explicit spadd fence

* sycl: use alternative `alignPtrTo` when SYCL is enabled (SpGEMM) (#2262)

* sycl: use alternative alignPtr when SYCL is enabled

The current alignPtr, as well as two other alternatives below, do not work on SYCL on Intel PVC.

unsigned int f1(unsigned int i, unsigned int align) {
    return ((i + align - 1) / align * align);
}

unsigned int f2(unsigned int i, unsigned int align) {
    return (i + align - 1) & (-align);
}

* alignPtrTo unit tests

* Help gcc/8.3 with ctad issue

Resolves #2264

Co-authored-by: Carl Pearson <[email protected]>

* Bump actions/upload-artifact from 4.3.3 to 4.3.4 (#2266)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/65462800fd760344b1a7b4382951275a0abb4808...0b2256b8c012f0828dc542b3febcab082c67f72b)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* handle_t* -> unique_ptr<handle_t> in Bsr SpMV unit tests (#2269)

* Workarounds for removed cusparse functions (#2270)

cusparse 12.5 removed some functions that were deprecated, like the ILU
factorizations and the legacy csrsv (sparse triangular solve) functions.
As a workaround, if the cusparse version is >= 12.5 then disable the paths
in perftests that call those.

* BLAS - gemv: using fallback when mode is 't' or 'c' and onemkl is used (#2272)

* Implement batched serial pttrf (#2256)

* Batched serial pttrf implementation

* fix: use GEMM to add matrices

* fix: initialization order

* fformat

* fix: temporary variable in a test code

* fix: docstring of pttrf

* check_positive_definitiveness only if KOKKOSKERNELS_DEBUG_LEVEL > 0

* Improve the test for pttrf

* fix: int type

* fix: cleanup tests for SerialPttrf

* cleanup: remove unused deep_copies

* fix: docstrings and comments for pttrf

* ConjTranspose with conj and Transpose

* quick return in pttrf for size 1 or 0 matrix

* Add tests for invalid input

* fix: info computation

---------

Co-authored-by: Yuuichi Asahi <[email protected]>

* A little sptrsv cleanup before the main block effort (#2247)

* Some cleanup and refactoring

* First round of cleanup complete

* Fix a couple warnings

* formatting

* Sparse - SpMV: removing calls to unsuported oneapi - MKL functions (#2274)

* Sycl gemv beta (#2276)

* BLAS - GEMV: zero out Y when beta == 0 in SYCL TPL code path

* BLAS - GEMV: reverting wrong change from previous PR, my bad.

* Applying clang-format

* Unify alignPtrTo implementation (#2275)

* init (#2273)

* Bigger sptrsv cleanup (#2280)

* Some cleanup and refactoring
* Remove Upper/Lower TriLvlSchedTP2SolverFunctors
* Remove Upper/Lower single block functors
* Remove unused TriLvlSchedTP1SingleBlockFunctorDiagValues and merge upper/lower tri_solve_cg
* Merge two big upper/lower branch of tri_solve_chain
* Merge upper/lower tri_solve_streams
* Switch over block spiluk precond test to use new block sptrsv

* Bump actions/dependency-review-action from 4.3.3 to 4.3.4 (#2279)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/72eb03d02c7872a771aacd928f3123ac62ad6d3a...5a2ce3f5b92ee19cbb1541a4984c76d921601d7c)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.11 to 3.25.12 (#2278)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.11 to 3.25.12.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/b611370bb5703a7efb587f9d136a52ea24c5c38c...4fa2a7953630fd2f3fb380f21be14ede0169dd4f)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Propose increasing column limit to 120. (#2255)

* Change key files

* Full reformat

* Update format.yml

* Update ubuntu version for format checker

* A couple platforms do not correctly handle static complexes

* .github/workflows: Auto trigger AT2 ci upon review (#2243)

* Bump github/codeql-action from 3.25.12 to 3.25.13 (#2284)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.12 to 3.25.13.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/4fa2a7953630fd2f3fb380f21be14ede0169dd4f...2d790406f505036ef40ecba973cc774a50395aac)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump step-security/harden-runner from 2.8.1 to 2.9.0 (#2283)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.8.1 to 2.9.0.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6...0d381219ddf674d61a7572ddd19d7941e271515c)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add big reformat commits to ignore revs for blame (#2286)

* Bump github/codeql-action from 3.25.13 to 3.25.15 (#2288)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.13 to 3.25.15.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/2d790406f505036ef40ecba973cc774a50395aac...afb54ba388a7dca6ecae48f608c4ff05ff4cc77a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#2287)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Sparse - coo2csr: deactivating test on PVC (#2290)

* Sparse - coo2csr: deactivating test on PVC

With this test deactivated everything in Kokkos Kernels passes.
Let us confirm that with a nightly build and potentially create
of SYCL CI-build.

* Protecting SYCL check with preprocessor guard

* cmake: add CMake language support for CUDA/HIP (#2173)

* cmake: add CMake language support for CUDA/HIP

* Apply suggestions of @brian-kelley

* Make sure clang is using a newer GCC on weaver (#2289)

It's clear from the name of the AT job GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 that
the intent was to use gcc-9.3 but gcc-7.4.0 was the one actually being
used because the clang-13 module loads that gcc.

* Set version number to 4.4.0

* Revert "Changes to enable OneAPI usage with Trilinos build (#2185)"

This reverts commit b87dc951f64463fe5d6d4d886c0496ee804b2715.

* Add support for BSRs to sptrsv (#2281)

* Some cleanup and refactoring

* First round of cleanup complete

* Fix a couple warnings

* formatting

* Cleanup progress

* Fixes

* Remove Upper/Lower TriLvlSchedTP2SolverFunctors

* Remove Upper/Lower single block functors

* Remove unused TriLvlSchedTP1SingleBlockFunctorDiagValues and merge upper/lower tri_solve_cg

* Merge two big upper/lower branch of tri_solve_chain

* Merge upper/lower tri_solve_streams

* progres

* progress

* Progress, test added

* progress and fixes

* prog

* prog but broken

* Prog with debug prints

* Remove extreme debug printing

* works

* all working

* Remove test mangling

* Switch over block spiluk precond test to use new block sptrsv

* More test cleanup

* Fixes for GPU warnings

* Conflicts resolved, still work needed

* builds

* Formatting

* Update work to latest format style

* Remove unused functions. Remove prints. Add barriers

* Minor fixes

* lset is not used

* Fix for clang

* formatting

* New impl approach

* Unset macro

* There's no reason to limit team-policy alg to MAX_VEC_SIZE

* formatting

* Add missing kokkos-inline-funcs

* Fix warnings

* format

* Some compilers throw shadow warnings in static functions (#2297)

* Update changelog for 4.4.00

* Remove SYCL GEMV update

The SYCL GEMV update has been reverted in a later PR as the fix required was for the GEMV algorithm in the Sparse namespace, also known as SpMV. The previous BLAS::gemv fix was reverted

* Add entry for #2281, remove #2185

* docs.yaml: update kokkos version to 4.3.01

* update min kokkos version to 4.3.01

* apply clang-format

* update yaml files to use kokkos v 4.3.01

* github workflow: adding release workflow to have provenance for release artifacts (#2304)

This adds a workflow based on the scorecard recommendation for software provenance.
The workflow requires some manual actions to verify that the signiture in the release is correct.

* update master_history.txt for 4.4.00

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Luc Berger <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>
Co-authored-by: Ernesto Prudencio <[email protected]>
Co-authored-by: Brian Kelley <[email protected]>
Co-authored-by: James Foucar <[email protected]>
Co-authored-by: Junchao Zhang <[email protected]>
Co-authored-by: Damien L-G <[email protected]>
Co-authored-by: Caleb Schilly <[email protected]>
Co-authored-by: Damien L-G <[email protected]>
Co-authored-by: Sean Miller <[email protected]>
Co-authored-by: Vinh Dang <[email protected]>
Co-authored-by: Luc Berger-Vergiat (-EXP) <[email protected]>
Co-authored-by: brian-kelley <[email protected]>
Co-authored-by: eeprude <[email protected]>
Co-authored-by: Wyatt Horne <[email protected]>
Co-authored-by: whorne <[email protected]>
Co-authored-by: Evan Harvey <[email protected]>
Co-authored-by: malphil <[email protected]>
Co-authored-by: Evan Harvey <[email protected]>
Co-authored-by: Malachi <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: yasahi-hpc <[email protected]>
Co-authored-by: Yuuichi Asahi <[email protected]>
Co-authored-by: Daniel Arndt <[email protected]>
Co-authored-by: Baptiste Legouix <[email protected]>
Co-authored-by: Richard Berger <[email protected]>
lucbv added a commit that referenced this pull request Nov 25, 2024
* Fix2130 (#2132)

* Fix #2130

- Do not call BsrMatrix spmv impl if block size is 1
- Instead, convert it to unmanaged CrsMatrix and call spmv again
  - cuSPARSE returned an error code in this case
  - Better performance

* Formatting

* Remove redundant remove_pointer_t

Handle is already a non-pointer type

* Benchmark: modifying spmv benchmark to run range of spmv tests (#2135)

This could be further automated to run on matrix from suite sparse

* Kokkos Kernels: update version guards to drop old version of Kokkos (#2133)

Since we are now in the 4.2 series we only support up to 4.1.00.
Older version of Kokkos Core will require older version of Kokkos
Kernels for compatibility. Once 4.3.00 is out we will move to
drop support for the 4.1 series and only keep 4.2 and 4.3 series.

* ODE: BDF methods (#1930)

* ODE: adding BDF algorithms

Implementing BDF formula for stiff ODEs.
Orders 1 to 5 are available and tested.
The integrators can be called on GPU to
solve multiple systems in parallel.

* ODE: fixing storage handling for start-up RK stack

* ODE: clang-format

* ODE: first adaptive version of BDF

The current implementation only allows for adaptivity in time,
at this point the BDF Step actually converges as expected with
first order integration!

* ODE: fixing issues with adaptive BDF

The unit-test BDF_adaptive now shows the integration
of the logistic equation using adaptive time steps and
increasing integration order from 1 to 5.

* ODE: running BDF on StiffChemistry problem

The problem runs fine and is solved but there are oscillations
while the behavior of the solution is smooth. More investigation
is needed...

* BDF: fixing types and template parameters in batched calls

Bascially we need template parameters to be more versatile
and cannot assume that all rank1 views will have the exact
same underlying type, for instance layouts can be different.

* More fixes for GPUs only in tests this time.

* ODE: BDF adaptive, fix small bug

After adding rhs and update vectors to temp the subviews taken for
other variables need to be offset appropriately...

* Revert "More fixes for GPUs only in tests this time."

This reverts commit 2f70432761485bc6a4c65a1833e7299dd2c340e2.

* Revert "Revert "More fixes for GPUs only in tests this time.""

This reverts commit 836012bb529551727b3f5913057acad94dfe60df.

* ODE: BDF small change to temporarily avoid compile time issue

True fix involving a KOKKOS_VERSION check is upcoming after more
tests on GPU side...

* ODE: BDF fix for some printf statements that will go away soon...

* ODE: adding benchmark for BDF

The benchmark helps us monitor the performance of the BDF
implementaiton across multiple platforms as well as impact of
changes over time.

* ODE: improve benchmark interface...

* ODE: BDF changes to use RMS norm and change some default values

Small changes to compare more closely with reference implementation.
Some of these might be reverted eventually but that's fine for now.

* ODE: BDF convergence more stable and results look pretty good now!

Changing the Newton solver convergence criteria as well as changing
a few default input parameters leads to a more stable algorithms
which can now integrate the stiff Henderson autocatalytic example
well in 66 time steps instead of 200k for fixed order integration...

* ODE: BDF fix bug in initial time step calculation

The initial step routine was overwriting the initial right hand side
which led to obvious issues further down the road... now things should
work fine. Need to figure out if I can re-initialize the variables in
the perf test while excluding that time from each iteration.

* ODE: BDF removing bad print statement...

std::cout in device code

* ODE - BDF: improving perf test

Basically adding new untimed setup within the main loop of the
benchmark to reset the intial conditions, buffers and vectors
ahead of each iteration.

* Modifying unit-test to catch proper return type

* Applying clang-format

* cm_test_all_sandia: update caraway compilers

add rocm/5.6.1 and rocm/6.0.0, and openblas/0.3.23 as tpl

* Sparse MKL: changing the location of the MKL_SAFE_CALL macro (#2134)

* Sparse MKL: changing the location of the MKL_SAFE_CALL macro

Moving the macro outside of namespaces to ensure that it will be
interpreted correctly when called from any other location in the
library.

It does not make much sense to guard Impl code in the Experimental
namespace and in this case it cleans up a problem with namespace
disambiguation for the compiler...

* Sparse BsrSpMV: removing Experimental namespace from Impl namespace

* Applying clang-format

* Sparse SpMV: fixing more namespace issues!

* Fixing missing descriptor for bsr spmv

* Kokkos Kernels: change the default offset ETI from size_t to int (#2140)

This change makes it easier for customer to leverage TPL support
which almost always requires offset=int, ordinal=int to be enabled
meaning that no TPL support is available with our default ETI...

* KokkosSparse_spmv_bsrmatrix_spec: fix Bsr_TC_Precision namespacing

Resolve compilation errors in nightly cuda/12.2 A100 build

* Drop comment for cleaner clang-format fix

* Fix usage of RAII to set cusparse/rocsparse stream (#2141)

Temporary objects like "A()" get destructed immediately.
For the object to have scope lifetime, it needs a name like "A a();".
This was causing cusparse/rocsparse spmv to always execute on the default stream,
causing incorrect timing in the spmv perf test.

* Use execution space operator== (#2136)

It actually is part of the public interface

* cm_test_all_sandia: more caraway module updates and cleanup (#2145)

* Spmv perftest improvements (#2146)

* Spmv perf test improvements

- Add option to flush caches by filling a dummy buffer between
iterations
- Add option to call the non-reuse interface instead of handle/reuse
interface
- Fix modes T, H in nonsquare case (make x,y the correct length)

* Fix mode help text

* KokkosKernels Utils: cleaning the zero_vector interface

One of the overload requires an unused template, removing that
extraneous template and simplify how that function is called in
a second overload.

* Kokkos Kernels: fixing call to zero_vector in Gauss-Seidel

* CMakeLists.txt: Update develop to 4.3.99

* Address reviewer comments

* Update CMakeLists.txt

Co-authored-by: brian-kelley <[email protected]>

* cm_test_all_sandia: solo updates

module updates post TOSS upgrade

* Fix signed/unsigned comparison warnings (#2150)

This is only hit when spmv is called with integer scalars,
which doesn't happen in our CI but does often in Tpetra.

* SPMV tpl fixes, cusparse workaround (#2152)

* SPMV tpl fixes, workaround

* Avoid possible integer conversion warnings

* Document cusparseSpMM algos that were tested

* Applying clang-format

* Use default_size_type as default offset in matrix types (#2149)

Now a declaration like CrsMatrix<Scalar, Ordinal, Device>
will by default use an ETI'd type combination (as int is the default
ETI'd offset)

* spmv bsr perftest: move fences to right place (#2153)

* Kokkos Kernels: removing old code branches ahead of 4.3.00 release (#2139)

Some old code branches kept for compatibility with Kokkos Core
versions less than 4.2.00 are dropped after release 4.3.00.
The largest changes are the removal of support the Kokkos print
macro in favor of Kokkos::printf() and the removal of half support
from Kokkos Kernels since it is now in Kokkos Core.

* Code for running performance measurements on ger() (#2082)

* Correct flop count

* Addressing feedbacks from Luc

* Using 'zero()' instead of '0.'

* KokkosBlas1_axpby.hpp: change debug macro guard for printInformation (#2157)

* KokkosBlas1_axpby.hpp: change debug macro guard for printInformation

- resolves test failures in Trilinos (MueLu) that rely on gold file diff
comparisons by removing extra output in debug builds

* fix compilation error

* Add user tolerance to Serial SVD (#2120)

* Add user tolerance to Serial SVD
---------

Co-authored-by: whorne <[email protected]>
Co-authored-by: Carl Pearson <[email protected]>

* Add a simple Harwell-Boeing file reader (#2155)

* Add a simple Harwell-Boeing file reader

And a test that validates against the MM reader.

* Support for symmetrize

* This loop can be simplified, there's no diag duplication

* Improve IO test

* spmv tpls: use correct bool for eti template param (#2160)

(It should just be the default,
KokkosSpars::Impl::eti_spec_avail<..>::value)

* Fix sparse_ioutils test on kokkos-dev (#2162)

Adding a ss.sync call fixes it but I have no idea why it
was needed here. All the other stringstream reads work fine.

* Fix #2156 (#2164)

spmv: add special path for rank-2 x/y, but where both have 1 column
and a TPL is available for rank-1 but not rank-2.

Also call "subhandle->set_exec_space" correctly in the TPLs to ensure
proper synchronization between setup, spmv and cleanup (in the case that
different exec instances are used in different calls)

* Updates from feedback runnig Trilinos testing

- Update debug level to > 1 guarding `printInformation(...)` in
  KokkosBlas1_axpby.hpp to reduce noisy test output
- Loosen tolerance of lapack.svd test to avoid random failures that
  occur near prior tolerance level

* Fix #2167: classic MKL doesn't use space instance (#2168)

* CHANGELOG.md: 4.3.00 update

* KokkosLapack_svd_tpl_spec_decl: defer to MKL spec when LAPACK also enabled

Resolves redefintion of struct SVD compilation errors with both MKL and LAPACK are enabled
Reported by @maartenarnst in https://github.com/trilinos/Trilinos/issues/12891

Co-authored-by: brian-kelley <[email protected]>

* .github/workflows: Added bdw.yml

* .github/workflows: Added spr.yml

* .github/workflows: Added mi210.yml

* .github/workflows: Added h100.yml

* .github/workflows: Added volta70.yml

* .github/workflows: Added power9.yml and power9_tpls.yml

* Jgfouca/block spiluk fixes (#2172)

* Progress

* Attempt 1, fix multiplication order

* Converges in 1 step

* Various cleanups

* Be sure not to reduce performance of unblocked impl

Also add some comments.

* Remove test mangling

* Fixes for GPU

* Fix warning

* formatting

* Increase eps for floats

* This is no longer needed

* .github/workflows: Add PR_VEGA908_ROCM561_HIP_SERIAL_LEFT_OPENBLAS_OPENLAPACK_REL

* Add guard for cusparse spmv_mv_tpl_spec_avail

Address issue #2175
Configuring with magma tpl enabled and cusparse disabled mistakenly triggers the cusparse tpl avail check to be true
Guard the KOKKOSSPARSE_SPMV_MV_TPL_SPEC_AVAIL_CUSPARSE macros when CUSPARSE is enabled to prevent this

* .github/workflows: Remove OPENLAPACK from names

* .github/workflows: Remove power9 until we have hardware to test it on

* .github/workflows: Enable rocblas in rocm tpl check

* .github/workflows: Remove volta70 until we have hardware to test it on

* Add early return if numRows == 0 in trsv to avoid integer divide-by-zero error

* Resolves multiple definition of Magma and Cuda singletons (#2178)

Address issue #2175

* magma: fix linker errors for builds without cusolver (#2181)

* magma: fix linker errors for builds without cusolver

* BatchedGemm test: workaround testing cublas+magma

- temporary workaround to skip magma test when cublas enabled to avoid issues like #2177

* .github/workflows/mi210: Fix include paths

* workflows/osx.yml: test against most recent kokkos tag

- test against most recent kokkos release rather than develop branch, as
  done with AT CI, to avoid compatibility breakages

* Resolve vortex compilation issue by resolving (potentially) duplicate symbol (#2183)

Stick to pattern of removing leading 'c' or 'z' in method name and relying on the template type

Co-authored-by: malphil <[email protected]>

* Changes to enable OneAPI usage with Trilinos build (#2185)

- Get rid of SYCL_OVERRIDE setting
- Add MKL_PROVIDES_BLAS_LAPACK cmake variable and define so that
  code knows whether to use int, or MKL_INT
  - Trilinos builds might link with OneAPI for GPU but standard
    BLAS/LAPACK on CPU

* Fix macOS docs build (#2190)

* Fix docs build

* try docs fix

* make sphinx available at config time

* GH-Actions: adding security actions and scorecard (#2192)

Pretty much taking the new files from PR #2191 and re-creating
it in a clean PR on top of develop with small changes relevant
to our repository.

Cleaning up some workflows to tailor it for our needs

* Scorecard: adding manual dispatch and target default branch (#2195)

* BsrMatrix: Fix HostMirror typedef (#2196)

It needed to have size_type.

* update changelog for 4.3.1

* Update CHANGELOG.md

* docs.yml: change kokkos version to latest release

- avoid version range check issues for release tests

* Sparse - SpGEMM: labeling spgemm_symbolic in TPL layer a bit more clearly (#2193)

This just improves the readability of the output from the tools as it now
has a symbolic matching the numeric phase. Previously we only had spgemm
in the label which is a bit confusing as it could be the whole spgemm time
i.e. both symbolic and numeric, additionally we had symbolic in the MKL
path but not in cusparse, rocsparse...

* SpMV: Test NaN, fix NaN handling when beta=0 (#2188)

* Test_Sparse_spmv_bsr.hpp: add NaNs to tests

* handle NaN in spmv_beta_transpose when beta=0

* handle nan in SpmvMergeHierarchical when beta=0

* Test NaNs in Y, don't reuse modifed Y, catch NaNs in results test

* remove unused <iostream> include

* explicit casting of zero

* Test_sparse_spmv.hpp: remove unused nans parameter

* KokkosSparse_spmv.hpp: CUDA11 can't detect this function always returns

* Test_Sparse_spmv.hpp: remove unused variable

* Run unit tests in correct execution space

* Test_Sparse_spmv.hpp: remove unused type aliases

* Kokkos::nan() -> KokkosKernels::Impl::quiet_NaN()

* Disable cuBLAS dot wrapper (#2206)

(not deleted, just guarded with #if 0 and comments explaining)

It performs significantly worse than our native impl on 11.2, 11.8 and 12.0 on V100.
This is in the dot perf test with a warm-up call.

https://github.com/trilinos/Trilinos/issues/12982 was a symptom of this.

* Fix spmv regressions (#2204)

* Restore cusparse spmv ALG2 path for imbalanced

With correct version cutoffs

* spmv: use separate rank-1 and rank-2 tpl subhandles

* Remove redundant single-column path in native spmv_mv

* Fix unused param warning

* c++17: add [[fallthrough]] attribute (#1493)

* c++17: add [[fallthrough]] attribute

* cm_test_all_sandia: -Wimplicit-fallthrough

* Enable 3 at2 builds (#2210)

* .github/mi210: Enable on PRs

* .github/mi210: Disable non-tpl build

* .github/bdw: Enable PR_BDW_GNU1020_OPENMP_SERIAL_LEFT_OPENBLAS_REL

* .github/h100: Enable PR_HOPPER90_CUDA1180_CUDA_LEFT_RIGHT_REL

* Bump ossf/scorecard-action from 2.0.6 to 2.3.3 (#2214)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.0.6 to 2.3.3.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](https://github.com/ossf/scorecard-action/compare/99c53751e09b9529366343771cc321ec74e9bd3d...dc50aa9510b46c811795eb24b2f1ba02a914e534)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 3.1.3 to 4.3.3 (#2215)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.3.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/a8a3f3ad30e3422c9c7b888a15615d19a852ae32...65462800fd760344b1a7b4382951275a0abb4808)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/dependency-review-action from 2.5.1 to 4.3.2 (#2217)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 2.5.1 to 4.3.2.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/0efb1d1d84fc9633afcdaad14c485cbbc90ef46c...0c155c5e8556a497adf53f2c18edabf945ed8e70)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump step-security/harden-runner from 2.7.1 to 2.8.0 (#2218)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.7.1 to 2.8.0.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/a4aa98b93cab29d9b1101a6143fb8bce00e2eac4...f086349bfa2bd1361f7909c78558e816508cdc10)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 2.25.3 to 3.25.6 (#2216)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.25.3 to 3.25.6.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/ceaec5c11a131e0d282ff3b6f095917d234caace...9fdb3e49720b44c48891d036bb502feb25684276)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Kokkos Kernels: initial security policy (#2220)

We state were patches will be made and how to report security vulnerabilities to the project.

* Kokkos Kernels: adding SHA for github actions (#2221)

* Kokkos Kernels: adding SHA for github actions

* Adding sha for docker images

* More dependencies fix (#2222)

* workflows: fix sha for label checker docker image

* workflows: fixing Docker files dependencies.

* Fix Docker files (#2223)

* SPMV TPLs: improve profile region labels (#2219)

- Mark rank-2 versions as "spmv_mv" not "spmv" (the native impl has
  this, and it's useful to know which one is being run)
- Add missing commas separating "BSRMATRIX" and the scalar type name

* cusparse spgemm: provide non-null row-ptr (#2213)

* Bump github/codeql-action from 3.25.6 to 3.25.7 (#2225)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.6 to 3.25.7.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/9fdb3e49720b44c48891d036bb502feb25684276...f079b8493333aace61c81488f8bd40919487bd9f)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 3.6.0 to 4.1.6 (#2226)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.1.6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/f43a0e5ff2bd294095638e18286ca9a3d1956744...a5ac7e51b41094c92402da3b24376905380afc29)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* README: adding link to scorecard (#2230)

* spmv_mv wrappers for rocsparse (#2233)

* spmv_mv wrappers for rocsparse (rocsparse_spmm())

* Use consistent types for alpha/beta in spmv wrappers

* Bump step-security/harden-runner from 2.8.0 to 2.8.1 (#2236)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.8.0 to 2.8.1.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/f086349bfa2bd1361f7909c78558e816508cdc10...17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.7 to 3.25.8 (#2237)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.7 to 3.25.8.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/f079b8493333aace61c81488f8bd40919487bd9f...2e230e8fe0ad3a14a340ad0815ddb96d599d2aff)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/dependency-review-action from 4.3.2 to 4.3.3 (#2235)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/0c155c5e8556a497adf53f2c18edabf945ed8e70...72eb03d02c7872a771aacd928f3123ac62ad6d3a)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add testing for transpose corner cases (#2234)

* Add testing for transpose corner cases

crs, bsr, graph: test cases that are 0x0, 100x0 and 0x100. In these cases make
sure the matrix generator doesn't try to insert any entries (nnz = 0).

* Update sparse/unit_test/Test_Sparse_Transpose.hpp

Co-authored-by: Luc Berger <[email protected]>

* Update sparse/unit_test/Test_Sparse_Transpose.hpp

Co-authored-by: Luc Berger <[email protected]>

---------

Co-authored-by: Luc Berger <[email protected]>

* Graph: removing executable from repo (#2239)

* Fix logic around merge path with TPLs (#2240)

SPMV_MERGE_PATH is not always a native algorithm. Add
SPMV_NATIVE_MERGE_PATH to cover that case specifically. Test this new
option.

* spgemm unit test: change matrix value distribution (#2241)

Change the distribution A, B values are sampled from so that
values in C can't end up close to 0 (as the result of summing terms
that are larger). The relative error metric in is_same_matrix is sensitive
to this.

Fixes #2232

* kokkoskernels_tpls.cmake: remove duplicates arguments when creating argument for exported INTERFACE_INCLUDE_DIRECTORIES

Attempt to workaround issue #2238

* Sparse - BsrMatrix: adding new wiki example for documentation (#2228)

There is already an example for this but it uses a CrsMatrix as
starting point to build a BsrMatrix which is not really helpful in
general as the hope is that you can use the BsrMatrix without needing
the CrsMatrix as it would double the storage needed...

Addressing Kim's comments

* Sparse - CrsToBsr: fix type mismatch (#2242)

* Update rocsparse algo defaults (#2245)

* Update default spmv algorithms for rocsparse

- Use stream for common cases (default, fast setup) as it has nearly zero
  setup cost and performs well for somewhat balanced matrices
- Use adaptive (which is rocsparse's default) only if SPMV_MERGE_PATH
  is the algorithm, as it has a very high setup cost

* Re-enable rocsparse spmv for SPMV_FAST_SETUP

* In deprecated spmv, fix Controls algorithm mapping (#2246)

native -> SPMV_NATIVE
native-merge -> SPMV_NATIVE_MERGE_PATH
merge -> SPMV_MERGE_PATH
tpl -> SPMV_FAST_SETUP

* Add batched serial tbsv (#2202)

* Add batched serial tbsv

* remove incx argument and use strided views instead

* Add a new line at the end of files

* fix random number generation for complex numbers

* remove unused variables from internal tbsv serial functions

* remove allclose for testing

---------

Co-authored-by: Yuuichi Asahi <[email protected]>

* Bump actions/checkout from 4.1.6 to 4.1.7 (#2248)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/a5ac7e51b41094c92402da3b24376905380afc29...692973e3d937129bcbf40652eb9f2f61becf3332)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.8 to 3.25.10 (#2249)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.8 to 3.25.10.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/2e230e8fe0ad3a14a340ad0815ddb96d599d2aff...23acc5c183826b7a8a97bce3cecc52db901f8251)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* FindTPLROC*: updates to fix export of import targets

Changes for the Rocm tpls to match the handling as done with the Cuda tpls

Should resolve issue #2238

* Fix warning about memcpy (#2252)

When building Stokhos BlockCrs, this util function gave a warning
about memcpy modifying a non-trivially-copyable type. Silence it
by casting to void*

* RCM fixes, improvements (#2254)

* Fix RCM starting vertex issue, improve testing
* apply reversing as labels are computed
instead of at the end. Saves a loop over all the labels
* use min-degree starting vertex within each connected component

* spgemm: add profiling regions to native implementations (#2253)

* spgemm: add profiling regions to native implementations

* Add profiling region to KokkosSPGEMM::KokkosSPGEMM_symbolic

* sparse: replace macros with constexpr bools (#2260)

* Rename `Impl::alignPtr` to `Impl::alignPtrTo`, allow it to infer argument type (#2261)

* KokkosKernels::Impl::alignPtr infers argument type

* Rename KokkosKernels::Impl::alignPtr -> alignPtrTo

* Bump github/codeql-action from 3.25.10 to 3.25.11 (#2263)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.10 to 3.25.11.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/23acc5c183826b7a8a97bce3cecc52db901f8251...b611370bb5703a7efb587f9d136a52ea24c5c38c)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* sparse: spadd_symbolic fences before device values used on host (#2259)

* sparse: spadd_symbolic fences before device values used on host

* sparse: use prefix sum to remove explicit spadd fence

* sycl: use alternative `alignPtrTo` when SYCL is enabled (SpGEMM) (#2262)

* sycl: use alternative alignPtr when SYCL is enabled

The current alignPtr, as well as two other alternatives below, do not work on SYCL on Intel PVC.

unsigned int f1(unsigned int i, unsigned int align) {
    return ((i + align - 1) / align * align);
}

unsigned int f2(unsigned int i, unsigned int align) {
    return (i + align - 1) & (-align);
}

* alignPtrTo unit tests

* Help gcc/8.3 with ctad issue

Resolves #2264

Co-authored-by: Carl Pearson <[email protected]>

* Bump actions/upload-artifact from 4.3.3 to 4.3.4 (#2266)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/65462800fd760344b1a7b4382951275a0abb4808...0b2256b8c012f0828dc542b3febcab082c67f72b)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* handle_t* -> unique_ptr<handle_t> in Bsr SpMV unit tests (#2269)

* Workarounds for removed cusparse functions (#2270)

cusparse 12.5 removed some functions that were deprecated, like the ILU
factorizations and the legacy csrsv (sparse triangular solve) functions.
As a workaround, if the cusparse version is >= 12.5 then disable the paths
in perftests that call those.

* BLAS - gemv: using fallback when mode is 't' or 'c' and onemkl is used (#2272)

* Implement batched serial pttrf (#2256)

* Batched serial pttrf implementation

* fix: use GEMM to add matrices

* fix: initialization order

* fformat

* fix: temporary variable in a test code

* fix: docstring of pttrf

* check_positive_definitiveness only if KOKKOSKERNELS_DEBUG_LEVEL > 0

* Improve the test for pttrf

* fix: int type

* fix: cleanup tests for SerialPttrf

* cleanup: remove unused deep_copies

* fix: docstrings and comments for pttrf

* ConjTranspose with conj and Transpose

* quick return in pttrf for size 1 or 0 matrix

* Add tests for invalid input

* fix: info computation

---------

Co-authored-by: Yuuichi Asahi <[email protected]>

* A little sptrsv cleanup before the main block effort (#2247)

* Some cleanup and refactoring

* First round of cleanup complete

* Fix a couple warnings

* formatting

* Sparse - SpMV: removing calls to unsuported oneapi - MKL functions (#2274)

* Sycl gemv beta (#2276)

* BLAS - GEMV: zero out Y when beta == 0 in SYCL TPL code path

* BLAS - GEMV: reverting wrong change from previous PR, my bad.

* Applying clang-format

* Unify alignPtrTo implementation (#2275)

* init (#2273)

* Bigger sptrsv cleanup (#2280)

* Some cleanup and refactoring
* Remove Upper/Lower TriLvlSchedTP2SolverFunctors
* Remove Upper/Lower single block functors
* Remove unused TriLvlSchedTP1SingleBlockFunctorDiagValues and merge upper/lower tri_solve_cg
* Merge two big upper/lower branch of tri_solve_chain
* Merge upper/lower tri_solve_streams
* Switch over block spiluk precond test to use new block sptrsv

* Bump actions/dependency-review-action from 4.3.3 to 4.3.4 (#2279)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/72eb03d02c7872a771aacd928f3123ac62ad6d3a...5a2ce3f5b92ee19cbb1541a4984c76d921601d7c)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.11 to 3.25.12 (#2278)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.11 to 3.25.12.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/b611370bb5703a7efb587f9d136a52ea24c5c38c...4fa2a7953630fd2f3fb380f21be14ede0169dd4f)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Propose increasing column limit to 120. (#2255)

* Change key files

* Full reformat

* Update format.yml

* Update ubuntu version for format checker

* A couple platforms do not correctly handle static complexes

* .github/workflows: Auto trigger AT2 ci upon review (#2243)

* Bump github/codeql-action from 3.25.12 to 3.25.13 (#2284)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.12 to 3.25.13.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/4fa2a7953630fd2f3fb380f21be14ede0169dd4f...2d790406f505036ef40ecba973cc774a50395aac)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump step-security/harden-runner from 2.8.1 to 2.9.0 (#2283)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.8.1 to 2.9.0.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6...0d381219ddf674d61a7572ddd19d7941e271515c)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add big reformat commits to ignore revs for blame (#2286)

* Bump github/codeql-action from 3.25.13 to 3.25.15 (#2288)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.13 to 3.25.15.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/2d790406f505036ef40ecba973cc774a50395aac...afb54ba388a7dca6ecae48f608c4ff05ff4cc77a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ossf/scorecard-action from 2.3.3 to 2.4.0 (#2287)

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)

---
updated-dependencies:
- dependency-name: ossf/scorecard-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Sparse - coo2csr: deactivating test on PVC (#2290)

* Sparse - coo2csr: deactivating test on PVC

With this test deactivated everything in Kokkos Kernels passes.
Let us confirm that with a nightly build and potentially create
of SYCL CI-build.

* Protecting SYCL check with preprocessor guard

* cmake: add CMake language support for CUDA/HIP (#2173)

* cmake: add CMake language support for CUDA/HIP

* Apply suggestions of @brian-kelley

* Make sure clang is using a newer GCC on weaver (#2289)

It's clear from the name of the AT job GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10 that
the intent was to use gcc-9.3 but gcc-7.4.0 was the one actually being
used because the clang-13 module loads that gcc.

* Bump actions/upload-artifact from 4.3.4 to 4.3.5 (#2295)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.4 to 4.3.5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/0b2256b8c012f0828dc542b3febcab082c67f72b...89ef406dd8d7e03cfd12d9e0a4a378f454709029)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* SpAdd handle: delete sort_option getter/setter (#2296)

SpAdd handle was originally a copy-paste of the spgemm
handle way back in #122, and included get_sort_option() and
set_sort_option() from spgemm. But these try to use the member
bool sort_option, which doesn't exist. Somehow these functions never
produced compile errors until someone tried to call them.

* Add support for BSRs to sptrsv (#2281)

* Some cleanup and refactoring

* First round of cleanup complete

* Fix a couple warnings

* formatting

* Cleanup progress

* Fixes

* Remove Upper/Lower TriLvlSchedTP2SolverFunctors

* Remove Upper/Lower single block functors

* Remove unused TriLvlSchedTP1SingleBlockFunctorDiagValues and merge upper/lower tri_solve_cg

* Merge two big upper/lower branch of tri_solve_chain

* Merge upper/lower tri_solve_streams

* progres

* progress

* Progress, test added

* progress and fixes

* prog

* prog but broken

* Prog with debug prints

* Remove extreme debug printing

* works

* all working

* Remove test mangling

* Switch over block spiluk precond test to use new block sptrsv

* More test cleanup

* Fixes for GPU warnings

* Conflicts resolved, still work needed

* builds

* Formatting

* Update work to latest format style

* Remove unused functions. Remove prints. Add barriers

* Minor fixes

* lset is not used

* Fix for clang

* formatting

* New impl approach

* Unset macro

* There's no reason to limit team-policy alg to MAX_VEC_SIZE

* formatting

* Add missing kokkos-inline-funcs

* Fix warnings

* format

* Some compilers throw shadow warnings in static functions (#2297)

* Update Solo GCC version: 10.2.1 -> 10.3.1 (#2300)

* github workflow: adding release workflow to have provenance for release artifacts (#2304)

This adds a workflow based on the scorecard recommendation for software provenance.
The workflow requires some manual actions to verify that the signiture in the release is correct.

* Improve crs/bsr sorting performance (#2293)

* CRS sorting improvements

- Wrote bulk sort/permutation based sorting for CRS graph, matrix, and
  BSR matrix (bulk = one large sort of all the entries, using row-major
  dense index as keys)
  - This is more performant for imbalanced entries per row
- If matrix dimensions are too large to do bulk sort, fall back to
  sorting within each row with a thread.

* Add perf test for sort_crs_matrix
* sort_crs: improve parallel labels
* Work around kokkos issue 7036
* sort_crs: replace radix sort lambda with functor
(Lambda segfaults with nvcc+openmp)
---------
Signed-off-by: Brian Kelley <[email protected]>

* Don't error out if graph unit tests disabled (#2305)

Graph unit tests, with TEST_ETI_ONLY=ON, require double and/or
float to be enabled as scalars. Instead of erroring out the configure,
just give a warning and disable the graph tests.

* Update version to 4.4.99 (#2302)

* Update version to 4.4.99

Update min kokkos version to 4.3.01

* update workflows yaml files to test with [email protected]

* Deprecate redundant team-level sort functions (#2306)

* Deprecate redundant team-level sort functions

These were moved into Kokkos core a long time ago with a nicer
interface and better testing. Replace our implementations with calls
to the Kokkos functions like Kokkos::Experimental::sort_team.

* Formatting

Signed-off-by: Brian Kelley <[email protected]>

* Use our own DefaultComparator, not use Kokkos impl

---------

Signed-off-by: Brian Kelley <[email protected]>

* Bump actions/upload-artifact from 4.3.5 to 4.3.6 (#2307)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.5 to 4.3.6.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/89ef406dd8d7e03cfd12d9e0a4a378f454709029...834a144ee995460fba8ed112a2fc961b36a5ec5a)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump step-security/harden-runner from 2.9.0 to 2.9.1 (#2309)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.9.0 to 2.9.1.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/0d381219ddf674d61a7572ddd19d7941e271515c...5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.25.15 to 3.26.0 (#2308)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.15 to 3.26.0.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/afb54ba388a7dca6ecae48f608c4ff05ff4cc77a...eb055d739abdc2e8de2e5f4ba1a8b246daa779aa)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Eti extern marking (#2292)

* ETI: adding headers for template instantiation declarations

* ETI: adding more decl files to eti

Now all the sparse kernels have an ETI decl file to prevent
multiple template instantiation.

* ETI: adding BLAS kernels that are called from Sparse kernels.

* Fixing CMAKE logic

* clang-format

* ETI work: finish the declarations for BLAS and adding GRAPH, LAPACK and BATCHED

* clang-format

* Fixing two headers and rename Nrm2w<2-D> as Nrm2w_mv

* update changelog for 4.4.00 (#2310)

* Bump github/codeql-action from 3.26.0 to 3.26.2 (#2311)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.0 to 3.26.2.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/eb055d739abdc2e8de2e5f4ba1a8b246daa779aa...429e1977040da7a23b6822b13c129cd1ba93dbb2)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Restore size_t as default offset, in Tribits builds (#2313)

If building KokkosKernels standalone, leave int as the default offset
(this was the case since #2140). But if building KokkosKernels as a
Trilinos/Tribits package, then make size_t the default offset because
this is what the Tpetra stack currently uses.

Signed-off-by: Brian Kelley <[email protected]>

* Improve GH action to produce release artifacts (#2312)

* Fix minor typing error. (#2314)

* Bump github/codeql-action from 3.26.2 to 3.26.5 (#2315)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.2 to 3.26.5.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/429e1977040da7a23b6822b13c129cd1ba93dbb2...2c779ab0d087cd7fe7b826087247c2c81f27bfa6)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Implement batched serial pttrs (#2277)

* Implement batched serial pttrs

* Add tests for pttrs

* Add tag for pttrs

* fix: remove unnecessary specialization for pttrs internal

* format

* format

---------

Co-authored-by: Yuuichi Asahi <[email protected]>

* .github/workflows: Group jobs under common github-AT2 name (#2320)

* coo2csr: add parens to function calls (#2318)

* Bump github/codeql-action from 3.26.5 to 3.26.6 (#2323)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.5 to 3.26.6.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/2c779ab0d087cd7fe7b826087247c2c81f27bfa6...4dd16135b69a43b6c8efb853346f8437d92d3c93)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/upload-artifact from 4.3.6 to 4.4.0 (#2324)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.6 to 4.4.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/834a144ee995460fba8ed112a2fc961b36a5ec5a...50769540e7f4bd5e21e526ee35c689e35e0d6874)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add MAGMA TPL support for GESV on HIP backend (#2326)

* Small changes for MAGMA GESV on HIP

* Apply clang-format

* Relax eps to 1e-8 for multi-rhs tests

---------

Co-authored-by: Vinh Quang Dang (-EXP) <[email protected]>

* implement batched serial pbtrf (#2322)

* implement batched serial pbtrf

* fix: docstring

* Add tests for info

* fix CodeQL

* fix: type

* Add a analytical test case for pbtrf

---------

Co-authored-by: Yuuichi Asahi <[email protected]>

* remove unneeded volatile qualifier for Kokkos::Single (#2333)

* AT-2: adding non-TPL build for HIP backend (#2329)

* AT-2: adding non-TPL build for HIP backend

Clean-up a few things in the mi210 workflow as well should
make it a little bit more readable and maintainable.

* AT-2: updating hip no tpl runs-on tag

By reusing the same tag this should allow the job to run without issues
with the same runner as the tpl job.

* removing tabs and putting whitespaces instead

* hopefully fixing paths in mi210.yml

* AT-2: using env variable to get abs path, let's see...

* replacing tabs with whitespaces

* AST-2: Fixing mkdir?

* removing a tab...

* Fix typo in working-directory for kokkos build step

* another fix to a path

* Fixing quotation...

* Fixing working-dir which is already in $GITHUB_WORKSPACE

* fixing path in the kokkos-kernels configure step

* Fixing configure step for tpl build

* Bump github/codeql-action from 3.26.6 to 3.26.7 (#2338)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.6 to 3.26.7.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/4dd16135b69a43b6c8efb853346f8437d92d3c93...8214744c546c1e5c8f03dde8fab3a7353211988d)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump step-security/harden-runner from 2.9.1 to 2.10.1 (#2339)

Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.9.1 to 2.10.1.
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](https://github.com/step-security/harden-runner/compare/5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde...91182cccc01eb5e619899d80e4e971d6181294a7)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update changelog for 4.4.01 (#2340)

* Bump github/codeql-action from 3.26.7 to 3.26.8 (#2343)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.7 to 3.26.8.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/8214744c546c1e5c8f03dde8fab3a7353211988d...294a9d92911152fe08befb9ec03e240add280cb3)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.26.8 to 3.26.9 (#2348)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.8 to 3.26.9.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/294a9d92911152fe08befb9ec03e240add280cb3...461ef6c76dfe95d5c364de2f431ddbd31a417628)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* .github/workflows: Add remaining spr and bdw checks (#2321)

* .github/workflows: Add llvm1001 and inteloneapi AT2 checks

* .github/workflows: Enable gcc10 AT2 builds

* .github/workflows: Stage volta70 checks

* .github/workflows: Test spr against kokkos 4.3.01

* .github/workflows: Specify ETI types for spr

* .github/workflows: Disable two of the GNU1020 builds

* Add KokkosKernels::eager_initialize() to common (#2317)

* Add KokkosKernels::eager_initialize() to common

* Formatting

* TPL singletons: allow query of whether initialized

And test KokkosKernels::eager_initialize() using this

* Fix magma build

- build TPL singleton file into library when magma's enabled
- include correct magma TPL header with declarations, not definitions

* Modify validity checks for output views sizes in svd (#2350)

* Modify validity check for output views sizes in svd

* Apply clang format

* Apply clang format

* kk_is_gpu_exec_space() -> is_gpu_exec_space_v (#2354)

* Fix #2344: SVD hanging (#2345)

* Fix #2344: hang in SerialSVD

Add test for the case that failed.

* Add more SVD tests to exercise corner cases

Used temporary printfs in the two zero-diagonal codepaths to make
sure they are now covered by testing

* Revert replacing spadd example with reproducer

* Clean up debug printouts

* Fix -Wshadow

* SVD: Add more rank-deficient test cases

* Last fix for SVD, test cleanup

* SVD test fixes

* Comment both test cases from issue 2344

* workflow: adding permissions in workflow files (#2357)

This should make the OSS scorecard a little happier?

Signed-off-by: Luc <[email protected]>

* Bypass bulk sort in KokkosSparse::sort_crs_matrix sometimes (#2353)

* set [[maybe_unused]] attribute on mySys (#2355)

* Fix compilation error, kk_is_gpu_exec_space->is_gpu_exec_space_v (#2358)

Apply change consistent with PR #2354

* Bump github/codeql-action from 3.26.9 to 3.26.11 (#2360)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.9 to 3.26.11.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/461ef6c76dfe95d5c364de2f431ddbd31a417628...6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* sparse_sort_crs: fix column shuffle indices (#2346)

* random_shuffle -> shuffle

random_shuffle is deprecated / removed

* sparse_sort_crs: Fix row begin/end offset in entry shuffle

* workflows: fixing some action versions using current sha (#2361)

* Bump actions/checkout from 4.1.7 to 4.2.1 (#2363)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/692973e3d937129bcbf40652eb9f2f61becf3332...eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* workflow: update the documentation workflow to use pinned python modules (#2366)

* Workflow volta70 (#2356)

* worflow - volta70: cleaning up cmake recipes

* Adding volta70 to at2.yml

* gemm perf_test: print matrix sizes (#2362)

* workflows: fixing dependency for checkout action to make dependabot happy (#2369)

Signed-off-by: Luc <[email protected]>

* workflows: limit the permissions in volta70 build (#2370)

Reducing the permissions keeps the workflow and repository
safe from potential malicious deeds.

Signed-off-by: Luc Berger-Vergiat <[email protected]>

* OpenMPSmartStatic_SPMV.hpp: throw if posix_memalign fails (#2368)

* Bump actions/upload-artifact from 4.4.0 to 4.4.3 (#2378)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.0 to 4.4.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/50769540e7f4bd5e21e526ee35c689e35e0d6874...b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github/codeql-action from 3.26.11 to 3.26.12 (#2377)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.11 to 3.26.12.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea...c36620d31ac7c881962c3d9dd939c40ec9434f2b)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* set KokkosKernels_ENABLE_COMPONENT variables to value instead of variable name (#2380)

Signed-off-by: Carl Pearson <[email protected]>

* Block Sptrsv fixes (#2376)

* Go back to original impl with vector reduce

Signed-off-by: James Foucar <[email protected]>

* Disable tp1 test for clang+cuda+complex

Signed-off-by: James Foucar <[email protected]>

* Fixes and warn users about broken case

Signed-off-by: James Foucar <[email protected]>

* formatting

Signed-off-by: James Foucar <[email protected]>

* Fix comments and print skip message

Signed-off-by: James Foucar <[email protected]>

---------

Signed-off-by: James Foucar <[email protected]>

* Do not specify template argument when using Kokkos atomics (#2382)

Let Function Template Argument Deduction do its job, do not interfere.

Signed-off-by: Damien L-G <[email protected]>

* Blas1 asum: work around for openblas error with short vectors (#2384)

Signed-off-by: Carl William Pearson <[email protected]>

* Prefer atomic_assign(ptr, val) -> atomic_store(ptr, val) (#2383)

We are looking at deprecating atomic_assign() https://github.com/kokkos/kokkos/issues/7449
Use atomic_store() instead.

Signed-off-by: Damien L-G <[email protected]>

* search/replace KOKKOS_-prefixed macros (#2372)

Signed-off-by: Carl Pearson <[email protected]>

* Replace atomic_{inc, dec}[rement] (#2386)

Signed-off-by: Damien L-G <[email protected]>

* put default types in KokkosKernels namespace (#2341)

* put default types in KokkosKernels namespace

Signed-off-by: Carl Pearson <[email protected]>

* Deprecate global namespace default type aliases

Signed-off-by: Carl Pearson <[email protected]>

---------

Signed-off-by: Carl Pearson <[email protected]>

* perf_tests: remove false dependence on google test (#2385)

* perf_tests: remove false dependence on google test

Signed-off-by: Carl Pearson <[email protected]>

* KokkosBlas3_gemm_perf_test.hpp: remove comment

Signed-off-by: Carl Pearson <[email protected]>

* Test::epsilon -> Kokkos::ArithTraits<>::eps

Signed-off-by: Carl Pearson <[email protected]>

---------

Signed-off-by: Carl Pearson <[email protected]>

* Prefer `expected == atomic_compare_exchange(ptr, expected, desired)` (#2387)

* Prefer expected == atomic_compare_exchange(ptr, expected, desired)

Signed-off-by: Damien L-G <[email protected]>

* Reintroduce break statement that was accidentally removed

Signed-off-by: Damien L-G <[email protected]>

---------

Signed-off-by: Damien L-G <[email protected]>

* workflows: adding variable to set kokkos version to test against (#2389)

* workflows: adding variable to set kokkos version to test against

The variable is set directly in at2.yml so it can be uniformly
applied to all the "sub-workflows" making maintenance when a
new release of kokkos comes out easier.

Signed-off-by: Luc Berger-Vergiat <[email protected]>

* workflow: fix for the osx builds

The new variable to set the version of Kokkos Core to build against
needs to use the "in script syntax" not the bash syntax.

Signed-off-by: Luc Berger-Vergiat <[email protected]>

---------

Signed-off-by: Luc Berger-Vergiat <[email protected]>

* Bump github/codeql-action from 3.26.12 to 3.26.13 (#2391)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.12 to 3.26.13.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/c36620d31ac7c881962c3d9dd939c40ec9434f2b...f779452ac5af1c261dce0346a8f964149f49322b)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* remove deprecation message on intel 19 (#2393)

Signed-off-by: Carl Pearson <[email protected]>

* deprecate `__KOKKOSBATCHED_PROMOTION__` (#2392)

* deprecate __KOKKOSBATCHED_PROMOTION__

Signed-off-by: Carl Pearson <[email protected]>

* __KOKKOSBATCHED_PROMOTION___DEPRECATED_MACRO -> KOKKOSBATCHED_IMPL_PROMOTION

Signed-off-by: Carl Pearson <[email protected]>

---------

Signed-off-by: Carl Pearson <[email protected]>

* Reduce duplicated code in trsv (#2388)

* Reduce duplicated code in trsv
A slightly different for loop can avoid having to
separate out the last iteration.

* Fix inner loops underflow
* Change to a more-readable loop

Signed-off-by: James Foucar <[email protected]>

* Implement batched serial laswp (#2395)

* Implement batched serial laswp

Signed-off-by: Yuuichi Asahi <[email protected]>

* fix: integer types in laswp test

Signed-off-by: Yuuichi Asahi <[email protected]>

* change loop order based on base layout

Signed-off-by: Yuuichi Asahi <[email protected]>

* update serial laswp test based on review

Signed-off-by: Yuuichi Asahi <[email protected]>

---------

Signed-off-by: Yuuichi Asahi <[email protected]>
Co-authored-by: Yuuichi Asahi <[email protected]>

* 2392 missed a case where __KOKKOSBATCHED_PROMOTION__ was defined (#2396)

Signed-off-by: Carl Pearson <[email protected]>

* Rename reserved identifiers (#2373)

* clang-tidy file for reserved identifiers

Signed-off-by: Carl Pearson <[email protected]>

* Batched: don't use reserved names in include guards

Signed-off-by: Carl Pearson <[email protected]>

* BLAS: don't use reserved names in include guards

Signed-off-by: Carl Pearson <[email protected]>

---------

Signed-off-by: Carl Pearson <[email protected]>

* implement batched serial pbtrs (#2330)

* implement …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Cleanup Code maintenance that isn't a bugfix or new feature feature request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants