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

Adds team- and thread-based lower-bound and upper-bound search and predicates #1711

Merged
merged 1 commit into from
Mar 31, 2023

Conversation

cwpearson
Copy link
Contributor

@cwpearson cwpearson commented Feb 28, 2023

Needed for merge-based SpMV PR #1501

Lower-bound

Implements thread- and team lower-bound search.
Returns the smallest index of the view for which pred(view(i), value) is false

template <typename ViewLike,
          typename Pred = LT<typename ViewLike::non_const_value_type>>
KOKKOS_INLINE_FUNCTION typename ViewLike::size_type lower_bound_thread(
    const ViewLike &view, const typename ViewLike::non_const_value_type &value,
    Pred pred = Pred());

template <typename TeamMember, typename ViewLike,
          typename Pred = LT<typename ViewLike::non_const_value_type>>
KOKKOS_INLINE_FUNCTION typename ViewLike::size_type lower_bound_team(
    const TeamMember &handle, const ViewLike &view,
    const typename ViewLike::non_const_value_type &value, Pred pred = Pred());

Upper-bound

Implements thread- and team upper-bound search.
Returns the smallest index of the view for which pred(value, view(i)) is true
These are implemented in terms of lower_bound_* with some transformation of the predicates

template <typename ViewLike,
          typename Pred = LT<typename ViewLike::non_const_value_type> >
KOKKOS_INLINE_FUNCTION typename ViewLike::size_type upper_bound_thread(
    const ViewLike &view, const typename ViewLike::non_const_value_type &value,
    Pred pred = Pred());

template <typename TeamMember, typename ViewLike,
          typename Pred = LT<typename ViewLike::non_const_value_type> >
KOKKOS_INLINE_FUNCTION typename ViewLike::size_type upper_bound_team(
    const TeamMember &handle, const ViewLike &view,
    const typename ViewLike::non_const_value_type &value, Pred pred = Pred());

@cwpearson cwpearson requested a review from lucbv February 28, 2023 22:18
@cwpearson cwpearson mentioned this pull request Feb 28, 2023
6 tasks
@cwpearson cwpearson self-assigned this Feb 28, 2023
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 352
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 357
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 271
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 270
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 233
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 320
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 370
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 286
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 181
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 179
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 176
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/search
  • SHA: 63ae55b
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 352
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 357
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 271
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 270
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 233
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 320
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 370
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 286
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 181
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 179
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 176
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 63ae55b
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930 # 352 (click to expand)

make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-9.3.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.352/TestAll_2023-02-28_16.55.11/gcc/9.3.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-OpenMP_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.352/TestAll_2023-02-28_16.55.11/gcc/9.3.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-9.3.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.23.1 gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Serial --arch=Power8,Pascal60 --compiler=/home/projects/ppc64le/gcc/9.3.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930.352/TestAll_2023-02-28_16.55.11/gcc/9.3.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 357 (click to expand)

/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp: In instantiation of typename ViewLike::size_type KokkosKernels::Impl::lower_bound_kary_team(const TeamMember&, const ViewLike&, const typename ViewLike::non_const_value_type&, Pred) [with TeamMember = Kokkos::Impl::HostThreadTeamMember; ViewLike = Kokkos::View; Pred = KokkosKernels::Inv > >; typename ViewLike::size_type = long unsigned int; typename ViewLike::non_const_value_type = int]:
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:445:35:   required from typename ViewLike::size_type KokkosKernels::lower_bound_team(const TeamMember&, const ViewLike&, const typename ViewLike::non_const_value_type&, Pred) [with TeamMember = Kokkos::Impl::HostThreadTeamMember; ViewLike = Kokkos::View; Pred = KokkosKernels::Inv > >; typename ViewLike::size_type = long unsigned int; typename ViewLike::non_const_value_type = int]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_UpperBound.hpp:96:24:   required from typename ViewLike::size_type KokkosKernels::upper_bound_team(const TeamMember&, const ViewLike&, const typename ViewLike::non_const_value_type&, Pred) [with TeamMember = Kokkos::Impl::HostThreadTeamMember; ViewLike = Kokkos::View; Pred = KokkosKernels::LT; typename ViewLike::size_type = long unsigned int; typename ViewLike::non_const_value_type = int]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:99:48:   required from void TeamUpperBoundFunctor::operator()(const Member&, int&) const [with Member = Kokkos::Impl::HostThreadTeamMember; HaystackView = Kokkos::View]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.357/TestAll_2023-02-28_16.55.20/cuda/11.2.2/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp:1168:8:   required from static std::enable_if_t::value> Kokkos::Impl::ParallelReduce, ReducerType, Kokkos::OpenMP>::exec_team(const FunctorType&, Kokkos::Impl::HostThreadTeamData&, Kokkos::Impl::ParallelReduce, ReducerType, Kokkos::OpenMP>::reference_type&, int, int, int) [with TagType = void; FunctorType = TeamUpperBoundFunctor >; ReducerType = Kokkos::InvalidType; Properties = {Kokkos::OpenMP}; std::enable_if_t::value> = void; Kokkos::Impl::ParallelReduce, ReducerType, Kokkos::OpenMP>::reference_type = int&]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.357/TestAll_2023-02-28_16.55.20/cuda/11.2.2/Cuda_OpenMP-release/kokkos-install/include/OpenMP/Kokkos_OpenMP_Parallel.hpp:1234:117:   required from void Kokkos::Impl::ParallelReduce, ReducerType, Kokkos::OpenMP>::execute() const [with FunctorType = TeamUpperBoundFunctor >; ReducerType = Kokkos::InvalidType; Properties = {Kokkos::OpenMP}]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.357/TestAll_2023-02-28_16.55.20/cuda/11.2.2/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel_Reduce.hpp:1471:18:   [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.357/TestAll_2023-02-28_16.55.20/cuda/11.2.2/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel_Reduce.hpp:1655:15:   required from static std::enable_if_t<(!(Kokkos::Impl::ParallelReduceAdaptor::is_array_reduction && std::is_pointer<_Ptr>::value))> Kokkos::Impl::ParallelReduceAdaptor::execute(const string&, const PolicyType&, const FunctorType&, ReturnType&) [with Dummy = int; PolicyType = Kokkos::TeamPolicy; FunctorType = TeamUpperBoundFunctor >; ReturnType = int; std::enable_if_t<(!(Kokkos::Impl::ParallelReduceAdaptor::is_array_reduction && std::is_pointer<_Ptr>::value))> = void; std::__cxx11::string = std::__cxx11::basic_string]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.357/TestAll_2023-02-28_16.55.20/cuda/11.2.2/Cuda_OpenMP-release/kokkos-install/include/Kokkos_Parallel_Reduce.hpp:1808:76:   required from std::enable_if_t<(Kokkos::is_execution_policy::value && (!((Kokkos::is_view::value || Kokkos::is_reducer::value) || std::is_pointer::value)))> Kokkos::parallel_reduce(const PolicyType&, const FunctorType&, ReturnType&) [with PolicyType = Kokkos::TeamPolicy; FunctorType = TeamUpperBoundFunctor >; ReturnType = int; std::enable_if_t<(Kokkos::is_execution_policy::value && (!((Kokkos::is_view::value || Kokkos::is_reducer::value) || std::is_pointer::value)))> = void]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:134:24:   required from void test_upper_bound_team(const std::vector&, T) [with T = int; Device = Kokkos::OpenMP]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:144:35:   required from void test_upper_bound(const std::vector&, T) [with T = int; Device = Kokkos::OpenMP]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:151:30:   required from void test_upper_bound() [with T = int; Device = Kokkos::OpenMP]
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:205:43:   required from here
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:389:1: error: unused parameter i [-Werror=unused-parameter]
[ 76%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 76%] Built target KokkosKernels_batched_sla_openmp
[ 76%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/__/__/test_common/Test_Main.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/build.make:90: common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1515: common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_cuda.dir/backends/Test_Cuda_Sparse.cpp.o
[ 78%] Linking CXX executable KokkosKernels_batched_sla_cuda
[ 78%] Built target KokkosKernels_batched_sla_cuda
[ 78%] Linking CXX executable KokkosKernels_common_cuda
[ 78%] Built target KokkosKernels_common_cuda
[ 78%] Linking CXX executable KokkosKernels_blas_openmp
[ 78%] Built target KokkosKernels_blas_openmp
[ 78%] Linking CXX executable KokkosKernels_graph_openmp
[ 78%] Built target KokkosKernels_graph_openmp
[ 79%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 79%] Built target KokkosKernels_batched_dla_openmp
[ 79%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 79%] Built target KokkosKernels_batched_gemm_openmp
[ 79%] Linking CXX executable KokkosKernels_blas_cuda
[ 79%] Built target KokkosKernels_blas_cuda
[ 79%] Linking CXX executable KokkosKernels_batched_dla_cuda
[ 79%] Built target KokkosKernels_batched_dla_cuda
[ 80%] Linking CXX executable KokkosKernels_graph_cuda
[ 80%] Built target KokkosKernels_graph_cuda
[ 80%] Linking CXX executable KokkosKernels_sparse_cuda
[ 80%] Built target KokkosKernels_sparse_cuda
[ 80%] Linking CXX executable KokkosKernels_batched_gemm_cuda
[ 80%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 cuda/11.2.2 openblas/0.3.20/gcc/9.3.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Cuda,OpenMP --arch=Volta70 --compiler=/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/bin/nvcc_wrapper --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags="" --with-cuda=/home/projects/ppc64le-pwr9-nvidia/spack-installs/cuda/11.2.2/gcc/8.3.1/base/uflzqtv --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

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight.357/TestAll_2023-02-28_16.55.20/cuda/11.2.2/Cuda_OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 74%] Built target sparse_block_pcg
[ 74%] Linking CXX executable sparse_spgemm
[ 74%] Built target sparse_spgemm
[ 75%] Linking CXX executable sparse_gs
[ 76%] Linking CXX executable sparse_spgemm_jacobi
[ 76%] Built target sparse_gs
[ 76%] Built target sparse_spgemm_jacobi
[ 76%] Linking CXX executable sparse_sptrsv_supernode
[ 76%] Built target sparse_sptrsv_supernode
[ 76%] Linking CXX executable sparse_spmv_bsr
[ 76%] Built target sparse_spmv_bsr
[ 76%] Linking CXX executable KokkosKernels_graph_openmp
[ 76%] Built target KokkosKernels_graph_openmp
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 77%] Built target KokkosKernels_batched_gemm_openmp
[ 78%] Linking CXX executable KokkosKernels_blas_openmp
[ 78%] Built target KokkosKernels_blas_openmp
[ 79%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 79%] Built target KokkosKernels_batched_dla_openmp
[ 79%] Linking CXX executable KokkosKernels_sparse_openmp
[ 79%] Built target KokkosKernels_sparse_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.271/TestAll_2023-02-28_16.55.25/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.271/TestAll_2023-02-28_16.55.25/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake24: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 270 (click to expand)

[ 74%] Built target sparse_sptrsv_supernode
[ 74%] Linking CXX executable sparse_block_pcg
[ 74%] Built target sparse_block_pcg
[ 74%] Linking CXX executable sparse_spgemm
[ 74%] Built target sparse_spgemm
[ 75%] Linking CXX executable sparse_spgemm_jacobi
[ 75%] Built target sparse_spgemm_jacobi
[ 76%] Linking CXX executable sparse_gs
[ 76%] Built target sparse_gs
[ 76%] Linking CXX executable sparse_spmv_bsr
[ 76%] Built target sparse_spmv_bsr
[ 76%] Linking CXX executable KokkosKernels_graph_openmp
[ 76%] Built target KokkosKernels_graph_openmp
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 77%] Built target KokkosKernels_batched_gemm_openmp
[ 78%] Linking CXX executable KokkosKernels_blas_openmp
[ 78%] Built target KokkosKernels_blas_openmp
[ 79%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 79%] Built target KokkosKernels_batched_dla_openmp
[ 79%] Linking CXX executable KokkosKernels_sparse_openmp
[ 79%] Built target KokkosKernels_sparse_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.270/TestAll_2023-02-28_16.55.35/gcc/10.2.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutRight --with-tpls= --with-options= --with-cuda-options= --with-spaces=hostspace --no-examples --no-default-eti

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight.270/TestAll_2023-02-28_16.55.35/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake25: task 0: Exited with exit code 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 233 (click to expand)

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.233/TestAll_2023-02-28_16.55.46/gcc/10.2.0/OpenMP_Serial-release/kokkos-install/include/Kokkos_Parallel_Reduce.hpp:1808:76:   required from std::enable_if_t<(Kokkos::is_execution_policy::value && (!((Kokkos::is_view::value || Kokkos::is_reducer::value) || std::is_pointer::value)))> Kokkos::parallel_reduce(const PolicyType&, const FunctorType&, ReturnType&) [with PolicyType = Kokkos::TeamPolicy; FunctorType = TeamUpperBoundFunctor >; ReturnType = int; std::enable_if_t<(Kokkos::is_execution_policy::value && (!((Kokkos::is_view::value || Kokkos::is_reducer::value) || std::is_pointer::value)))> = void]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:134:26:   required from void test_upper_bound_team(const std::vector&, T) [with T = int; Device = Kokkos::Serial]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:144:35:   required from void test_upper_bound(const std::vector&, T) [with T = int; Device = Kokkos::Serial]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:151:30:   required from void test_upper_bound() [with T = int; Device = Kokkos::Serial]
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:205:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:389:24: error: unused parameter i [-Werror=unused-parameter]
[ 77%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 77%] Built target KokkosKernels_batched_sla_openmp
[ 77%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 77%] Built target KokkosKernels_batched_sla_serial
Scanning dependencies of target KokkosKernels_sparse_openmp
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o
Scanning dependencies of target KokkosKernels_sparse_serial
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o
[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/all] Error 2
[ 78%] Linking CXX executable KokkosKernels_graph_serial
[ 78%] Built target KokkosKernels_graph_serial
[ 78%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 78%] Built target KokkosKernels_batched_gemm_serial
[ 79%] Linking CXX executable KokkosKernels_graph_openmp
[ 79%] Built target KokkosKernels_graph_openmp
[ 79%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 79%] Built target KokkosKernels_batched_gemm_openmp
[ 79%] Linking CXX executable KokkosKernels_blas_serial
[ 79%] Built target KokkosKernels_blas_serial
[ 79%] Linking CXX executable KokkosKernels_blas_openmp
[ 79%] Built target KokkosKernels_blas_openmp
[ 80%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 80%] Built target KokkosKernels_batched_dla_serial
[ 80%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 80%] Built target KokkosKernels_batched_dla_openmp
[ 80%] Linking CXX executable KokkosKernels_sparse_serial
[ 80%] Linking CXX executable KokkosKernels_sparse_openmp
[ 80%] Built target KokkosKernels_sparse_serial
[ 80%] Built target KokkosKernels_sparse_openmp
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0 openblas/0.3.21/gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas --user-blas-path=/home/projects/x86-64-skylake/spack/opt/spack/linux-rhel7-skylake_avx512/gcc-10.2.0/openblas-0.3.21-k3hscel2el5bpov4ejvsn5yl5atsezr6/lib --user-lapack-path=/home/projects/x86-64-skylake/spack/opt/spack/linux-rhel7-skylake_avx512/gcc-10.2.0/openblas-0.3.21-k3hscel2el5bpov4ejvsn5yl5atsezr6/lib --user-blas-lib=blas --user-lapack-lib=lapack --extra-linker-flags=-lgfortran,-lm --with-options= --with-cuda-options= --no-examples

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/KokkosKernels_PullRequest_Tpls_GCC1020.233/TestAll_2023-02-28_16.55.46/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake26: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse 63ae55b151ef9e4a6c9d3b4ad735334cfef4d1dd^{commit} # timeout=10
Checking out Revision 63ae55b151ef9e4a6c9d3b4ad735334cfef4d1dd (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 63ae55b151ef9e4a6c9d3b4ad735334cfef4d1dd # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk d46de7555eb2d80a164b4cc6852a29e7e872eb7e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f # timeout=10
Commit message: "New OpenACC backend implementation for  parallel_scan with  a range policy (#5876)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins6947337499393401517.sh
Merge made by the 'recursive' strategy.
 batched/KokkosBatched_Util.hpp | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  441f0fb213a1afa212f1438f177c77639d712a96 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f New OpenACC backend implementation for parallel_scan with a range policy (#5876)

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1228 run_time=97
intel-19.5.281-Threads-release build_time=803 run_time=111
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_threads.dir/backends/Test_Threads_Batched_Dense.cpp.o
[ 75%] Building CXX object batched/dense/unit_test/CMakeFiles/KokkosKernels_batched_dla_serial.dir/backends/Test_Serial_Batched_Dense.cpp.o
[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/backends/Test_Serial_Blas.cpp.o
[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_threads.dir/backends/Test_Threads_Blas.cpp.o
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/backends/Test_Threads_Common.cpp:20:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common.hpp:27:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:20:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:389:24: error: unused parameter 'i' [-Werror,-Wunused-parameter]
        [&](const int &i, Range &lr) {
                       ^
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/backends/Test_Serial_Common.cpp:20:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common.hpp:27:
In file included from /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:20:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:389:24: error: unused parameter 'i' [-Werror,-Wunused-parameter]
        [&](const int &i, Range &lr) {
                       ^
1 error generated.
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/backends/Test_Threads_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
1 error generated.
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 76%] Built target KokkosKernels_batched_sla_threads
[ 77%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 77%] Built target KokkosKernels_batched_sla_serial
[ 77%] Linking CXX executable KokkosKernels_graph_threads
[ 77%] Built target KokkosKernels_graph_threads
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 77%] Built target KokkosKernels_batched_gemm_threads
[ 78%] Linking CXX executable KokkosKernels_graph_serial
[ 78%] Built target KokkosKernels_graph_serial
[ 78%] Linking CXX executable KokkosKernels_blas_threads
[ 78%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 78%] Built target KokkosKernels_batched_gemm_serial
[ 78%] Built target KokkosKernels_blas_threads
[ 78%] Linking CXX executable KokkosKernels_blas_serial
[ 78%] Built target KokkosKernels_blas_serial
[ 79%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 79%] Built target KokkosKernels_batched_dla_threads
[ 79%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 79%] Built target KokkosKernels_batched_dla_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 clang/10.0.1

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/spack/opt/spack/linux-rhel7-x86_64/gcc-10.2.0/llvm-10.0.1-nldepabrxk2zcykcq7rlky5sr53hnm63/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

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.370/TestAll_2023-02-28_17.06.22/clang/10.0.1/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake26: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG13CUDA10 # 286 (click to expand)

                       ^
In file included from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/common/unit_test/backends/Test_Serial_Common.cpp:20:
In file included from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/common/unit_test/Test_Common.hpp:27:
In file included from /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/common/unit_test/Test_Common_LowerBound.hpp:20:
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:389:24: error: unused parameter 'i' [-Werror,-Wunused-parameter]
        [&](const int &i, Range &lr) {
                       ^
1 error generated when compiling for sm_70.
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/build.make:90: common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1517: common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
1 error generated when compiling for sm_70.
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_cuda.dir/build.make:90: common/unit_test/CMakeFiles/KokkosKernels_common_cuda.dir/backends/Test_Cuda_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1490: common/unit_test/CMakeFiles/KokkosKernels_common_cuda.dir/all] Error 2
[ 76%] Linking CXX executable KokkosKernels_batched_sla_serial
/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
[ 76%] Built target KokkosKernels_batched_sla_serial
[ 76%] Linking CXX executable KokkosKernels_batched_sla_cuda
/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
[ 76%] Built target KokkosKernels_batched_sla_cuda
[ 76%] Linking CXX executable KokkosKernels_graph_serial
/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
[ 76%] Built target KokkosKernels_graph_serial
[ 76%] Linking CXX executable KokkosKernels_blas_serial
/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
[ 76%] Built target KokkosKernels_blas_serial
[ 77%] Linking CXX executable KokkosKernels_batched_dla_serial
/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
[ 77%] Built target KokkosKernels_batched_dla_serial
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_serial
/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
[ 77%] Built target KokkosKernels_batched_gemm_serial
[ 78%] Linking CXX executable KokkosKernels_blas_cuda
/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
[ 78%] Built target KokkosKernels_blas_cuda
[ 78%] Linking CXX executable KokkosKernels_batched_dla_cuda
/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
[ 78%] Built target KokkosKernels_batched_dla_cuda
[ 79%] Linking CXX executable KokkosKernels_graph_cuda
/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
[ 79%] Built target KokkosKernels_graph_cuda
[ 79%] Linking CXX executable KokkosKernels_batched_gemm_cuda
/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
[ 79%] Built target KokkosKernels_batched_gemm_cuda
make: *** [Makefile:146: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-13.0.0-Cuda-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.23.1 clang/13.0.0 openblas/0.3.20/gcc/9.3.0 cuda/10.1.243

$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

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CLANG13CUDA10/KokkosKernels_PullRequest_CLANG13CUDA10.286/TestAll_2023-02-28_17.06.40/clang/13.0.0/Cuda-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

[ 74%] Built target sparse_spgemm
[ 74%] Linking CXX executable sparse_block_pcg
[ 74%] Built target sparse_block_pcg
[ 75%] Linking CXX executable sparse_gs
[ 76%] Linking CXX executable sparse_spgemm_jacobi
[ 76%] Built target sparse_gs
[ 76%] Built target sparse_spgemm_jacobi
[ 76%] Linking CXX executable sparse_sptrsv_supernode
[ 76%] Built target sparse_sptrsv_supernode
[ 76%] Linking CXX executable sparse_spmv_bsr
[ 76%] Built target sparse_spmv_bsr
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 77%] Linking CXX executable KokkosKernels_graph_serial
[ 77%] Built target KokkosKernels_batched_gemm_serial
[ 77%] Built target KokkosKernels_graph_serial
[ 78%] Linking CXX executable KokkosKernels_blas_serial
[ 78%] Built target KokkosKernels_blas_serial
[ 79%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 79%] Built target KokkosKernels_batched_dla_serial
[ 79%] Linking CXX executable KokkosKernels_sparse_serial
[ 79%] Built target KokkosKernels_sparse_serial
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
armpl-21.1.0-OpenMP-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$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

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.181/TestAll_2023-02-28_17.06.55/armpl/21.1.0/OpenMP-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
armpl-21.1.0-Serial-release (build failed)
#######################################################

Reproducer instructions:

Load modules:

    module purge
    module purge
    module load cmake/3.17.0 gcc/10.2.0 armpl/21.1.0

$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

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110.181/TestAll_2023-02-28_17.06.55/armpl/21.1.0/Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3043
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.179/TestAll_2023-02-28_17.07.02/gcc/10.2.0/OpenMP_Serial-release/kokkos-install/include/Kokkos_Parallel_Reduce.hpp:1808:76:   required from 'std::enable_if_t<(Kokkos::is_execution_policy::value && (!((Kokkos::is_view::value || Kokkos::is_reducer::value) || std::is_pointer::value)))> Kokkos::parallel_reduce(const PolicyType&, const FunctorType&, ReturnType&) [with PolicyType = Kokkos::TeamPolicy; FunctorType = TeamUpperBoundFunctor >; ReturnType = int; std::enable_if_t<(Kokkos::is_execution_policy::value && (!((Kokkos::is_view::value || Kokkos::is_reducer::value) || std::is_pointer::value)))> = void]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:134:26:   required from 'void test_upper_bound_team(const std::vector&, T) [with T = int; Device = Kokkos::OpenMP]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:144:35:   required from 'void test_upper_bound(const std::vector&, T) [with T = int; Device = Kokkos::OpenMP]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:151:30:   required from 'void test_upper_bound() [with T = int; Device = Kokkos::OpenMP]'
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:205:1:   required from here
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos-kernels/common/src/KokkosKernels_LowerBound.hpp:389:24: error: unused parameter 'i' [-Werror=unused-parameter]
[ 77%] Linking CXX executable KokkosKernels_batched_sla_openmp
[ 77%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 77%] Built target KokkosKernels_batched_sla_openmp
[ 77%] Built target KokkosKernels_batched_sla_serial
Scanning dependencies of target KokkosKernels_sparse_openmp
Scanning dependencies of target KokkosKernels_sparse_serial
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/__/__/test_common/Test_Main.cpp.o
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/__/__/test_common/Test_Main.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/build.make:93: common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1641: common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 77%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_serial.dir/backends/Test_Serial_Sparse.cpp.o
[ 78%] Building CXX object sparse/unit_test/CMakeFiles/KokkosKernels_sparse_openmp.dir/backends/Test_OpenMP_Sparse.cpp.o
cc1plus: all warnings being treated as errors
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/build.make:93: common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/backends/Test_OpenMP_Common.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1613: common/unit_test/CMakeFiles/KokkosKernels_common_openmp.dir/all] Error 2
[ 78%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 78%] Linking CXX executable KokkosKernels_graph_serial
[ 78%] Built target KokkosKernels_batched_gemm_serial
[ 78%] Built target KokkosKernels_graph_serial
[ 78%] Linking CXX executable KokkosKernels_batched_gemm_openmp
[ 78%] Built target KokkosKernels_batched_gemm_openmp
[ 79%] Linking CXX executable KokkosKernels_graph_openmp
[ 79%] Built target KokkosKernels_graph_openmp
[ 79%] Linking CXX executable KokkosKernels_blas_serial
[ 79%] Built target KokkosKernels_blas_serial
[ 79%] Linking CXX executable KokkosKernels_blas_openmp
[ 79%] Built target KokkosKernels_blas_openmp
[ 80%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 80%] Built target KokkosKernels_batched_dla_serial
[ 80%] Linking CXX executable KokkosKernels_batched_dla_openmp
[ 80%] Built target KokkosKernels_batched_dla_openmp
[ 80%] Linking CXX executable KokkosKernels_sparse_openmp
[ 80%] Built target KokkosKernels_sparse_openmp
[ 80%] Linking CXX executable KokkosKernels_sparse_serial
[ 80%] Built target KokkosKernels_sparse_serial
make: *** [Makefile:158: all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        module purge
        module purge
        module load cmake/3.17.0 gcc/10.2.0

$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

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/KokkosKernels_PullRequest_A64FX_GCC1020.179/TestAll_2023-02-28_17.07.02/gcc/10.2.0/OpenMP_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
salloc: Relinquishing job allocation 3044
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse 63ae55b151ef9e4a6c9d3b4ad735334cfef4d1dd^{commit} # timeout=10
Checking out Revision 63ae55b151ef9e4a6c9d3b4ad735334cfef4d1dd (detached)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 63ae55b151ef9e4a6c9d3b4ad735334cfef4d1dd # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > git rev-list --no-walk d46de7555eb2d80a164b4cc6852a29e7e872eb7e # timeout=10
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f # timeout=10
Commit message: "New OpenACC backend implementation for  parallel_scan with  a range policy (#5876)"
 > git rev-list --no-walk 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins5627013769795624763.sh
Merge made by the 'recursive' strategy.
 batched/KokkosBatched_Util.hpp | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  c4db63c647e4c44b0bd0bc41cece3657937fd713 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 416d7b7439f6dca7bc4c1b2c4e48c6f8e46a9d1f New OpenACC backend implementation for parallel_scan with a range policy (#5876)

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=836 run_time=588
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

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

  • Build Num: 357
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 362
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 276
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 275
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 238
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 325
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 375
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 290
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 185
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 183
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 180
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/search
  • SHA: 5fa0b0c
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930

  • Build Num: 357
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 362
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 276
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 275
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 238
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 325
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 375
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG13CUDA10

  • Build Num: 290
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 185
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 183
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 180
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 5fa0b0c
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 8697db1
PR_LABELS
PULLREQUESTNUM 1711
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
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

@kokkos-devops-admin
Copy link

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

5 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

10 similar comments
@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 426
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 35
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 65
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 335
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 296
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 385
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 438
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 239
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 234
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 238
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/search
  • SHA: d5fe892
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 426
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 35
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 65
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 335
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 296
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 385
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 438
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 239
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 234
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 238
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 426 (click to expand)

error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
error: refs/remotes/origin/5-google-benchmark-blas2-tests does not point to a valid object!
error: refs/remotes/origin/8-refactor-cmake-mkl does not point to a valid object!
error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
error: refs/remotes/origin/5-google-benchmark-blas2-tests does not point to a valid object!
error: refs/remotes/origin/8-refactor-cmake-mkl does not point to a valid object!
error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
remote: Enumerating objects: 360, done.        
remote: Counting objects:   0% (1/351)        
remote: Counting objects:   1% (4/351)        
remote: Counting objects:   2% (8/351)        
remote: Counting objects:   3% (11/351)        
remote: Counting objects:   4% (15/351)        
remote: Counting objects:   5% (18/351)        
remote: Counting objects:   6% (22/351)        
remote: Counting objects:   7% (25/351)        
remote: Counting objects:   8% (29/351)        
remote: Counting objects:   9% (32/351)        
remote: Counting objects:  10% (36/351)        
remote: Counting objects:  11% (39/351)        
remote: Counting objects:  12% (43/351)        
remote: Counting objects:  13% (46/351)        
remote: Counting objects:  14% (50/351)        
remote: Counting objects:  15% (53/351)        
remote: Counting objects:  16% (57/351)        
remote: Counting objects:  17% (60/351)        
remote: Counting objects:  18% (64/351)        
remote: Counting objects:  19% (67/351)        
remote: Counting objects:  20% (71/351)        
remote: Counting objects:  21% (74/351)        
remote: Counting objects:  22% (78/351)        
remote: Counting objects:  23% (81/351)        
remote: Counting objects:  24% (85/351)        
remote: Counting objects:  25% (88/351)        
remote: Counting objects:  26% (92/351)        
remote: Counting objects:  27% (95/351)        
remote: Counting objects:  28% (99/351)        
remote: Counting objects:  29% (102/351)        
remote: Counting objects:  30% (106/351)        
remote: Counting objects:  31% (109/351)        
remote: Counting objects:  32% (113/351)        
remote: Counting objects:  33% (116/351)        
remote: Counting objects:  34% (120/351)        
remote: Counting objects:  35% (123/351)        
remote: Counting objects:  36% (127/351)        
remote: Counting objects:  37% (130/351)        
remote: Counting objects:  38% (134/351)        
remote: Counting objects:  39% (137/351)        
remote: Counting objects:  40% (141/351)        
remote: Counting objects:  41% (144/351)        
remote: Counting objects:  42% (148/351)        
remote: Counting objects:  43% (151/351)        
remote: Counting objects:  44% (155/351)        
remote: Counting objects:  45% (158/351)        
remote: Counting objects:  46% (162/351)        
remote: Counting objects:  47% (165/351)        
remote: Counting objects:  48% (169/351)        
remote: Counting objects:  49% (172/351)        
remote: Counting objects:  50% (176/351)        
remote: Counting objects:  51% (180/351)        
remote: Counting objects:  52% (183/351)        
remote: Counting objects:  53% (187/351)        
remote: Counting objects:  54% (190/351)        
remote: Counting objects:  55% (194/351)        
remote: Counting objects:  56% (197/351)        
remote: Counting objects:  57% (201/351)        
remote: Counting objects:  58% (204/351)        
remote: Counting objects:  59% (208/351)        
remote: Counting objects:  60% (211/351)        
remote: Counting objects:  61% (215/351)        
remote: Counting objects:  62% (218/351)        
remote: Counting objects:  63% (222/351)        
remote: Counting objects:  64% (225/351)        
remote: Counting objects:  65% (229/351)        
remote: Counting objects:  66% (232/351)        
remote: Counting objects:  67% (236/351)        
remote: Counting objects:  68% (239/351)        
remote: Counting objects:  69% (243/351)        
remote: Counting objects:  70% (246/351)        
remote: Counting objects:  71% (250/351)        
remote: Counting objects:  72% (253/351)        
remote: Counting objects:  73% (257/351)        
remote: Counting objects:  74% (260/351)        
remote: Counting objects:  75% (264/351)        
remote: Counting objects:  76% (267/351)        
remote: Counting objects:  77% (271/351)        
remote: Counting objects:  78% (274/351)        
remote: Counting objects:  79% (278/351)        
remote: Counting objects:  80% (281/351)        
remote: Counting objects:  81% (285/351)        
remote: Counting objects:  82% (288/351)        
remote: Counting objects:  83% (292/351)        
remote: Counting objects:  84% (295/351)        
remote: Counting objects:  85% (299/351)        
remote: Counting objects:  86% (302/351)        
remote: Counting objects:  87% (306/351)        
remote: Counting objects:  88% (309/351)        
remote: Counting objects:  89% (313/351)        
remote: Counting objects:  90% (316/351)        
remote: Counting objects:  91% (320/351)        
remote: Counting objects:  92% (323/351)        
remote: Counting objects:  93% (327/351)        
remote: Counting objects:  94% (330/351)        
remote: Counting objects:  95% (334/351)        
remote: Counting objects:  96% (337/351)        
remote: Counting objects:  97% (341/351)        
remote: Counting objects:  98% (344/351)        
remote: Counting objects:  99% (348/351)        
remote: Counting objects: 100% (351/351)        
remote: Counting objects: 100% (351/351), done.        
remote: Compressing objects:   0% (1/176)        
remote: Compressing objects:   1% (2/176)        
remote: Compressing objects:   2% (4/176)        
remote: Compressing objects:   3% (6/176)        
remote: Compressing objects:   4% (8/176)        
remote: Compressing objects:   5% (9/176)        
remote: Compressing objects:   6% (11/176)        
remote: Compressing objects:   7% (13/176)        
remote: Compressing objects:   8% (15/176)        
remote: Compressing objects:   9% (16/176)        
remote: Compressing objects:  10% (18/176)        
remote: Compressing objects:  11% (20/176)        
remote: Compressing objects:  12% (22/176)        
remote: Compressing objects:  13% (23/176)        
remote: Compressing objects:  14% (25/176)        
remote: Compressing objects:  15% (27/176)        
remote: Compressing objects:  16% (29/176)        
remote: Compressing objects:  17% (30/176)        
remote: Compressing objects:  18% (32/176)        
remote: Compressing objects:  19% (34/176)        
remote: Compressing objects:  20% (36/176)        
remote: Compressing objects:  21% (37/176)        
remote: Compressing objects:  22% (39/176)        
remote: Compressing objects:  23% (41/176)        
remote: Compressing objects:  24% (43/176)        
remote: Compressing objects:  25% (44/176)        
remote: Compressing objects:  26% (46/176)        
remote: Compressing objects:  27% (48/176)        
remote: Compressing objects:  28% (50/176)        
remote: Compressing objects:  29% (52/176)        
remote: Compressing objects:  30% (53/176)        
remote: Compressing objects:  31% (55/176)        
remote: Compressing objects:  32% (57/176)        
remote: Compressing objects:  33% (59/176)        
remote: Compressing objects:  34% (60/176)        
remote: Compressing objects:  35% (62/176)        
remote: Compressing objects:  36% (64/176)        
remote: Compressing objects:  37% (66/176)        
remote: Compressing objects:  38% (67/176)        
remote: Compressing objects:  39% (69/176)        
remote: Compressing objects:  40% (71/176)        
remote: Compressing objects:  41% (73/176)        
remote: Compressing objects:  42% (74/176)        
remote: Compressing objects:  43% (76/176)        
remote: Compressing objects:  44% (78/176)        
remote: Compressing objects:  45% (80/176)        
remote: Compressing objects:  46% (81/176)        
remote: Compressing objects:  47% (83/176)        
remote: Compressing objects:  48% (85/176)        
remote: Compressing objects:  49% (87/176)        
remote: Compressing objects:  50% (88/176)        
remote: Compressing objects:  51% (90/176)        
remote: Compressing objects:  52% (92/176)        
remote: Compressing objects:  53% (94/176)        
remote: Compressing objects:  54% (96/176)        
remote: Compressing objects:  55% (97/176)        
remote: Compressing objects:  56% (99/176)        
remote: Compressing objects:  57% (101/176)        
remote: Compressing objects:  58% (103/176)        
remote: Compressing objects:  59% (104/176)        
remote: Compressing objects:  60% (106/176)        
remote: Compressing objects:  61% (108/176)        
remote: Compressing objects:  62% (110/176)        
remote: Compressing objects:  63% (111/176)        
remote: Compressing objects:  64% (113/176)        
remote: Compressing objects:  65% (115/176)        
remote: Compressing objects:  66% (117/176)        
remote: Compressing objects:  67% (118/176)        
remote: Compressing objects:  68% (120/176)        
remote: Compressing objects:  69% (122/176)        
remote: Compressing objects:  70% (124/176)        
remote: Compressing objects:  71% (125/176)        
remote: Compressing objects:  72% (127/176)        
remote: Compressing objects:  73% (129/176)        
remote: Compressing objects:  74% (131/176)        
remote: Compressing objects:  75% (132/176)        
remote: Compressing objects:  76% (134/176)        
remote: Compressing objects:  77% (136/176)        
remote: Compressing objects:  78% (138/176)        
remote: Compressing objects:  79% (140/176)        
remote: Compressing objects:  80% (141/176)        
remote: Compressing objects:  81% (143/176)        
remote: Compressing objects:  82% (145/176)        
remote: Compressing objects:  83% (147/176)        
remote: Compressing objects:  84% (148/176)        
remote: Compressing objects:  85% (150/176)        
remote: Compressing objects:  86% (152/176)        
remote: Compressing objects:  87% (154/176)        
remote: Compressing objects:  88% (155/176)        
remote: Compressing objects:  89% (157/176)        
remote: Compressing objects:  90% (159/176)        
remote: Compressing objects:  91% (161/176)        
remote: Compressing objects:  92% (162/176)        
remote: Compressing objects:  93% (164/176)        
remote: Compressing objects:  94% (166/176)        
remote: Compressing objects:  95% (168/176)        
remote: Compressing objects:  96% (169/176)        
remote: Compressing objects:  97% (171/176)        
remote: Compressing objects:  98% (173/176)        
remote: Compressing objects:  99% (175/176)        
remote: Compressing objects: 100% (176/176)        
remote: Compressing objects: 100% (176/176), done.        
Receiving objects:   0% (1/360)   
Receiving objects:   1% (4/360)   
Receiving objects:   2% (8/360)   
Receiving objects:   3% (11/360)   
Receiving objects:   4% (15/360)   
Receiving objects:   5% (18/360)   
Receiving objects:   6% (22/360)   
Receiving objects:   7% (26/360)   
Receiving objects:   8% (29/360)   
Receiving objects:   9% (33/360)   
Receiving objects:  10% (36/360)   
Receiving objects:  11% (40/360)   
Receiving objects:  12% (44/360)   
Receiving objects:  13% (47/360)   
Receiving objects:  14% (51/360)   
Receiving objects:  15% (54/360)   
Receiving objects:  16% (58/360)   
Receiving objects:  17% (62/360)   
Receiving objects:  18% (65/360)   
Receiving objects:  19% (69/360)   
Receiving objects:  20% (72/360)   
Receiving objects:  21% (76/360)   
Receiving objects:  22% (80/360)   
Receiving objects:  23% (83/360)   
Receiving objects:  24% (87/360)   
Receiving objects:  25% (90/360)   
Receiving objects:  26% (94/360)   
Receiving objects:  27% (98/360)   
Receiving objects:  28% (101/360)   
Receiving objects:  29% (105/360)   
Receiving objects:  30% (108/360)   
Receiving objects:  31% (112/360)   
Receiving objects:  32% (116/360)   
Receiving objects:  33% (119/360)   
Receiving objects:  34% (123/360)   
Receiving objects:  35% (126/360)   
Receiving objects:  36% (130/360)   
Receiving objects:  37% (134/360)   
Receiving objects:  38% (137/360)   
Receiving objects:  39% (141/360)   
Receiving objects:  40% (144/360)   
Receiving objects:  41% (148/360)   
Receiving objects:  42% (152/360)   
Receiving objects:  43% (155/360)   
Receiving objects:  44% (159/360)   
Receiving objects:  45% (162/360)   
Receiving objects:  46% (166/360)   
Receiving objects:  47% (170/360)   
Receiving objects:  48% (173/360)   
Receiving objects:  49% (177/360)   
Receiving objects:  50% (180/360)   
Receiving objects:  51% (184/360)   
Receiving objects:  52% (188/360)   
Receiving objects:  53% (191/360)   
Receiving objects:  54% (195/360)   
Receiving objects:  55% (198/360)   
Receiving objects:  56% (202/360)   
Receiving objects:  57% (206/360)   
Receiving objects:  58% (209/360)   
Receiving objects:  59% (213/360)   
Receiving objects:  60% (216/360)   
Receiving objects:  61% (220/360)   
Receiving objects:  62% (224/360)   
Receiving objects:  63% (227/360)   
Receiving objects:  64% (231/360)   
Receiving objects:  65% (234/360)   
Receiving objects:  66% (238/360)   
Receiving objects:  67% (242/360)   
Receiving objects:  68% (245/360)   
Receiving objects:  69% (249/360)   
Receiving objects:  70% (252/360)   
Receiving objects:  71% (256/360)   
Receiving objects:  72% (260/360)   
Receiving objects:  73% (263/360)   
Receiving objects:  74% (267/360)   
Receiving objects:  75% (270/360)   
Receiving objects:  76% (274/360)   
Receiving objects:  77% (278/360)   
Receiving objects:  78% (281/360)   
Receiving objects:  79% (285/360)   
Receiving objects:  80% (288/360)   
Receiving objects:  81% (292/360)   
Receiving objects:  82% (296/360)   
Receiving objects:  83% (299/360)   
Receiving objects:  84% (303/360)   
Receiving objects:  85% (306/360)   
Receiving objects:  86% (310/360)   
Receiving objects:  87% (314/360)   
Receiving objects:  88% (317/360)   
Receiving objects:  89% (321/360)   
Receiving objects:  90% (324/360)   
remote: Total 360 (delta 197), reused 296 (delta 174), pack-reused 9        
Receiving objects:  91% (328/360)   
Receiving objects:  92% (332/360)   
Receiving objects:  93% (335/360)   
Receiving objects:  94% (339/360)   
Receiving objects:  95% (342/360)   
Receiving objects:  96% (346/360)   
Receiving objects:  97% (350/360)   
Receiving objects:  98% (353/360)   
Receiving objects:  99% (357/360)   
Receiving objects: 100% (360/360)   
Receiving objects: 100% (360/360), 444.53 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/200)   
Resolving deltas:   1% (3/200)   
Resolving deltas:   4% (8/200)   
Resolving deltas:   6% (12/200)   
Resolving deltas:   7% (14/200)   
Resolving deltas:   8% (16/200)   
Resolving deltas:  11% (22/200)   
Resolving deltas:  12% (24/200)   
Resolving deltas:  14% (28/200)   
Resolving deltas:  17% (34/200)   
Resolving deltas:  19% (38/200)   
Resolving deltas:  21% (42/200)   
Resolving deltas:  22% (44/200)   
Resolving deltas:  23% (46/200)   
Resolving deltas:  27% (54/200)   
Resolving deltas:  28% (56/200)   
Resolving deltas:  30% (60/200)   
Resolving deltas:  31% (62/200)   
Resolving deltas:  34% (68/200)   
Resolving deltas:  38% (76/200)   
Resolving deltas:  40% (81/200)   
Resolving deltas:  44% (88/200)   
Resolving deltas:  45% (90/200)   
Resolving deltas:  49% (98/200)   
Resolving deltas:  51% (102/200)   
Resolving deltas:  54% (108/200)   
Resolving deltas:  55% (110/200)   
Resolving deltas:  58% (116/200)   
Resolving deltas:  61% (123/200)   
Resolving deltas:  63% (126/200)   
Resolving deltas:  64% (128/200)   
Resolving deltas:  65% (131/200)   
Resolving deltas:  66% (132/200)   
Resolving deltas:  67% (134/200)   
Resolving deltas:  68% (136/200)   
Resolving deltas:  69% (138/200)   
Resolving deltas:  71% (142/200)   
Resolving deltas:  73% (146/200)   
Resolving deltas:  75% (150/200)   
Resolving deltas:  76% (153/200)   
Resolving deltas:  78% (156/200)   
Resolving deltas:  79% (159/200)   
Resolving deltas:  80% (161/200)   
Resolving deltas:  86% (172/200)   
Resolving deltas:  87% (175/200)   
Resolving deltas:  88% (176/200)   
Resolving deltas:  89% (178/200)   
Resolving deltas:  90% (180/200)   
Resolving deltas:  91% (182/200)   
Resolving deltas:  92% (184/200)   
Resolving deltas:  93% (187/200)   
Resolving deltas:  96% (192/200)   
Resolving deltas:  97% (194/200)   
Resolving deltas:  98% (196/200)   
Resolving deltas:  99% (198/200)   
Resolving deltas: 100% (200/200)   
Resolving deltas: 100% (200/200), completed with 28 local objects.
error: refs/remotes/origin/5-google-benchmark-blas2-tests does not point to a valid object!
error: refs/remotes/origin/8-refactor-cmake-mkl does not point to a valid object!
error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
fatal: bad object HEAD
error: https://github.com/cwpearson/kokkos-kernels did not send all necessary objects
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2736)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2111)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:87)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:623)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:158)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:151)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:376)
at hudson.remoting.InterceptingExecutorService.lambda$wrap$0(InterceptingExecutorService.java:78)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.lang.Thread.run(Thread.java:834)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to weaver
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1784)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356)
	at hudson.remoting.Channel.call(Channel.java:1000)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:143)
	at sun.reflect.GeneratedMethodAccessor457.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:129)
	at com.sun.proxy.$Proxy81.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:1004)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1248)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1312)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:540)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1217)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:647)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:85)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:519)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)

ERROR: Error fetching remote repo 'origin'
Finished: FAILURE

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

gcc-9.3.0-OpenMP-release build_time=500 run_time=100
gcc-9.3.0-OpenMP_Serial-release build_time=698 run_time=239
gcc-9.3.0-Serial-release build_time=459 run_time=118
Running on machine: weaver
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: gcc/9.3.0
Testing compiler gcc/9.3.0
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-9.3.0-OpenMP-release
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-Serial-release
kokkos devices: Serial
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-9.3.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-9.3.0-OpenMP-release build_time=487 run_time=113
gcc-9.3.0-Serial-release build_time=435 run_time=107
Running on machine: weaver
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: clang/13.0.0
Testing compiler clang/13.0.0
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Starting job clang-13.0.0-Cuda-release
kokkos devices: Cuda
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-13.0.0-Cuda-release
#######################################################
PASSED TESTS
#######################################################
clang-13.0.0-Cuda-release build_time=1324 run_time=537
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10
Finished: SUCCESS

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

/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp: In instantiation of void test_upper_bound() [with T = double; Device = Kokkos::Threads]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:235:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:190:46: error: invalid operands of types int and double to binary operator%
  190 |         haystack.push_back(minEntry + rand() % (maxEntry - minEntry));
      |                                       ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:195:42: error: invalid operands of types int and double to binary operator%
  195 |       const T needle = minEntry + rand() % (maxEntry - minEntry);
      |                                   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/backends/Test_Threads_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
Scanning dependencies of target KokkosKernels_blas_serial
Scanning dependencies of target KokkosKernels_blas_threads
[ 75%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/__/__/test_common/Test_Main.cpp.o
[ 75%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_threads.dir/__/__/test_common/Test_Main.cpp.o
[ 75%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_threads.dir/backends/Test_Threads_Blas.cpp.o
[ 76%] Building CXX object blas/unit_test/CMakeFiles/KokkosKernels_blas_serial.dir/backends/Test_Serial_Blas.cpp.o
[ 76%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 77%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 77%] Built target KokkosKernels_batched_sla_threads
[ 77%] Built target KokkosKernels_batched_sla_serial
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 77%] Built target KokkosKernels_batched_gemm_serial
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 77%] Built target KokkosKernels_batched_gemm_threads
[ 78%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 78%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 78%] Built target KokkosKernels_batched_dla_serial
[ 78%] Built target KokkosKernels_batched_dla_threads
[ 79%] Linking CXX executable KokkosKernels_graph_serial
[ 79%] Built target KokkosKernels_graph_serial
[ 79%] Linking CXX executable KokkosKernels_graph_threads
[ 79%] Built target KokkosKernels_graph_threads
[ 79%] Linking CXX executable KokkosKernels_blas_threads
[ 79%] Built target KokkosKernels_blas_threads
[ 79%] Linking CXX executable KokkosKernels_blas_serial
[ 79%] Built target KokkosKernels_blas_serial
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.65/TestAll_2023-03-24_18.10.21/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake24: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
srun: Job step aborted: Waiting up to 32 seconds for job step to finish.
slurmstepd: error: *** STEP 1015417.0 ON blake25 CANCELLED AT 2023-03-24T18:29:30 ***
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 335 (click to expand)

Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse d5fe892f4c6dd908114b74263a659ff012ab1138^{commit} # timeout=10
Checking out Revision d5fe892f4c6dd908114b74263a659ff012ab1138 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f d5fe892f4c6dd908114b74263a659ff012ab1138 # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c773957165d1058794bde140ceea99b608c805a4 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
Commit message: "Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins3732219411896506336.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-Threads_Serial-release
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=408 run_time=97
gcc-10.2.0-Threads_Serial-release build_time=589 run_time=186
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 296 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse d5fe892f4c6dd908114b74263a659ff012ab1138^{commit} # timeout=10
Checking out Revision d5fe892f4c6dd908114b74263a659ff012ab1138 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f d5fe892f4c6dd908114b74263a659ff012ab1138 # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c773957165d1058794bde140ceea99b608c805a4 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
Commit message: "Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins7814585904728552910.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=627 run_time=186
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
Commit message: "Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins2025563394889104299.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      docs/cwpearson-html-only -> upstream/docs/cwpearson-html-only
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1255 run_time=102
intel-19.5.281-Threads-release build_time=866 run_time=112
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse d5fe892f4c6dd908114b74263a659ff012ab1138^{commit} # timeout=10
Checking out Revision d5fe892f4c6dd908114b74263a659ff012ab1138 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f d5fe892f4c6dd908114b74263a659ff012ab1138 # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c773957165d1058794bde140ceea99b608c805a4 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
Commit message: "Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins5663414560415121278.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release build_time=692 run_time=212
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

 * [new tag]             3.5.00                      -> 3.5.00
 * [new tag]             3.6.00                      -> 3.6.00
 * [new tag]             3.6.01                      -> 3.6.01
 * [new tag]             3.7.00                      -> 3.7.00
 * [new tag]             3.7.01                      -> 3.7.01
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3174
Running on machine: inouye
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: armpl/21.1.0
Testing compiler armpl/21.1.0
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-OpenMP-release
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-Serial-release
kokkos devices: Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
armpl-21.1.0-OpenMP-release build_time=1781 run_time=2185
armpl-21.1.0-Serial-release build_time=1646 run_time=251
salloc: Relinquishing job allocation 3174
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110
Finished: SUCCESS

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

The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
Commit message: "Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers"
 > git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins1086552682931532.sh
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3173
Running on machine: inouye
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=2488 run_time=1746
salloc: Relinquishing job allocation 3173
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020
Finished: SUCCESS

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

 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
Commit message: "Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers"
 > git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins996157782530258732.sh
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
Already up to date.
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? example/fenl/
?? example/gmres/KokkosSparse_MatrixPrec.hpp
?? example/gmres/KokkosSparse_Preconditioner.hpp
?? example/gmres/gmres.hpp
?? example/gmres/test_cmplx_A.cpp
?? example/gmres/test_real_A.cpp
?? graph/impl/KokkosGraph_LoadBalance_impl.hpp
?? graph/impl/KokkosGraph_MergePath_impl.hpp
?? graph/src/KokkosGraph_LoadBalance.hpp
?? graph/src/KokkosGraph_Merge.hpp
?? graph/src/KokkosGraph_MergePath.hpp
?? graph/unit_test/Test_Graph_load_balance.hpp
?? graph/unit_test/Test_Graph_merge.hpp
?? perf_test/graph/KokkosGraph_loadbalance.cpp
?? perf_test/graph/KokkosGraph_merge.cpp
?? perf_test/sparse/KokkosSparse_kk_spmv_merge.cpp
?? sparse/impl/KokkosSparse_spgemm_CUSP_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_cuSPARSE_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_mkl2phase_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_rocSPARSE_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_viennaCL_impl.hpp
?? sparse/tpls/KokkosSparse_spgemm_tpl_spec_avail.hpp
?? sparse/tpls/KokkosSparse_spgemm_tpl_spec_decl.hpp

KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 Merge pull request #6010 from masterleinad/fix_sycl_decorated_local_pointers

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=952 run_time=392
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Mar 25, 2023
@cwpearson cwpearson added the AT: RETEST Have this PR retested. label Mar 27, 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: 428
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 37
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 67
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 337
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 298
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 387
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 440
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 241
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 236
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 240
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/search
  • SHA: d5fe892
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 428
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 37
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 67
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 337
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 298
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 387
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 440
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 241
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 236
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 240
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 428 (click to expand)

error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
error: refs/remotes/origin/5-google-benchmark-blas2-tests does not point to a valid object!
error: refs/remotes/origin/8-refactor-cmake-mkl does not point to a valid object!
error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
error: refs/remotes/origin/5-google-benchmark-blas2-tests does not point to a valid object!
error: refs/remotes/origin/8-refactor-cmake-mkl does not point to a valid object!
error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
remote: Enumerating objects: 360, done.        
remote: Counting objects:   0% (1/351)        
remote: Counting objects:   1% (4/351)        
remote: Counting objects:   2% (8/351)        
remote: Counting objects:   3% (11/351)        
remote: Counting objects:   4% (15/351)        
remote: Counting objects:   5% (18/351)        
remote: Counting objects:   6% (22/351)        
remote: Counting objects:   7% (25/351)        
remote: Counting objects:   8% (29/351)        
remote: Counting objects:   9% (32/351)        
remote: Counting objects:  10% (36/351)        
remote: Counting objects:  11% (39/351)        
remote: Counting objects:  12% (43/351)        
remote: Counting objects:  13% (46/351)        
remote: Counting objects:  14% (50/351)        
remote: Counting objects:  15% (53/351)        
remote: Counting objects:  16% (57/351)        
remote: Counting objects:  17% (60/351)        
remote: Counting objects:  18% (64/351)        
remote: Counting objects:  19% (67/351)        
remote: Counting objects:  20% (71/351)        
remote: Counting objects:  21% (74/351)        
remote: Counting objects:  22% (78/351)        
remote: Counting objects:  23% (81/351)        
remote: Counting objects:  24% (85/351)        
remote: Counting objects:  25% (88/351)        
remote: Counting objects:  26% (92/351)        
remote: Counting objects:  27% (95/351)        
remote: Counting objects:  28% (99/351)        
remote: Counting objects:  29% (102/351)        
remote: Counting objects:  30% (106/351)        
remote: Counting objects:  31% (109/351)        
remote: Counting objects:  32% (113/351)        
remote: Counting objects:  33% (116/351)        
remote: Counting objects:  34% (120/351)        
remote: Counting objects:  35% (123/351)        
remote: Counting objects:  36% (127/351)        
remote: Counting objects:  37% (130/351)        
remote: Counting objects:  38% (134/351)        
remote: Counting objects:  39% (137/351)        
remote: Counting objects:  40% (141/351)        
remote: Counting objects:  41% (144/351)        
remote: Counting objects:  42% (148/351)        
remote: Counting objects:  43% (151/351)        
remote: Counting objects:  44% (155/351)        
remote: Counting objects:  45% (158/351)        
remote: Counting objects:  46% (162/351)        
remote: Counting objects:  47% (165/351)        
remote: Counting objects:  48% (169/351)        
remote: Counting objects:  49% (172/351)        
remote: Counting objects:  50% (176/351)        
remote: Counting objects:  51% (180/351)        
remote: Counting objects:  52% (183/351)        
remote: Counting objects:  53% (187/351)        
remote: Counting objects:  54% (190/351)        
remote: Counting objects:  55% (194/351)        
remote: Counting objects:  56% (197/351)        
remote: Counting objects:  57% (201/351)        
remote: Counting objects:  58% (204/351)        
remote: Counting objects:  59% (208/351)        
remote: Counting objects:  60% (211/351)        
remote: Counting objects:  61% (215/351)        
remote: Counting objects:  62% (218/351)        
remote: Counting objects:  63% (222/351)        
remote: Counting objects:  64% (225/351)        
remote: Counting objects:  65% (229/351)        
remote: Counting objects:  66% (232/351)        
remote: Counting objects:  67% (236/351)        
remote: Counting objects:  68% (239/351)        
remote: Counting objects:  69% (243/351)        
remote: Counting objects:  70% (246/351)        
remote: Counting objects:  71% (250/351)        
remote: Counting objects:  72% (253/351)        
remote: Counting objects:  73% (257/351)        
remote: Counting objects:  74% (260/351)        
remote: Counting objects:  75% (264/351)        
remote: Counting objects:  76% (267/351)        
remote: Counting objects:  77% (271/351)        
remote: Counting objects:  78% (274/351)        
remote: Counting objects:  79% (278/351)        
remote: Counting objects:  80% (281/351)        
remote: Counting objects:  81% (285/351)        
remote: Counting objects:  82% (288/351)        
remote: Counting objects:  83% (292/351)        
remote: Counting objects:  84% (295/351)        
remote: Counting objects:  85% (299/351)        
remote: Counting objects:  86% (302/351)        
remote: Counting objects:  87% (306/351)        
remote: Counting objects:  88% (309/351)        
remote: Counting objects:  89% (313/351)        
remote: Counting objects:  90% (316/351)        
remote: Counting objects:  91% (320/351)        
remote: Counting objects:  92% (323/351)        
remote: Counting objects:  93% (327/351)        
remote: Counting objects:  94% (330/351)        
remote: Counting objects:  95% (334/351)        
remote: Counting objects:  96% (337/351)        
remote: Counting objects:  97% (341/351)        
remote: Counting objects:  98% (344/351)        
remote: Counting objects:  99% (348/351)        
remote: Counting objects: 100% (351/351)        
remote: Counting objects: 100% (351/351), done.        
remote: Compressing objects:   0% (1/175)        
remote: Compressing objects:   1% (2/175)        
remote: Compressing objects:   2% (4/175)        
remote: Compressing objects:   3% (6/175)        
remote: Compressing objects:   4% (7/175)        
remote: Compressing objects:   5% (9/175)        
remote: Compressing objects:   6% (11/175)        
remote: Compressing objects:   7% (13/175)        
remote: Compressing objects:   8% (14/175)        
remote: Compressing objects:   9% (16/175)        
remote: Compressing objects:  10% (18/175)        
remote: Compressing objects:  11% (20/175)        
remote: Compressing objects:  12% (21/175)        
remote: Compressing objects:  13% (23/175)        
remote: Compressing objects:  14% (25/175)        
remote: Compressing objects:  15% (27/175)        
remote: Compressing objects:  16% (28/175)        
remote: Compressing objects:  17% (30/175)        
remote: Compressing objects:  18% (32/175)        
remote: Compressing objects:  19% (34/175)        
remote: Compressing objects:  20% (35/175)        
remote: Compressing objects:  21% (37/175)        
remote: Compressing objects:  22% (39/175)        
remote: Compressing objects:  23% (41/175)        
remote: Compressing objects:  24% (42/175)        
remote: Compressing objects:  25% (44/175)        
remote: Compressing objects:  26% (46/175)        
remote: Compressing objects:  27% (48/175)        
remote: Compressing objects:  28% (49/175)        
remote: Compressing objects:  29% (51/175)        
remote: Compressing objects:  30% (53/175)        
remote: Compressing objects:  31% (55/175)        
remote: Compressing objects:  32% (56/175)        
remote: Compressing objects:  33% (58/175)        
remote: Compressing objects:  34% (60/175)        
remote: Compressing objects:  35% (62/175)        
remote: Compressing objects:  36% (63/175)        
remote: Compressing objects:  37% (65/175)        
remote: Compressing objects:  38% (67/175)        
remote: Compressing objects:  39% (69/175)        
remote: Compressing objects:  40% (70/175)        
remote: Compressing objects:  41% (72/175)        
remote: Compressing objects:  42% (74/175)        
remote: Compressing objects:  43% (76/175)        
remote: Compressing objects:  44% (77/175)        
remote: Compressing objects:  45% (79/175)        
remote: Compressing objects:  46% (81/175)        
remote: Compressing objects:  47% (83/175)        
remote: Compressing objects:  48% (84/175)        
remote: Compressing objects:  49% (86/175)        
remote: Compressing objects:  50% (88/175)        
remote: Compressing objects:  51% (90/175)        
remote: Compressing objects:  52% (91/175)        
remote: Compressing objects:  53% (93/175)        
remote: Compressing objects:  54% (95/175)        
remote: Compressing objects:  55% (97/175)        
remote: Compressing objects:  56% (98/175)        
remote: Compressing objects:  57% (100/175)        
remote: Compressing objects:  58% (102/175)        
remote: Compressing objects:  59% (104/175)        
remote: Compressing objects:  60% (105/175)        
remote: Compressing objects:  61% (107/175)        
remote: Compressing objects:  62% (109/175)        
remote: Compressing objects:  63% (111/175)        
remote: Compressing objects:  64% (112/175)        
remote: Compressing objects:  65% (114/175)        
remote: Compressing objects:  66% (116/175)        
remote: Compressing objects:  67% (118/175)        
remote: Compressing objects:  68% (119/175)        
remote: Compressing objects:  69% (121/175)        
remote: Compressing objects:  70% (123/175)        
remote: Compressing objects:  71% (125/175)        
remote: Compressing objects:  72% (126/175)        
remote: Compressing objects:  73% (128/175)        
remote: Compressing objects:  74% (130/175)        
remote: Compressing objects:  75% (132/175)        
remote: Compressing objects:  76% (133/175)        
remote: Compressing objects:  77% (135/175)        
remote: Compressing objects:  78% (137/175)        
remote: Compressing objects:  79% (139/175)        
remote: Compressing objects:  80% (140/175)        
remote: Compressing objects:  81% (142/175)        
remote: Compressing objects:  82% (144/175)        
remote: Compressing objects:  83% (146/175)        
remote: Compressing objects:  84% (147/175)        
remote: Compressing objects:  85% (149/175)        
remote: Compressing objects:  86% (151/175)        
remote: Compressing objects:  87% (153/175)        
remote: Compressing objects:  88% (154/175)        
remote: Compressing objects:  89% (156/175)        
remote: Compressing objects:  90% (158/175)        
remote: Compressing objects:  91% (160/175)        
remote: Compressing objects:  92% (161/175)        
remote: Compressing objects:  93% (163/175)        
remote: Compressing objects:  94% (165/175)        
remote: Compressing objects:  95% (167/175)        
remote: Compressing objects:  96% (168/175)        
remote: Compressing objects:  97% (170/175)        
remote: Compressing objects:  98% (172/175)        
remote: Compressing objects:  99% (174/175)        
remote: Compressing objects: 100% (175/175)        
remote: Compressing objects: 100% (175/175), done.        
Receiving objects:   0% (1/360)   
Receiving objects:   1% (4/360)   
Receiving objects:   2% (8/360)   
Receiving objects:   3% (11/360)   
Receiving objects:   4% (15/360)   
Receiving objects:   5% (18/360)   
Receiving objects:   6% (22/360)   
Receiving objects:   7% (26/360)   
Receiving objects:   8% (29/360)   
Receiving objects:   9% (33/360)   
Receiving objects:  10% (36/360)   
Receiving objects:  11% (40/360)   
Receiving objects:  12% (44/360)   
Receiving objects:  13% (47/360)   
Receiving objects:  14% (51/360)   
Receiving objects:  15% (54/360)   
Receiving objects:  16% (58/360)   
Receiving objects:  17% (62/360)   
Receiving objects:  18% (65/360)   
Receiving objects:  19% (69/360)   
Receiving objects:  20% (72/360)   
Receiving objects:  21% (76/360)   
Receiving objects:  22% (80/360)   
Receiving objects:  23% (83/360)   
Receiving objects:  24% (87/360)   
Receiving objects:  25% (90/360)   
Receiving objects:  26% (94/360)   
Receiving objects:  27% (98/360)   
Receiving objects:  28% (101/360)   
Receiving objects:  29% (105/360)   
Receiving objects:  30% (108/360)   
Receiving objects:  31% (112/360)   
Receiving objects:  32% (116/360)   
Receiving objects:  33% (119/360)   
Receiving objects:  34% (123/360)   
Receiving objects:  35% (126/360)   
Receiving objects:  36% (130/360)   
Receiving objects:  37% (134/360)   
Receiving objects:  38% (137/360)   
Receiving objects:  39% (141/360)   
Receiving objects:  40% (144/360)   
Receiving objects:  41% (148/360)   
Receiving objects:  42% (152/360)   
Receiving objects:  43% (155/360)   
Receiving objects:  44% (159/360)   
Receiving objects:  45% (162/360)   
Receiving objects:  46% (166/360)   
Receiving objects:  47% (170/360)   
Receiving objects:  48% (173/360)   
Receiving objects:  49% (177/360)   
Receiving objects:  50% (180/360)   
Receiving objects:  51% (184/360)   
Receiving objects:  52% (188/360)   
Receiving objects:  53% (191/360)   
Receiving objects:  54% (195/360)   
Receiving objects:  55% (198/360)   
Receiving objects:  56% (202/360)   
Receiving objects:  57% (206/360)   
Receiving objects:  58% (209/360)   
Receiving objects:  59% (213/360)   
Receiving objects:  60% (216/360)   
Receiving objects:  61% (220/360)   
Receiving objects:  62% (224/360)   
Receiving objects:  63% (227/360)   
Receiving objects:  64% (231/360)   
Receiving objects:  65% (234/360)   
Receiving objects:  66% (238/360)   
Receiving objects:  67% (242/360)   
Receiving objects:  68% (245/360)   
Receiving objects:  69% (249/360)   
remote: Total 360 (delta 198), reused 299 (delta 175), pack-reused 9        
Receiving objects:  70% (252/360)   
Receiving objects:  71% (256/360)   
Receiving objects:  72% (260/360)   
Receiving objects:  73% (263/360)   
Receiving objects:  74% (267/360)   
Receiving objects:  75% (270/360)   
Receiving objects:  76% (274/360)   
Receiving objects:  77% (278/360)   
Receiving objects:  78% (281/360)   
Receiving objects:  79% (285/360)   
Receiving objects:  80% (288/360)   
Receiving objects:  81% (292/360)   
Receiving objects:  82% (296/360)   
Receiving objects:  83% (299/360)   
Receiving objects:  84% (303/360)   
Receiving objects:  85% (306/360)   
Receiving objects:  86% (310/360)   
Receiving objects:  87% (314/360)   
Receiving objects:  88% (317/360)   
Receiving objects:  89% (321/360)   
Receiving objects:  90% (324/360)   
Receiving objects:  91% (328/360)   
Receiving objects:  92% (332/360)   
Receiving objects:  93% (335/360)   
Receiving objects:  94% (339/360)   
Receiving objects:  95% (342/360)   
Receiving objects:  96% (346/360)   
Receiving objects:  97% (350/360)   
Receiving objects:  98% (353/360)   
Receiving objects:  99% (357/360)   
Receiving objects: 100% (360/360)   
Receiving objects: 100% (360/360), 443.76 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/201)   
Resolving deltas:   1% (4/201)   
Resolving deltas:   4% (9/201)   
Resolving deltas:   7% (16/201)   
Resolving deltas:   8% (17/201)   
Resolving deltas:  10% (21/201)   
Resolving deltas:  11% (23/201)   
Resolving deltas:  13% (27/201)   
Resolving deltas:  15% (31/201)   
Resolving deltas:  18% (37/201)   
Resolving deltas:  19% (39/201)   
Resolving deltas:  21% (44/201)   
Resolving deltas:  23% (47/201)   
Resolving deltas:  24% (49/201)   
Resolving deltas:  25% (52/201)   
Resolving deltas:  26% (53/201)   
Resolving deltas:  28% (58/201)   
Resolving deltas:  30% (61/201)   
Resolving deltas:  35% (71/201)   
Resolving deltas:  37% (76/201)   
Resolving deltas:  40% (82/201)   
Resolving deltas:  44% (89/201)   
Resolving deltas:  45% (91/201)   
Resolving deltas:  48% (98/201)   
Resolving deltas:  50% (102/201)   
Resolving deltas:  52% (105/201)   
Resolving deltas:  53% (107/201)   
Resolving deltas:  58% (117/201)   
Resolving deltas:  61% (123/201)   
Resolving deltas:  62% (125/201)   
Resolving deltas:  63% (127/201)   
Resolving deltas:  64% (130/201)   
Resolving deltas:  65% (131/201)   
Resolving deltas:  66% (133/201)   
Resolving deltas:  67% (136/201)   
Resolving deltas:  68% (137/201)   
Resolving deltas:  70% (142/201)   
Resolving deltas:  72% (146/201)   
Resolving deltas:  74% (150/201)   
Resolving deltas:  76% (153/201)   
Resolving deltas:  77% (156/201)   
Resolving deltas:  78% (157/201)   
Resolving deltas:  79% (159/201)   
Resolving deltas:  80% (161/201)   
Resolving deltas:  81% (163/201)   
Resolving deltas:  82% (165/201)   
Resolving deltas:  83% (168/201)   
Resolving deltas:  84% (170/201)   
Resolving deltas:  90% (181/201)   
Resolving deltas:  91% (184/201)   
Resolving deltas:  92% (185/201)   
Resolving deltas:  93% (188/201)   
Resolving deltas:  96% (193/201)   
Resolving deltas:  97% (195/201)   
Resolving deltas:  98% (197/201)   
Resolving deltas:  99% (199/201)   
Resolving deltas: 100% (201/201)   
Resolving deltas: 100% (201/201), completed with 29 local objects.
error: refs/remotes/origin/5-google-benchmark-blas2-tests does not point to a valid object!
error: refs/remotes/origin/8-refactor-cmake-mkl does not point to a valid object!
error: refs/remotes/origin/FixSpaddPerftest does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/spgemmPerfTestEnhancements does not point to a valid object!
error: refs/remotes/upstream/master does not point to a valid object!
error: refs/remotes/upstream/release-candidate-4.0.0 does not point to a valid object!
fatal: bad object HEAD
error: https://github.com/cwpearson/kokkos-kernels did not send all necessary objects
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2736)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2111)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:87)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:623)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:158)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:151)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:376)
at hudson.remoting.InterceptingExecutorService.lambda$wrap$0(InterceptingExecutorService.java:78)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.lang.Thread.run(Thread.java:834)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to weaver
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1784)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356)
	at hudson.remoting.Channel.call(Channel.java:1000)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:143)
	at sun.reflect.GeneratedMethodAccessor457.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:129)
	at com.sun.proxy.$Proxy81.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:1004)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1248)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1312)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:540)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1217)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:647)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:85)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:519)
	at hudson.model.Run.execute(Run.java:1897)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44)
	at hudson.model.ResourceController.execute(ResourceController.java:101)
	at hudson.model.Executor.run(Executor.java:442)

ERROR: Error fetching remote repo 'origin'
Finished: FAILURE

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

gcc-9.3.0-OpenMP-release build_time=962 run_time=283
gcc-9.3.0-OpenMP_Serial-release build_time=793 run_time=242
gcc-9.3.0-Serial-release build_time=505 run_time=134
Running on machine: weaver
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: gcc/9.3.0
Testing compiler gcc/9.3.0
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-9.3.0-OpenMP-release
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-Serial-release
kokkos devices: Serial
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-9.3.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-9.3.0-OpenMP-release build_time=470 run_time=98
gcc-9.3.0-Serial-release build_time=431 run_time=106
Running on machine: weaver
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: clang/13.0.0
Testing compiler clang/13.0.0
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Starting job clang-13.0.0-Cuda-release
kokkos devices: Cuda
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-13.0.0-Cuda-release
#######################################################
PASSED TESTS
#######################################################
clang-13.0.0-Cuda-release build_time=1075 run_time=526
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10
Finished: SUCCESS

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

 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_GCC1020] $ /bin/bash -el /tmp/jenkins4462071151619756057.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020
Running on machine: blake
ModuleCmd_Load.c(213):ERROR:105: Unable to locate a modulefile for 'git'
Running on machine: blake
ModuleCmd_Load.c(213):ERROR:105: Unable to locate a modulefile for 'cmake/3.19.3'
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --disable-test-eti-only
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
FAILED gcc-10.2.0-Threads_Serial-release
SETUP_ENV: compiler=gcc/10.2.0 modules=cmake/3.19.3 gcc/10.2.0
ModuleCmd_Load.c(213):ERROR:105: Unable to locate a modulefile for 'cmake/3.19.3'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 gcc/10.2.0

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.67/TestAll_2023-03-27_11.10.37/gcc/10.2.0/Threads_Serial-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake28: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 337 (click to expand)

Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse d5fe892f4c6dd908114b74263a659ff012ab1138^{commit} # timeout=10
Checking out Revision d5fe892f4c6dd908114b74263a659ff012ab1138 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f d5fe892f4c6dd908114b74263a659ff012ab1138 # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c773957165d1058794bde140ceea99b608c805a4 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins6839895041659422935.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-Threads_Serial-release
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=439 run_time=118
gcc-10.2.0-Threads_Serial-release build_time=1292 run_time=187
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 298 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse d5fe892f4c6dd908114b74263a659ff012ab1138^{commit} # timeout=10
Checking out Revision d5fe892f4c6dd908114b74263a659ff012ab1138 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f d5fe892f4c6dd908114b74263a659ff012ab1138 # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c773957165d1058794bde140ceea99b608c805a4 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins8874119060795755316.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=1401 run_time=187
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins3922950232965369265.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      docs/cwpearson-html-only -> upstream/docs/cwpearson-html-only
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1864 run_time=161
intel-19.5.281-Threads-release build_time=902 run_time=101
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos-kernels/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse d5fe892f4c6dd908114b74263a659ff012ab1138^{commit} # timeout=10
Checking out Revision d5fe892f4c6dd908114b74263a659ff012ab1138 (detached)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f d5fe892f4c6dd908114b74263a659ff012ab1138 # timeout=10
Commit message: "Adds team- and thread-based lower-bound and upper-bound search and predicates."
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c773957165d1058794bde140ceea99b608c805a4 # timeout=10
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins7083771724411026744.sh
Already up-to-date.
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
ModuleCmd_Load.c(213):ERROR:105: Unable to locate a modulefile for 'git'
Running on machine: blake
ModuleCmd_Load.c(213):ERROR:105: Unable to locate a modulefile for 'cmake/3.19.3'
KokkosKernels Repository Status:  d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
FAILED clang-10.0.1-Threads_Serial-release
SETUP_ENV: compiler=clang/10.0.1 modules=cmake/3.19.3 clang/10.0.1
ModuleCmd_Load.c(213):ERROR:105: Unable to locate a modulefile for 'cmake/3.19.3'
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release (configure failed)
#######################################################

Reproducer instructions:

Load modules:

    source /etc/profile.d/modules.sh
    module purge
    module load cmake/3.19.3 clang/10.0.1

cat: /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/KokkosKernels_PullRequest_CLANG1001.440/TestAll_2023-03-27_11.10.55/clang/10.0.1/Threads_Serial-release/call_generate_makefile_genericpath.sh: No such file or directory
srun: error: blake28: task 0: Exited with exit code 1
Build step 'Execute shell' marked build as failure
Finished: FAILURE

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

 * [new tag]             3.6.00                      -> 3.6.00
 * [new tag]             3.6.01                      -> 3.6.01
 * [new tag]             3.7.00                      -> 3.7.00
 * [new tag]             3.7.01                      -> 3.7.01
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3181
Running on machine: inouye
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: armpl/21.1.0
Testing compiler armpl/21.1.0
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-OpenMP-release
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-Serial-release
kokkos devices: Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
armpl-21.1.0-OpenMP-release build_time=2794 run_time=1175
armpl-21.1.0-Serial-release build_time=1671 run_time=248
salloc: Relinquishing job allocation 3181
salloc: Job allocation 3181 has been revoked.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110
Finished: SUCCESS

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

The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.19.2'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_A64FX_GCC1020] $ /bin/bash -el /tmp/jenkins5450072478825070011.sh
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
Already up to date.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3180
Running on machine: inouye
KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=3588 run_time=2173
salloc: Relinquishing job allocation 3180
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020
Finished: SUCCESS

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

 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 # timeout=10
Commit message: "SYCL: Make is_device_copyable future-proof (#6009)"
 > git rev-list --no-walk 79b824ed68f8ce0cf4b2da464cfd3fa214c072f0 # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins4395217536357473008.sh
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
error: refs/remotes/origin/get_ci_back_up does not point to a valid object!
Already up to date.
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
WARNING!! THE FOLLOWING CHANGES ARE UNCOMMITTED!! :
?? example/fenl/
?? example/gmres/KokkosSparse_MatrixPrec.hpp
?? example/gmres/KokkosSparse_Preconditioner.hpp
?? example/gmres/gmres.hpp
?? example/gmres/test_cmplx_A.cpp
?? example/gmres/test_real_A.cpp
?? graph/impl/KokkosGraph_LoadBalance_impl.hpp
?? graph/impl/KokkosGraph_MergePath_impl.hpp
?? graph/src/KokkosGraph_LoadBalance.hpp
?? graph/src/KokkosGraph_Merge.hpp
?? graph/src/KokkosGraph_MergePath.hpp
?? graph/unit_test/Test_Graph_load_balance.hpp
?? graph/unit_test/Test_Graph_merge.hpp
?? perf_test/graph/KokkosGraph_loadbalance.cpp
?? perf_test/graph/KokkosGraph_merge.cpp
?? perf_test/sparse/KokkosSparse_kk_spmv_merge.cpp
?? sparse/impl/KokkosSparse_spgemm_CUSP_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_cuSPARSE_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_mkl2phase_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_mkl_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_rocSPARSE_impl.hpp
?? sparse/impl/KokkosSparse_spgemm_viennaCL_impl.hpp
?? sparse/tpls/KokkosSparse_spgemm_tpl_spec_avail.hpp
?? sparse/tpls/KokkosSparse_spgemm_tpl_spec_decl.hpp

KokkosKernels Repository Status: d5fe892f4c6dd908114b74263a659ff012ab1138 Adds team- and thread-based lower-bound and upper-bound search and predicates.

Kokkos Repository Status: a7a2d715cd9dff1cefa66b9f2fc65dafb5df0719 SYCL: Make is_device_copyable future-proof (#6009)

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=2290 run_time=417
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

@kokkos-devops-admin kokkos-devops-admin removed the AT: RETEST Have this PR retested. label Mar 27, 2023
@cwpearson cwpearson added the AT: RETEST Have this PR retested. label Mar 28, 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: 432
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 41
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 71
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 341
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 302
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 391
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 444
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 245
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 240
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 244
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/search
  • SHA: d5fe892
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 432
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 41
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 71
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 341
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 302
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 391
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 444
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 245
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 240
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 244
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d5fe892
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 11d442b
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 432 (click to expand)

 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
***Forced exclusive execution
Job <53955> is submitted to queue .
<>
<>
Running on machine: weaver
KokkosKernels Repository Status:  8cec703775b488c300bfcee8e42de2347f66f32a Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: cuda/11.2.2
Testing compiler cuda/11.2.2
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Starting job cuda-11.2.2-Cuda_OpenMP-release
kokkos devices: Cuda,OpenMP
kokkos arch: Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED cuda-11.2.2-Cuda_OpenMP-release
#######################################################
PASSED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release build_time=4650 run_time=594
Running on machine: weaver
KokkosKernels Repository Status: 8cec703775b488c300bfcee8e42de2347f66f32a Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: cuda/11.2.2
Testing compiler cuda/11.2.2
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Unrecognized compiler cuda/11.2.2 when looking for Spack variants
Starting job cuda-11.2.2-Cuda_OpenMP-release
kokkos devices: Cuda,OpenMP
kokkos arch: Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED cuda-11.2.2-Cuda_OpenMP-release
#######################################################
PASSED TESTS
#######################################################
cuda-11.2.2-Cuda_OpenMP-release build_time=5127 run_time=591
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight
Finished: SUCCESS

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

gcc-9.3.0-OpenMP-release build_time=717 run_time=144
gcc-9.3.0-OpenMP_Serial-release build_time=651 run_time=257
gcc-9.3.0-Serial-release build_time=482 run_time=110
Running on machine: weaver
KokkosKernels Repository Status:  a8d7903c2f3b87440f307da7dd35317f697847ec Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: gcc/9.3.0
Testing compiler gcc/9.3.0
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-9.3.0-OpenMP-release
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Unrecognized compiler gcc/9.3.0 when looking for Spack variants
Starting job gcc-9.3.0-Serial-release
kokkos devices: Serial
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-9.3.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-9.3.0-OpenMP-release build_time=455 run_time=96
gcc-9.3.0-Serial-release build_time=420 run_time=107
Running on machine: weaver
KokkosKernels Repository Status: a8d7903c2f3b87440f307da7dd35317f697847ec Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: clang/13.0.0
Testing compiler clang/13.0.0
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Unrecognized compiler clang/13.0.0 when looking for Spack variants
Starting job clang-13.0.0-Cuda-release
kokkos devices: Cuda
kokkos arch: Power9,Volta70
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-13.0.0-Cuda-release
#######################################################
PASSED TESTS
#######################################################
clang-13.0.0-Cuda-release build_time=993 run_time=526
/home/jenkins/weaver-new/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10
Finished: SUCCESS

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

  190 |         haystack.push_back(minEntry + rand() % (maxEntry - minEntry));
      |                                       ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:195:42: error: invalid operands of types int and float to binary operator%
  195 |       const T needle = minEntry + rand() % (maxEntry - minEntry);
      |                                   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp: In instantiation of void test_upper_bound() [with T = double; Device = Kokkos::Serial]:
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:235:1:   required from here
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:190:46: error: invalid operands of types int and double to binary operator%
  190 |         haystack.push_back(minEntry + rand() % (maxEntry - minEntry));
      |                                       ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/kokkos-kernels/common/unit_test/Test_Common_UpperBound.hpp:195:42: error: invalid operands of types int and double to binary operator%
  195 |       const T needle = minEntry + rand() % (maxEntry - minEntry);
      |                                   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/backends/Test_Threads_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_threads.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/backends/Test_Serial_Common.cpp.o] Error 1
make[1]: *** [common/unit_test/CMakeFiles/KokkosKernels_common_serial.dir/all] Error 2
[ 77%] Linking CXX executable KokkosKernels_batched_sla_serial
[ 77%] Linking CXX executable KokkosKernels_batched_sla_threads
[ 77%] Built target KokkosKernels_batched_sla_threads
[ 77%] Built target KokkosKernels_batched_sla_serial
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_threads
[ 77%] Linking CXX executable KokkosKernels_batched_gemm_serial
[ 77%] Built target KokkosKernels_batched_gemm_serial
[ 77%] Built target KokkosKernels_batched_gemm_threads
[ 78%] Linking CXX executable KokkosKernels_batched_dla_threads
[ 78%] Built target KokkosKernels_batched_dla_threads
[ 78%] Linking CXX executable KokkosKernels_batched_dla_serial
[ 78%] Built target KokkosKernels_batched_dla_serial
[ 79%] Linking CXX executable KokkosKernels_graph_serial
[ 79%] Built target KokkosKernels_graph_serial
[ 79%] Linking CXX executable KokkosKernels_graph_threads
[ 79%] Built target KokkosKernels_graph_threads
[ 79%] Linking CXX executable KokkosKernels_blas_serial
[ 79%] Built target KokkosKernels_blas_serial
[ 79%] Linking CXX executable KokkosKernels_blas_threads
[ 79%] Built target KokkosKernels_blas_threads
make: *** [all] Error 2
#######################################################
PASSED TESTS
#######################################################
#######################################################
FAILED TESTS
#######################################################
gcc-10.2.0-Threads_Serial-release (build failed)
#######################################################
  # Reproducer instructions:
  #   Load modules:
        source /etc/profile.d/modules.sh
        module purge
        module load cmake/3.19.3 gcc/10.2.0

$KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=SKX --compiler=/home/projects/x86-64/gcc/10.2.0/bin/g++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized " --cxxstandard="17" --ldflags="" --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars='double,complex_double' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls= --with-options= --with-cuda-options= --no-examples --disable-test-eti-only

To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:

  # Move to the build directory
    cd /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020/KokkosKernels_PullRequest_GCC1020.71/TestAll_2023-03-28_09.55.12/gcc/10.2.0/Threads_Serial-release
  # To reload modules
    source ./reload_modules.sh
  # To reconfigure
    ./call_generate_makefile.sh
  # To rebuild
    make -j
  # To retest
    ctest -V

#######################################################
srun: error: blake23: task 0: Exited with exit code 1
Process leaked file descriptors. See https://www.jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors for more information
Build step 'Execute shell' marked build as failure
srun: forcing job termination
srun: Job step aborted: Waiting up to 32 seconds for job step to finish.
slurmstepd: error: *** STEP 1015564.0 ON blake21 CANCELLED AT 2023-03-28T10:22:47 ***
srun: error: blake21: task 0: Killed
Finished: FAILURE

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC1020_Light_LayoutRight # 341 (click to expand)

 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 54da8a2bb4862c69b5b71da56b61de11dcd2ecff # timeout=10
[KokkosKernels_PullRequest_GCC1020_Light_LayoutRight] $ /bin/bash -el /tmp/jenkins143131194985401897.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      docs/cwpearson-html-only -> upstream/docs/cwpearson-html-only
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Running on machine: blake
KokkosKernels Repository Status:  8f61da1efd7eb12d3101a4ac39660d3a79dbde08 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-Threads_Serial-release
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args: --no-default-eti
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutRight
PASSED gcc-10.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP-release build_time=377 run_time=78
gcc-10.2.0-Threads_Serial-release build_time=1062 run_time=171
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_GCC1020_Light_LayoutRight
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC1020 # 302 (click to expand)

First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 8270db3ee328f73288362a88b4c99b5135cdde5a (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8270db3ee328f73288362a88b4c99b5135cdde5a # timeout=10
Commit message: "Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 54da8a2bb4862c69b5b71da56b61de11dcd2ecff # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC1020] $ /bin/bash -el /tmp/jenkins5354278700545882513.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      docs/cwpearson-html-only -> upstream/docs/cwpearson-html-only
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Running on machine: blake
KokkosKernels Repository Status:  9ebedc35aa19d13177acd6692a6bd89d2f6d81f6 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=1172 run_time=181
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_GCC1020
Finished: SUCCESS

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

 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 54da8a2bb4862c69b5b71da56b61de11dcd2ecff # timeout=10
[KokkosKernels_PullRequest_Tpls_INTEL19] $ /bin/bash -el /tmp/jenkins8409157765462523132.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      docs/cwpearson-html-only -> upstream/docs/cwpearson-html-only
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Running on machine: blake
KokkosKernels Repository Status:  9cf30ab1850209a31c972677023566afbea8f1d5 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: intel/19.5.281
Testing compiler intel/19.5.281
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-OpenMP-release
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Unrecognized compiler intel/19.5.281 when looking for Spack variants
Starting job intel-19.5.281-Threads-release
kokkos devices: Threads
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized -diag-disable=1011 -diag-disable=869 -diag-disable=1011 -diag-disable=869
extra_args: --disable-perftests
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-19.5.281-Threads-release
#######################################################
PASSED TESTS
#######################################################
intel-19.5.281-OpenMP-release build_time=1665 run_time=95
intel-19.5.281-Threads-release build_time=805 run_time=101
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_Tpls_INTEL19
Finished: SUCCESS

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

First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse --resolve-git-dir /home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: proxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 8270db3ee328f73288362a88b4c99b5135cdde5a (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 8270db3ee328f73288362a88b4c99b5135cdde5a # timeout=10
Commit message: "Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 54da8a2bb4862c69b5b71da56b61de11dcd2ecff # timeout=10
[KokkosKernels_PullRequest_CLANG1001] $ /bin/bash -el /tmp/jenkins4979854462085407710.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]      develop    -> upstream/develop
 * [new branch]      docs/cwpearson-html-only -> upstream/docs/cwpearson-html-only
 * [new branch]      master     -> upstream/master
 * [new branch]      release-candidate-3.2.1 -> upstream/release-candidate-3.2.1
 * [new branch]      release-candidate-3.3.0 -> upstream/release-candidate-3.3.0
 * [new branch]      release-candidate-3.3.1 -> upstream/release-candidate-3.3.1
 * [new branch]      release-candidate-3.4.0 -> upstream/release-candidate-3.4.0
 * [new branch]      release-candidate-3.4.1 -> upstream/release-candidate-3.4.1
 * [new branch]      release-candidate-3.5.0 -> upstream/release-candidate-3.5.0
 * [new branch]      release-candidate-3.6.0 -> upstream/release-candidate-3.6.0
 * [new branch]      release-candidate-3.6.01 -> upstream/release-candidate-3.6.01
 * [new branch]      release-candidate-3.7.00 -> upstream/release-candidate-3.7.00
 * [new branch]      release-candidate-3.7.01 -> upstream/release-candidate-3.7.01
 * [new branch]      release-candidate-3.7.02 -> upstream/release-candidate-3.7.02
 * [new branch]      release-candidate-4.0.0 -> upstream/release-candidate-4.0.0
 * [new tag]         4.0.00     -> 4.0.00
 * [new tag]         papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
From https://github.com/kokkos/kokkos-kernels
 * [new tag]         3.5.00     -> 3.5.00
 * [new tag]         3.6.00     -> 3.6.00
 * [new tag]         3.6.01     -> 3.6.01
 * [new tag]         3.7.00     -> 3.7.00
 * [new tag]         3.7.01     -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Running on machine: blake
KokkosKernels Repository Status:  87ff6556e7438e5f2e2c220fa4208de46e802f65 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: clang/10.0.1
Testing compiler clang/10.0.1
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Unrecognized compiler clang/10.0.1 when looking for Spack variants
Starting job clang-10.0.1-Threads_Serial-release
kokkos devices: Threads,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED clang-10.0.1-Threads_Serial-release
#######################################################
PASSED TESTS
#######################################################
clang-10.0.1-Threads_Serial-release build_time=1192 run_time=192
/home/jenkins/blake-new/workspace/KokkosKernels_PullRequest_CLANG1001
Finished: SUCCESS

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

 * [new tag]             3.7.00                      -> 3.7.00
 * [new tag]             3.7.01                      -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3189
Running on machine: inouye
KokkosKernels Repository Status: a823166431dcf60a940d65dff5b8efb860afdc08 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: armpl/21.1.0
Testing compiler armpl/21.1.0
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-OpenMP-release
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Unrecognized compiler armpl/21.1.0 when looking for Spack variants
Starting job armpl-21.1.0-Serial-release
kokkos devices: Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED armpl-21.1.0-Serial-release
#######################################################
PASSED TESTS
#######################################################
armpl-21.1.0-OpenMP-release build_time=2207 run_time=1106
armpl-21.1.0-Serial-release build_time=1652 run_time=248
salloc: Relinquishing job allocation 3189
salloc: Job allocation 3189 has been revoked.
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110
Finished: SUCCESS

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

 * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1
 * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0
 * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1
 * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0
 * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1
 * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0
 * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0
 * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01
 * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00
 * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01
 * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02
 * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0
 * [new tag]             4.0.00                      -> 4.0.00
 * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
 * [new tag]             3.5.00                      -> 3.5.00
 * [new tag]             3.6.00                      -> 3.6.00
 * [new tag]             3.6.01                      -> 3.6.01
 * [new tag]             3.7.00                      -> 3.7.00
 * [new tag]             3.7.01                      -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020

Currently Loaded Modules:

  1. gcc/10.2.0 11) numactl/2.0.12 21) parmetis/4.0.3
  2. autoconf/2.69 12) hwloc/1.11.11 22) metis/5.1.0
  3. automake/1.16.1 13) pmix/2.2.3 23) openblas/0.3.4
  4. libtool/2.4.6 14) ucx/1.7.0 24) superlu/5.2.1
  5. cmake/3.17.0 15) openmpi/4.0.2 25) superlu-dist/5.4.0
  6. git/2.19.2 16) curl/7.71.0 26) boost/1.72.0
  7. zlib/1.2.11 17) netcdf-c/4.6.3 27) fftw/3.3.8
  8. bzip2/1.0.6 18) parallel-netcdf/1.11.1 28) singularity/3.5.3
  9. xz/5.2.4 19) hdf5/1.10.5 29) devpack-gnu10/20201002
  10. yaml-cpp/0.6.2 20) cgns/3.4.0

Currently Loaded Modules:

  1. cmake/3.17.0

salloc: Granted job allocation 3190
Running on machine: inouye
KokkosKernels Repository Status: 37b7095d87eff3b6f5065e3c2ce4800e186c17c5 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: gcc/10.2.0
Testing compiler gcc/10.2.0
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Unrecognized compiler gcc/10.2.0 when looking for Spack variants
Starting job gcc-10.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: A64FX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-10.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-10.2.0-OpenMP_Serial-release build_time=3091 run_time=1754
salloc: Relinquishing job allocation 3190
/home/jenkins/inouye/workspace/workspace/KokkosKernels_PullRequest_A64FX_GCC1020
Finished: SUCCESS

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

First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520/kokkos/.git # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.31.1'
Setting http proxy: proxy.sandia.gov:80
 > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision 8270db3ee328f73288362a88b4c99b5135cdde5a (origin/develop)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 8270db3ee328f73288362a88b4c99b5135cdde5a # timeout=10
Commit message: "Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda"
 > git rev-list --no-walk 54da8a2bb4862c69b5b71da56b61de11dcd2ecff # timeout=10
[KokkosKernels_PullRequest_VEGA908_ROCM520] $ /bin/bash -el /tmp/jenkins565497762796845421.sh
From https://github.com/kokkos/kokkos-kernels
 * [new branch]          develop                     -> upstream/develop
 * [new branch]          docs/cwpearson-html-only    -> upstream/docs/cwpearson-html-only
 * [new branch]          master                      -> upstream/master
 * [new branch]          release-candidate-3.2.1     -> upstream/release-candidate-3.2.1
 * [new branch]          release-candidate-3.3.0     -> upstream/release-candidate-3.3.0
 * [new branch]          release-candidate-3.3.1     -> upstream/release-candidate-3.3.1
 * [new branch]          release-candidate-3.4.0     -> upstream/release-candidate-3.4.0
 * [new branch]          release-candidate-3.4.1     -> upstream/release-candidate-3.4.1
 * [new branch]          release-candidate-3.5.0     -> upstream/release-candidate-3.5.0
 * [new branch]          release-candidate-3.6.0     -> upstream/release-candidate-3.6.0
 * [new branch]          release-candidate-3.6.01    -> upstream/release-candidate-3.6.01
 * [new branch]          release-candidate-3.7.00    -> upstream/release-candidate-3.7.00
 * [new branch]          release-candidate-3.7.01    -> upstream/release-candidate-3.7.01
 * [new branch]          release-candidate-3.7.02    -> upstream/release-candidate-3.7.02
 * [new branch]          release-candidate-4.0.0     -> upstream/release-candidate-4.0.0
 * [new tag]             4.0.00                      -> 4.0.00
 * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022
 * [new tag]             3.5.00                      -> 3.5.00
 * [new tag]             3.6.00                      -> 3.6.00
 * [new tag]             3.6.01                      -> 3.6.01
 * [new tag]             3.7.00                      -> 3.7.00
 * [new tag]             3.7.01                      -> 3.7.01
Merge made by the 'recursive' strategy.
 sparse/src/KokkosSparse_BsrMatrix.hpp | 198 +++++++++++++++++++---------------
 1 file changed, 111 insertions(+), 87 deletions(-)
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Running on machine: caraway
KokkosKernels Repository Status:  8c9ae863e2f607729ceedf597656bd3945e17177 Merge remote-tracking branch 'upstream/develop' into HEAD

Kokkos Repository Status: 8270db3ee328f73288362a88b4c99b5135cdde5a Merge pull request #6003 from masterleinad/fix_team_scratch_1_queues_sycl_cuda

Going to test compilers: rocm/5.2.0
Testing compiler rocm/5.2.0
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Unrecognized compiler rocm/5.2.0 when looking for Spack variants
Starting job rocm-5.2.0-Hip_Serial-release
Hip IS THE KOKKOS DEVICE
kokkos devices: Hip,Serial
kokkos arch: VEGA908
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED rocm-5.2.0-Hip_Serial-release
#######################################################
PASSED TESTS
#######################################################
rocm-5.2.0-Hip_Serial-release build_time=1424 run_time=392
/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA908_ROCM520
Finished: SUCCESS

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

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

@kokkos-devops-admin
Copy link

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

  • Other jobs have been previously started - We must stop them...

@cwpearson cwpearson added the AT: RETEST Have this PR retested. label Mar 29, 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: 439
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 47
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 77
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 347
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 308
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 397
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 450
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 251
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 246
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 250
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: feature/search
  • SHA: 6bcfac5
  • Mode: TEST_REPO

Pull Request Author: cwpearson

@kokkos-devops-admin
Copy link

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight

  • Build Num: 439
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 47
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020

  • Build Num: 77
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC1020_Light_LayoutRight

  • Build Num: 347
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC1020

  • Build Num: 308
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19

  • Build Num: 397
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001

  • Build Num: 450
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_Tpls_ARMPL2110

  • Build Num: 251
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_A64FX_GCC1020

  • Build Num: 246
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA908_ROCM520

  • Build Num: 250
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH feature/search
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 6bcfac5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA b483cfc
PR_LABELS AT: RETEST
PULLREQUESTNUM 1711
TEST_REPO_ALIAS KOKKOSKERNELS

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

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

@kokkos-devops-admin
Copy link

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

Copy link
Contributor

@lucbv lucbv left a comment

Choose a reason for hiding this comment

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

Good to go!

@kokkos-devops-admin
Copy link

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

@kokkos-devops-admin
Copy link

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

@lucbv lucbv merged commit 3d28a47 into kokkos:develop Mar 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants