kokkos / kokkos-kernels

Kokkos C++ Performance Portability Programming Ecosystem: Math Kernels - Provides BLAS, Sparse BLAS and Graph Kernels
Other
304 stars 96 forks source link

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

Closed cwpearson closed 3 months ago

cwpearson commented 3 months ago

This pull request provides an alternative Impl::alignPtrTo when SYCL is enabled. On SYCL, Impl::alignPtr was providing a misaligned or otherwise incorrect pointer (even when called on an aligned pointer), and calling Kokkos::atomic_add on it is either a no-op or just zeros out the memory, causing an incorrect result to be produced.

From SpGEMM: https://github.com/kokkos/kokkos-kernels/blob/0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff/sparse/impl/KokkosSparse_spgemm_impl_kkmem.hpp#L639-L640

https://github.com/kokkos/kokkos-kernels/blob/0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff/sparse/impl/KokkosSparse_spgemm_impl_kkmem.hpp#L795

This pull request also adds unit tests that assert SYCL still fails in this particular way. If those unit tests start to fail, this workaround can be revisited, perhaps to restore the original implementation.

Two other promising alternatives using the approaches below did not work either for unknown reasons. It's possible alignof(T) is not a power of 2, despite it being required by the standard: https://en.cppreference.com/w/cpp/language/object#Alignment

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

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

Thanks to @masterleinad for his help with this

Blake reproducer

salloc -p PV

source /projects/x86-64-icelake-rocky8/spack-config/blake-setup-user-module-env.sh
module purge
module load cmake intel-oneapi-compilers/2023.1.0 intel-oneapi-dpl/2022.1.0 git

export ROOT=$HOME/proj/fy24-spgemm/blake
export KOKKOS_SRC=$ROOT/kokkos
export KOKKOS_BUILD=/tmp/cwpears/kokkos-build
export KOKKOS_INSTALL=$ROOT/kokkos-install
export KERNELS_SRC=$ROOT/kokkos-kernels
export KERNELS_BUILD=/tmp/cwpears/kokkos-kernels-build
export ZES_ENABLE_SYSMAN=1
export ONEAPI_DEVICE_SELECTOR=ext_oneapi_level_zero:gpu

git clone --branch develop --depth 1 git@github.com:kokkos/kokkos.git $KOKKOS_SRC || true
git clone --branch develop git@github.com:kokkos/kokkos-kernels.git $KERNELS_SRC || true

cmake -S $KOKKOS_SRC -B $KOKKOS_BUILD \
  -DCMAKE_INSTALL_PREFIX=$KOKKOS_INSTALL \
  -DCMAKE_BUILD_TYPE=RelWithDebInfo \
  -DCMAKE_CXX_COMPILER=icpx \
  -DCMAKE_CXX_FLAGS="-fp-model=precise -Wno-deprecated-declarations -Wno-pass-failed" \
  -DBUILD_SHARED_LIBS=ON \
  -DKokkos_ENABLE_SYCL=ON \
  -DKokkos_ARCH_INTEL_PVC=ON \
  -DKokkos_ENABLE_ONEDPL=OFF \
  -DKokkos_ENABLE_TESTS=OFF

make -C $KOKKOS_BUILD -j 96 install

cmake -S $KERNELS_SRC -B $KERNELS_BUILD \
  -DCMAKE_BUILD_TYPE=RelWithDebInfo \
  -DCMAKE_CXX_COMPILER=icpx \
  -DCMAKE_CXX_FLAGS="-fp-model=precise -Wno-pass-failed" \
  -DBUILD_SHARED_LIBS=ON \
  -DKokkos_ROOT=$KOKKOS_INSTALL \
  -DKokkosKernels_ENABLE_TESTS=ON

make -C $KERNELS_BUILD -j96 KokkosKernels_sparse_sycl && $KERNELS_BUILD/sparse/unit_test/KokkosKernels_sparse_sycl --gtest_filter='*spgemm_d*'
kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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: 1402
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 990
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 647
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 634
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 635
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 639
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 611
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1091
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 606
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: fix/sycl-spgemm
  • SHA: 7e9f1bfa148e8239cbf13528f193b214659ffdf0
  • Mode: TEST_REPO
Pull Request Author: cwpearson
kokkos-devops-admin commented 3 months ago

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 990
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 647
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 634
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 635
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 639
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 611
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1091
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 606
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 7e9f1bfa148e8239cbf13528f193b214659ffdf0
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS
kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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

lucbv commented 3 months ago

I am a bit surprised we do not have something in Kokkos Core to do this type of pointer alignment? @masterleinad does that look reasonable to you?

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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: 1404
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 992
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 649
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 636
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 637
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 641
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 613
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1093
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 608
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: fix/sycl-spgemm
  • SHA: d05343f0892356f7ddb8a5fe89f78afc8e782b83
  • Mode: TEST_REPO
Pull Request Author: cwpearson
lucbv commented 3 months ago

It looks fine but there are some test failures in the auto-tester

kokkos-devops-admin commented 3 months ago

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 992
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 649
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 636
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 637
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 641
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 613
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1093
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 608
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d05343f0892356f7ddb8a5fe89f78afc8e782b83
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1404 (click to expand)

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

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

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

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

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

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

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

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

b''
b'33: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.637/TestAll_2024-07-01_10.10.27/gnu/10.2.1/OpenMP_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'33: Working Directory: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.637/TestAll_2024-07-01_10.10.27/gnu/10.2.1/OpenMP_Serial-release/example/wiki/graph'
b'33: Test timeout computed to be: 2500'
b'33: Graph reordered by reverse Cuthill-McKee:'
b'33:  *    *    *                        '
b'33: * *   *    **                       '
b'33:  * *       ***                      '
b'33:   * *       ***                     '
b'33:    * *       ***                    '
b'33:     *         **                    '
b'33: **     *   *    *                   '
b'33:       * *  *    **                  '
b'33:        * *      ***                 '
b'33:         * *      ***                '
b'33:          *        **                '
b'33: ***   **    *   *   *               '
b'33:  ***       * *  *   **              '
b'33:   ***       * *     ***             '
b'33:    ***       * *     ***            '
b'33:     **        *       **            '
b'33:       ***  **    *  *   *           '
b'33:        ***      * * *   **          '
b'33:         ***      * *    ***         '
b'33:          **       *      **         '
b'33:            ***  **   *  *  *        '
b'33:             ***     * * *  **       '
b'33:              ***     * *   ***      '
b'33:               **      *     **      '
b'33:                 *** **   * *  *     '
b'33:                  ***    * **  **    '
b'33:                   **     *    **    '
b'33:                     *** **  * * *   '
b'33:                      ***   * ** **  '
b'33:                       **    *   **  '
b'33:                         *****  ** * '
b'33:                          **   * * * '
b'33:                            ***** ***'
b'33:                             **  * **'
b'33:                               **** *'
b'33:                                 *** '
b'33: '
b'33/34 Test #33: wiki_rcm .........................   Passed    0.10 sec'
b'test 34'
b'      Start 34: gmres_test_prec'
b''
b'34: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.637/TestAll_2024-07-01_10.10.27/gnu/10.2.1/OpenMP_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'34: Working Directory: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.637/TestAll_2024-07-01_10.10.27/gnu/10.2.1/OpenMP_Serial-release/example/gmres'
b'34: Test timeout computed to be: 2500'
b'34: Convergence tolerance is: 1e-10'
b'34: ========================================='
b'34: Verify from main: Ending residual is 3.48957e-14'
b'34: Number of iterations is: 1'
b'34: Diff of residual from main - residual from solver: 0'
b'34: Convergence flag is : 0'
b'34: Test passed!'
b'34/34 Test #34: gmres_test_prec ..................   Passed    0.11 sec'
b''
b'94% tests passed, 2 tests failed out of 34'
b''
b'Total Test time (real) = 252.98 sec'
b''
b'The following tests FAILED:'
b'\t  1 - common_serial (Failed)'
b'\t  2 - common_openmp (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'gnu-10.2.1-OpenMP_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake gnu/10.2.1 openblas/0.3.21'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b'        export KOKKOS_NUM_THREADS=8'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=OpenMP,Serial --arch=BDW --compiler=/opt/rh/gcc-toolset-10/root/usr/bin/g++ --cxxflags="-O3  " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas    --with-options= --with-cuda-options=   --no-examples  --cmake-flags= --kokkos-cmake-flags= '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/KokkosKernels_PullRequest_Tpls_GNU1021.637/TestAll_2024-07-01_10.10.27/gnu/10.2.1/OpenMP_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo145: task 0: Exited with exit code 1'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'Finished: SUCCESS'
b''

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

b'--num=N: Number of jobs to run in parallel'
b'--spot-check: Minimal test set to issue pull request'
b'--spot-check-tpls: Minimal test set enabling blas and lapack tpls'
b'--timeout: Max time before ctest timeout (in seconds)'
b'--dry-run: Just print what would be executed'
b"--build-only: Just do builds, don't run anything"
b'--opt-flag=FLAG: Optimization flag (default: -O3)'
b'--cxxflags-extra=FLAGS: Extra flags to be added to CXX_FLAGS'
b'--ldflags-extra=FLAGS: Extra flags to be added to LD_FLAGS'
b''
b'--arch=ARCHITECTURE: overwrite architecture flags'
b'                     Provide a comma-separated list of arch codes (see available at link below):'
b'                       https://github.com/kokkos/kokkos/wiki/Compiling#table-43-architecture-variables'
b''
b'--with-cuda-options=OPT: set KOKKOS_CUDA_OPTIONS'
b'                         Provide a comma-separated list from the following valid items:'
b'                           force_uvm,use_ldg,enable_lambda,rdc'
b''
b'--with-options=OPT: set KOKKOS_OPTIONS'
b'                    Provide a comma-separated list from the following valid items:'
b'                      compiler_warnings'
b'                      aggressive_vectorization = add ivdep on loops'
b'                      disable_profiling = do not compile with profiling hooks'
b''
b'--build-list=BUILD,BUILD,BUILD...'
b'    Provide a comma-separated list of builds instead of running all builds'
b'    Valid items:'
b'      OpenMP, Threads, Serial, OpenMP_Serial, Threads_Serial'
b'      Cuda_OpenMP, Cuda_Threads, Cuda_Serial'
b''
b'--with-scalars=SCALARS: set KOKKOSKERNELS_SCALARS'
b'    Provide a comma-separated list scalar types'
b'    Valid items:'
b'      float, complex_float, double, complex_double'
b'        Example: SCALARS=double,complex_double'
b''
b'--with-ordinals=ORDS: set KOKKOSKERNELS_ORDINALS'
b'    Provide a comma-separated list ordinal types'
b'    Valid items:'
b'      int, int64_t'
b''
b'--with-offsets=OFFS: set KOKKOSKERNELS_OFFSETS'
b'    Provide a comma-separated list offset types'
b'    Valid items:'
b'      int, size_t'
b''
b'--with-layouts=LAYOUTS: set KOKKOSKERNELS_LAYOUTS'
b'    Provide a comma-separated list layouts'
b'    Valid items:'
b'      LayoutLeft,LayoutRight'
b''
b'--no-default-eti:  Do not include default ETI types for Kokkos Kernels'
b''
b'--disable-test-eti-only:  Do not restrict testing to ETI types for Kokkos Kernels'
b''
b'--with-spaces=SPACES:       Set spaces to be instantiated.'
b'                                Options: hostspace, cudaspace, cudauvmspace'
b''
b'--disable-perftests:  Do not build perftests for Kokkos Kernels'
b''
b'--enable-perftests:  build perftests for Kokkos Kernels (default)'
b''
b'--make-par-level=N:  Set parallelism level for builds (default: N=12)'
b''
b'--with-tpls=TPLS: set KOKKOSKERNELS_ENABLE_TPLS'
b'    Provide a comma-separated list of TPLs'
b'    Valid items:'
b'      blas, mkl, cublas, cusparse, cusolver, magma, armpl, rocblas, rocsparse, rocsolver'
b''
b'--cmake-flags=[CMAKE Command options]:  Set Kokkos Kernels cmake options not handled by script'
b'--kokkos-cmake-flags=[CMAKE Command options]:  Set Kokkos cmake options not handled by script'
b''
b'ARGS: list of expressions matching compilers to test'
b'  supported compilers sems'
b'    intel/19.1'
b'    gnu/10.2.1'
b''
b'Examples:'
b'  Run all tests'
b'  % test_all_sandia'
b''
b'  Run all gcc tests'
b'  % test_all_sandia gcc'
b''
b'  Run all gcc/4.8.4 and all intel tests'
b'  % test_all_sandia gcc/4.8.4 intel'
b''
b'  Run all tests in debug'
b'  % test_all_sandia --debug'
b''
b'  Run gcc/4.8.4 and only do OpenMP and OpenMP_Serial builds'
b'  % test_all_sandia gcc/4.8.4 --build-list=OpenMP,OpenMP_Serial'
b''
b'If you want to kill the tests, do:'
b'  hit ctrl-z'
b'  % kill -9 %1'
b''
b'srun: error: solo146: task 0: Exited with exit code 1'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 613 (click to expand)

b''
b'33: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.613/TestAll_2024-07-01_10.11.27/llvm/10.0.1/Threads_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'33: Working Directory: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.613/TestAll_2024-07-01_10.11.27/llvm/10.0.1/Threads_Serial-release/example/wiki/graph'
b'33: Test timeout computed to be: 2500'
b'33: Graph reordered by reverse Cuthill-McKee:'
b'33:  *    *    *                        '
b'33: * *   *    **                       '
b'33:  * *       ***                      '
b'33:   * *       ***                     '
b'33:    * *       ***                    '
b'33:     *         **                    '
b'33: **     *   *    *                   '
b'33:       * *  *    **                  '
b'33:        * *      ***                 '
b'33:         * *      ***                '
b'33:          *        **                '
b'33: ***   **    *   *   *               '
b'33:  ***       * *  *   **              '
b'33:   ***       * *     ***             '
b'33:    ***       * *     ***            '
b'33:     **        *       **            '
b'33:       ***  **    *  *   *           '
b'33:        ***      * * *   **          '
b'33:         ***      * *    ***         '
b'33:          **       *      **         '
b'33:            ***  **   *  *  *        '
b'33:             ***     * * *  **       '
b'33:              ***     * *   ***      '
b'33:               **      *     **      '
b'33:                 *** **   * *  *     '
b'33:                  ***    * **  **    '
b'33:                   **     *    **    '
b'33:                     *** **  * * *   '
b'33:                      ***   * ** **  '
b'33:                       **    *   **  '
b'33:                         *****  ** * '
b'33:                          **   * * * '
b'33:                            ***** ***'
b'33:                             **  * **'
b'33:                               **** *'
b'33:                                 *** '
b'33: '
b'33/34 Test #33: wiki_rcm .........................   Passed    0.07 sec'
b'test 34'
b'      Start 34: gmres_test_prec'
b''
b'34: Test command: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.613/TestAll_2024-07-01_10.11.27/llvm/10.0.1/Threads_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'34: Working Directory: /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.613/TestAll_2024-07-01_10.11.27/llvm/10.0.1/Threads_Serial-release/example/gmres'
b'34: Test timeout computed to be: 2500'
b'34: Convergence tolerance is: 1e-10'
b'34: ========================================='
b'34: Verify from main: Ending residual is 3.48957e-14'
b'34: Number of iterations is: 1'
b'34: Diff of residual from main - residual from solver: 0'
b'34: Convergence flag is : 0'
b'34: Test passed!'
b'34/34 Test #34: gmres_test_prec ..................   Passed    0.01 sec'
b''
b'94% tests passed, 2 tests failed out of 34'
b''
b'Total Test time (real) = 231.82 sec'
b''
b'The following tests FAILED:'
b'\t  1 - common_serial (Failed)'
b'\t  2 - common_threads (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'llvm-10.0.1-Threads_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake llvm/10.0.1 gnu/10.2.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b'        export KOKKOS_NUM_THREADS=8'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Threads,Serial --arch=BDW --compiler=/projects/netpub/sems/llvm/10.0.1/gcc/10.2.1/b4rc6cw/bin/clang++ --cxxflags="-O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized " --cxxstandard="17" --ldflags=""   --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  --cmake-flags= --kokkos-cmake-flags= '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/KokkosKernels_PullRequest_CLANG1001_solo.613/TestAll_2024-07-01_10.11.27/llvm/10.0.1/Threads_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: solo157: task 0: Exited with exit code 1'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_ROCM561 # 1093 (click to expand)

b''
b'33: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/KokkosKernels_PullRequest_VEGA90A_ROCM561.1093/TestAll_2024-07-01_10.12.02/rocm/5.6.1/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'33: Working Directory: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/KokkosKernels_PullRequest_VEGA90A_ROCM561.1093/TestAll_2024-07-01_10.12.02/rocm/5.6.1/Hip_Serial-release/example/wiki/graph'
b'33: Test timeout computed to be: 1500'
b'33: Graph reordered by reverse Cuthill-McKee:'
b'33:  *    *    *                        '
b'33: * *   *    **                       '
b'33:  * *       ***                      '
b'33:   * *       ***                     '
b'33:    * *       ***                    '
b'33:     *         **                    '
b'33: **     *   *    *                   '
b'33:       * *  *    **                  '
b'33:        * *      ***                 '
b'33:         * *      ***                '
b'33:          *        **                '
b'33: ***   **    *   *   *               '
b'33:  ***       * *  *   **              '
b'33:   ***       * *     ***             '
b'33:    ***       * *     ***            '
b'33:     **        *       **            '
b'33:       ***  **    *  *   *           '
b'33:        ***      * * *   **          '
b'33:         ***      * *    ***         '
b'33:          **       *      **         '
b'33:            ***  **   *  *  *        '
b'33:             ***     * * *  **       '
b'33:              ***     * *   ***      '
b'33:               **      *     **      '
b'33:                 *** **   * *  *     '
b'33:                  ***    * **  **    '
b'33:                   **     *    **    '
b'33:                     *** **  * * *   '
b'33:                      ***   * ** **  '
b'33:                       **    *   **  '
b'33:                         *****  ** * '
b'33:                          **   * * * '
b'33:                            ***** ***'
b'33:                             **  * **'
b'33:                               **** *'
b'33:                                 *** '
b'33: '
b'33/34 Test #33: wiki_rcm .........................   Passed    0.40 sec'
b'test 34'
b'      Start 34: gmres_test_prec'
b''
b'34: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/KokkosKernels_PullRequest_VEGA90A_ROCM561.1093/TestAll_2024-07-01_10.12.02/rocm/5.6.1/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'34: Working Directory: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/KokkosKernels_PullRequest_VEGA90A_ROCM561.1093/TestAll_2024-07-01_10.12.02/rocm/5.6.1/Hip_Serial-release/example/gmres'
b'34: Test timeout computed to be: 1500'
b'34: Convergence tolerance is: 1e-10'
b'34: ========================================='
b'34: Verify from main: Ending residual is 3.48957e-14'
b'34: Number of iterations is: 1'
b'34: Diff of residual from main - residual from solver: 0'
b'34: Convergence flag is : 0'
b'34: Test passed!'
b'34/34 Test #34: gmres_test_prec ..................   Passed    0.48 sec'
b''
b'94% tests passed, 2 tests failed out of 34'
b''
b'Total Test time (real) = 493.86 sec'
b''
b'The following tests FAILED:'
b'\t  1 - common_hip (Failed)'
b'\t  2 - common_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.6.1-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake rocm/5.6.1'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b'        export KOKKOS_NUM_THREADS=8'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA90A --compiler=/opt/rocm-5.6.1/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=    --with-options= --with-cuda-options=   --no-examples  --cmake-flags= --kokkos-cmake-flags= '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/KokkosKernels_PullRequest_VEGA90A_ROCM561.1093/TestAll_2024-07-01_10.12.02/rocm/5.6.1/Hip_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: lean2: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Finished: FAILURE'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561 # 608 (click to expand)

b'33: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561.608/TestAll_2024-07-01_10.12.10/rocm/5.6.1/Hip_Serial-release/example/wiki/graph/KokkosKernels_wiki_rcm'
b'33: Working Directory: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561.608/TestAll_2024-07-01_10.12.10/rocm/5.6.1/Hip_Serial-release/example/wiki/graph'
b'33: Test timeout computed to be: 1500'
b'33: Graph reordered by reverse Cuthill-McKee:'
b'33:  *    *    *                        '
b'33: * *   *    **                       '
b'33:  * *       ***                      '
b'33:   * *       ***                     '
b'33:    * *       ***                    '
b'33:     *         **                    '
b'33: **     *   *    *                   '
b'33:       * *  *    **                  '
b'33:        * *      ***                 '
b'33:         * *      ***                '
b'33:          *        **                '
b'33: ***   **    *   *   *               '
b'33:  ***       * *  *   **              '
b'33:   ***       * *     ***             '
b'33:    ***       * *     ***            '
b'33:     **        *       **            '
b'33:       ***  **    *  *   *           '
b'33:        ***      * * *   **          '
b'33:         ***      * *    ***         '
b'33:          **       *      **         '
b'33:            ***  **   *  *  *        '
b'33:             ***     * * *  **       '
b'33:              ***     * *   ***      '
b'33:               **      *     **      '
b'33:                 *** **   * *  *     '
b'33:                  ***    * **  **    '
b'33:                   **     *    **    '
b'33:                     *** **  * * *   '
b'33:                      ***   * ** **  '
b'33:                       **    *   **  '
b'33:                         *****  ** * '
b'33:                          **   * * * '
b'33:                            ***** ***'
b'33:                             **  * **'
b'33:                               **** *'
b'33:                                 *** '
b'33: '
b'33/34 Test #33: wiki_rcm .........................   Passed    0.47 sec'
b'test 34'
b'      Start 34: gmres_test_prec'
b''
b'34: Test command: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561.608/TestAll_2024-07-01_10.12.10/rocm/5.6.1/Hip_Serial-release/example/gmres/KokkosKernels_gmres_test_prec'
b'34: Working Directory: /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561.608/TestAll_2024-07-01_10.12.10/rocm/5.6.1/Hip_Serial-release/example/gmres'
b'34: Test timeout computed to be: 1500'
b'34: Convergence tolerance is: 1e-10'
b'34: ========================================='
b'34: Verify from main: Ending residual is 3.48957e-14'
b'34: Number of iterations is: 1'
b'34: Diff of residual from main - residual from solver: 0'
b'34: Convergence flag is : 0'
b'34: Test passed!'
b'34/34 Test #34: gmres_test_prec ..................   Passed    0.63 sec'
b''
b'94% tests passed, 2 tests failed out of 34'
b''
b'Total Test time (real) = 498.52 sec'
b''
b'The following tests FAILED:'
b'\t  1 - common_hip (Failed)'
b'\t  2 - common_serial (Failed)'
b'Errors while running CTest'
b'#######################################################'
b'PASSED TESTS'
b'#######################################################'
b'#######################################################'
b'FAILED TESTS'
b'#######################################################'
b'rocm-5.6.1-Hip_Serial-release (test failed)'
b'#######################################################'
b'  # Reproducer instructions:'
b'  #   Load modules:'
b'        module purge'
b'        module load cmake rocm/5.6.1 openblas/0.3.23'
b'        export OMP_NUM_THREADS=8'
b'        export OMP_PROC_BIND=spread'
b'        export OMP_PLACES=cores'
b'        export KOKKOS_NUM_THREADS=8'
b''
b'  #     $KOKKOSKERNELS_PATH/cm_generate_makefile.bash --with-devices=Hip,Serial --arch=VEGA908A --compiler=/opt/rocm-5.6.1/bin/hipcc --cxxflags="-O3  " --cxxstandard="17" --ldflags=""  --with-hip --kokkos-path=$KOKKOS_PATH --kokkoskernels-path=$KOKKOSKERNELS_PATH --with-scalars=\'double,complex_double\' --with-ordinals=int --with-offsets=int,size_t --with-layouts=LayoutLeft --with-tpls=,blas,rocblas,rocsparse,rocsolver    --with-options= --with-cuda-options=   --no-examples  --cmake-flags= --kokkos-cmake-flags= '
b''
b'  #  To reload modules, reconfigure, rebuild, and retest directly from this failing build do the following:'
b'      # Move to the build directory'
b'        cd /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561.608/TestAll_2024-07-01_10.12.10/rocm/5.6.1/Hip_Serial-release'
b'      # To reload modules'
b'        source ./reload_modules.sh'
b'      # To reconfigure'
b'        ./call_generate_makefile.sh'
b'      # To rebuild'
b'        make -j'
b'      # To retest'
b'        ctest -V'
b'#######################################################'
b'srun: error: lean3: task 0: Exited with exit code 1'
b"Build step 'Execute shell' marked build as failure"
b'Sending e-mails to: cwpears@sandia.gov'
b'Finished: FAILURE'
b''

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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: 1405
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 993
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 650
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 637
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 638
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 642
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 614
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1094
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 609
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: fix/sycl-spgemm
  • SHA: c369ffa06e157b4c70f8a6725afc8741855afad5
  • Mode: TEST_REPO
Pull Request Author: cwpearson
kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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: 1405
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 993
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 650
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 637
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 638
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 642
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 614
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1094
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 609
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA c369ffa06e157b4c70f8a6725afc8741855afad5
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 41954e20d6811b5c21918bb195c8b6dd833c7736
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight # 1405 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on kkw in workspace /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > /home/projects/ppc64le/git/2.10.1/bin/git init /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10'
b" > git --version # 'git version 2.10.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://plugins.jenkins.io/git/#remove-git-plugin-buildsbybranch-builddata-script'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10'
b" > git --version # 'git version 2.10.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight] $ /bin/bash -el /tmp/jenkins11869037419621573955.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new branch]          release-candidate-4.3.00    -> upstream/release-candidate-4.3.00'
b' * [new branch]          release-candidate-4.3.01    -> upstream/release-candidate-4.3.01'
b' * [new tag]             4.3.01                      -> 4.3.01'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             4.2.01                      -> 4.2.01'
b' * [new tag]             4.3.00                      -> 4.3.00'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_CUDA11_CUDA11_LayoutRight'
b'***Forced exclusive execution'
b'Job <75348> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  fc25915975e30b93a693ed56d01e9c3f0cc8a7b5 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  cuda/11.2.2/gcc/8.3.1'
b'Testing compiler cuda/11.2.2/gcc/8.3.1'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'Unrecognized compiler cuda/11.2.2/gcc/8.3.1 when looking for Spack variants'
b'  Starting job cuda-11.2.2-gcc-8.3.1-Cuda_OpenMP-release'
b'kokkos devices: Cuda,OpenMP'
b'kokkos arch: Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: '
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on kkw in workspace /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > /home/projects/ppc64le/git/2.10.1/bin/git init /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10'
b" > git --version # 'git version 2.10.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse --resolve-git-dir /home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > /home/projects/ppc64le/git/2.10.1/bin/git --version # timeout=10'
b" > git --version # 'git version 2.10.1'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > /home/projects/ppc64le/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > /home/projects/ppc64le/git/2.10.1/bin/git config core.sparsecheckout # timeout=10'
b' > /home/projects/ppc64le/git/2.10.1/bin/git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > /home/projects/ppc64le/git/2.10.1/bin/git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10] $ /bin/bash -el /tmp/jenkins5042990905563974418.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new branch]          release-candidate-4.3.00    -> upstream/release-candidate-4.3.00'
b' * [new branch]          release-candidate-4.3.01    -> upstream/release-candidate-4.3.01'
b' * [new tag]             4.3.01                      -> 4.3.01'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             4.2.01                      -> 4.2.01'
b' * [new tag]             4.3.00                      -> 4.3.00'
b"Merge made by the 'recursive' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/home/jenkins/kkw/workspace/KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10'
b'***Forced exclusive execution'
b'Job <75349> is submitted to queue .'
b'<>'
b'<>'
b'Running on machine: weaver'
b"KokkosKernels Repository Status:  b4e11350e3576cbb11144c5d43578e3cafb68b7b Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  clang/13.0.0'
b'Testing compiler clang/13.0.0'
b'Unrecognized compiler clang/13.0.0 when looking for Spack variants'
b'Unrecognized compiler clang/13.0.0 when looking for Spack variants'
b'Unrecognized compiler clang/13.0.0 when looking for Spack variants'
b'  Starting job clang-13.0.0-Cuda-release'
b'kokkos devices: Cuda'
b'kokkos arch: Power9,Volta70'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: cusparse,cublas,blas'
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021] $ /bin/bash -l /tmp/jenkins8573042297059082226.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3062732 queued and waiting for resources'
b'srun: job 3062732 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  895884c96d0b1071f1fc8788383945e07d1c7232 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: '
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_GNU1021_Light_LayoutRight] $ /bin/bash -l /tmp/jenkins10453378737229272462.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_GNU1021_Light_LayoutRight'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3062733 queued and waiting for resources'
b'srun: job 3062733 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  2802653a16d0492863369f8ab5b88d428ea21c4c Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args:  --no-default-eti'
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutRight'
b'kokkoskernels tpls list: '
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_Tpls_GNU1021] $ /bin/bash -l /tmp/jenkins9204255477344321940.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_GNU1021'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3062734 queued and waiting for resources'
b'srun: job 3062734 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  ca549acf91c4e75feabcfa50bdb5106bd58ccae8 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  gnu/10.2.1'
b'Testing compiler gnu/10.2.1'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'Unrecognized compiler gnu/10.2.1 when looking for Spack variants'
b'  Starting job gnu-10.2.1-OpenMP_Serial-release'
b'kokkos devices: OpenMP,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: ,blas'
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

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

b'--num=N: Number of jobs to run in parallel'
b'--spot-check: Minimal test set to issue pull request'
b'--spot-check-tpls: Minimal test set enabling blas and lapack tpls'
b'--timeout: Max time before ctest timeout (in seconds)'
b'--dry-run: Just print what would be executed'
b"--build-only: Just do builds, don't run anything"
b'--opt-flag=FLAG: Optimization flag (default: -O3)'
b'--cxxflags-extra=FLAGS: Extra flags to be added to CXX_FLAGS'
b'--ldflags-extra=FLAGS: Extra flags to be added to LD_FLAGS'
b''
b'--arch=ARCHITECTURE: overwrite architecture flags'
b'                     Provide a comma-separated list of arch codes (see available at link below):'
b'                       https://github.com/kokkos/kokkos/wiki/Compiling#table-43-architecture-variables'
b''
b'--with-cuda-options=OPT: set KOKKOS_CUDA_OPTIONS'
b'                         Provide a comma-separated list from the following valid items:'
b'                           force_uvm,use_ldg,enable_lambda,rdc'
b''
b'--with-options=OPT: set KOKKOS_OPTIONS'
b'                    Provide a comma-separated list from the following valid items:'
b'                      compiler_warnings'
b'                      aggressive_vectorization = add ivdep on loops'
b'                      disable_profiling = do not compile with profiling hooks'
b''
b'--build-list=BUILD,BUILD,BUILD...'
b'    Provide a comma-separated list of builds instead of running all builds'
b'    Valid items:'
b'      OpenMP, Threads, Serial, OpenMP_Serial, Threads_Serial'
b'      Cuda_OpenMP, Cuda_Threads, Cuda_Serial'
b''
b'--with-scalars=SCALARS: set KOKKOSKERNELS_SCALARS'
b'    Provide a comma-separated list scalar types'
b'    Valid items:'
b'      float, complex_float, double, complex_double'
b'        Example: SCALARS=double,complex_double'
b''
b'--with-ordinals=ORDS: set KOKKOSKERNELS_ORDINALS'
b'    Provide a comma-separated list ordinal types'
b'    Valid items:'
b'      int, int64_t'
b''
b'--with-offsets=OFFS: set KOKKOSKERNELS_OFFSETS'
b'    Provide a comma-separated list offset types'
b'    Valid items:'
b'      int, size_t'
b''
b'--with-layouts=LAYOUTS: set KOKKOSKERNELS_LAYOUTS'
b'    Provide a comma-separated list layouts'
b'    Valid items:'
b'      LayoutLeft,LayoutRight'
b''
b'--no-default-eti:  Do not include default ETI types for Kokkos Kernels'
b''
b'--disable-test-eti-only:  Do not restrict testing to ETI types for Kokkos Kernels'
b''
b'--with-spaces=SPACES:       Set spaces to be instantiated.'
b'                                Options: hostspace, cudaspace, cudauvmspace'
b''
b'--disable-perftests:  Do not build perftests for Kokkos Kernels'
b''
b'--enable-perftests:  build perftests for Kokkos Kernels (default)'
b''
b'--make-par-level=N:  Set parallelism level for builds (default: N=12)'
b''
b'--with-tpls=TPLS: set KOKKOSKERNELS_ENABLE_TPLS'
b'    Provide a comma-separated list of TPLs'
b'    Valid items:'
b'      blas, mkl, cublas, cusparse, cusolver, magma, armpl, rocblas, rocsparse, rocsolver'
b''
b'--cmake-flags=[CMAKE Command options]:  Set Kokkos Kernels cmake options not handled by script'
b'--kokkos-cmake-flags=[CMAKE Command options]:  Set Kokkos cmake options not handled by script'
b''
b'ARGS: list of expressions matching compilers to test'
b'  supported compilers sems'
b'    intel/19.1'
b'    gnu/10.2.1'
b''
b'Examples:'
b'  Run all tests'
b'  % test_all_sandia'
b''
b'  Run all gcc tests'
b'  % test_all_sandia gcc'
b''
b'  Run all gcc/4.8.4 and all intel tests'
b'  % test_all_sandia gcc/4.8.4 intel'
b''
b'  Run all tests in debug'
b'  % test_all_sandia --debug'
b''
b'  Run gcc/4.8.4 and only do OpenMP and OpenMP_Serial builds'
b'  % test_all_sandia gcc/4.8.4 --build-list=OpenMP,OpenMP_Serial'
b''
b'If you want to kill the tests, do:'
b'  hit ctrl-z'
b'  % kill -9 %1'
b''
b'srun: error: solo107: task 0: Exited with exit code 1'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_Tpls_INTEL19_solo'
b'Finished: SUCCESS'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_CLANG1001_solo # 614 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on solo in workspace /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_CLANG1001_solo] $ /bin/bash -l /tmp/jenkins14544586556234926275.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * branch                develop    -> FETCH_HEAD'
b' * [new branch]          develop    -> upstream/develop'
b"Merge made by the 'ort' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/gpfs/jenkins/workspace/KokkosKernels_PullRequest_CLANG1001_solo'
b'srun: INFO: Adding filesystem licenses to job: qscratch:1,gpfs:1'
b'srun: job 3062737 queued and waiting for resources'
b'srun: job 3062737 has been allocated resources'
b'Running on machine: solo'
b"KokkosKernels Repository Status:  3e71d920bfd321fa36c877be768b0afcb828e5c4 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  llvm/10.0.1'
b'Testing compiler llvm/10.0.1'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'Unrecognized compiler llvm/10.0.1 when looking for Spack variants'
b'  Starting job llvm-10.0.1-Threads_Serial-release'
b'kokkos devices: Threads,Serial'
b'kokkos arch: BDW'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3 -Wall -Wunused-parameter -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: '
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_ROCM561 # 1094 (click to expand)

b'Running as SYSTEM'
b'[EnvInject] - Loading node environment variables.'
b'Building remotely on caraway (Testbed) in workspace /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561'
b'The recommended git tool is: NONE'
b'No credentials specified'
b'Wiping out workspace first.'
b'Cloning the remote Git repository'
b'Cloning repository https://github.com/cwpearson/kokkos-kernels'
b' > git init /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/kokkos-kernels # timeout=10'
b'Fetching upstream changes from https://github.com/cwpearson/kokkos-kernels'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/cwpearson/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_ROCM561] $ /bin/bash -el /tmp/jenkins13753652500444332185.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new branch]          release-candidate-4.3.00    -> upstream/release-candidate-4.3.00'
b' * [new branch]          release-candidate-4.3.01    -> upstream/release-candidate-4.3.01'
b' * [new tag]             4.3.01                      -> 4.3.01'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             4.2.01                      -> 4.2.01'
b' * [new tag]             4.3.00                      -> 4.3.00'
b"Merge made by the 'ort' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_ROCM561'
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  f22846d6ca7b5494cec86c9038fdd3f917713575 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  rocm/5.6.1'
b'Testing compiler rocm/5.6.1'
b'Unrecognized compiler rocm/5.6.1 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.1 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.1 when looking for Spack variants'
b'  Starting job rocm-5.6.1-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA90A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: '
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

Console Output (last 100 lines) : KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561 # 609 (click to expand)

b' > git config remote.origin.url https://github.com/cwpearson/kokkos-kernels # timeout=10'
b' > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10'
b'Avoid second fetch'
b' > git rev-parse c369ffa06e157b4c70f8a6725afc8741855afad5^{commit} # timeout=10'
b'Checking out Revision c369ffa06e157b4c70f8a6725afc8741855afad5 (detached)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f c369ffa06e157b4c70f8a6725afc8741855afad5 # timeout=10'
b'Commit message: "alignPtrTo unit test: fix team member type"'
b' > git rev-list --no-walk d05343f0892356f7ddb8a5fe89f78afc8e782b83 # timeout=10'
b'The recommended git tool is: NONE'
b'No credentials specified'
b' > git rev-parse --resolve-git-dir /home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561/kokkos/.git # timeout=10'
b'Fetching changes from the remote Git repository'
b' > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10'
b'Fetching upstream changes from https://github.com/kokkos/kokkos.git'
b' > git --version # timeout=10'
b" > git --version # 'git version 2.39.3'"
b'Setting http proxy: proxy.sandia.gov:80'
b' > git fetch --tags --force --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10'
b' > git rev-parse origin/4.3.00^{commit} # timeout=10'
b' > git rev-parse 4.3.00^{commit} # timeout=10'
b'Checking out Revision 486cc745cb9a287f3915061455105a3ee588c616 (4.3.00)'
b' > git config core.sparsecheckout # timeout=10'
b' > git checkout -f 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'Commit message: "Merge pull request #6908 from ndellingwood/master-release-4.3.00"'
b' > git rev-list --no-walk 486cc745cb9a287f3915061455105a3ee588c616 # timeout=10'
b'[KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561] $ /bin/bash -el /tmp/jenkins757056874150536694.sh'
b'From https://github.com/kokkos/kokkos-kernels'
b' * [new branch]          develop                     -> upstream/develop'
b' * [new branch]          master                      -> upstream/master'
b' * [new branch]          release-candidate-4.1.00    -> upstream/release-candidate-4.1.00'
b' * [new branch]          release-candidate-4.2.00    -> upstream/release-candidate-4.2.00'
b' * [new branch]          release-candidate-4.2.01    -> upstream/release-candidate-4.2.01'
b' * [new branch]          release-candidate-4.3.00    -> upstream/release-candidate-4.3.00'
b' * [new branch]          release-candidate-4.3.01    -> upstream/release-candidate-4.3.01'
b' * [new tag]             4.3.01                      -> 4.3.01'
b' * [new tag]             papers/us-rse-escience-2022 -> papers/us-rse-escience-2022'
b' * [new tag]             3.5.00                      -> 3.5.00'
b' * [new tag]             3.6.00                      -> 3.6.00'
b' * [new tag]             3.6.01                      -> 3.6.01'
b' * [new tag]             3.7.00                      -> 3.7.00'
b' * [new tag]             3.7.01                      -> 3.7.01'
b' * [new tag]             4.0.00                      -> 4.0.00'
b' * [new tag]             4.0.01                      -> 4.0.01'
b' * [new tag]             4.1.00                      -> 4.1.00'
b' * [new tag]             4.2.00                      -> 4.2.00'
b' * [new tag]             4.2.01                      -> 4.2.01'
b' * [new tag]             4.3.00                      -> 4.3.00'
b"Merge made by the 'ort' strategy."
b' .github/workflows/codeql.yml                     | 4 ++--'
b' .github/workflows/scorecards.yml                 | 2 +-'
b' sparse/impl/KokkosSparse_spadd_symbolic_impl.hpp | 5 ++---'
b' 3 files changed, 5 insertions(+), 6 deletions(-)'
b'/home/jenkins/caraway-new/workspace/KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561'
b''
b'----------------------------------------------------------------------------'
b'  rocm:'
b'----------------------------------------------------------------------------'
b'     Versions:'
b'        rocm/5.2.0'
b'        rocm/5.6.1'
b'        rocm/6.0.0'
b''
b'----------------------------------------------------------------------------'
b'  For detailed information about a specific "rocm" package (including how to load the modules) use the module\'s full name.'
b'  Note that names that have a trailing (E) are extensions provided by other modules.'
b'  For example:'
b''
b'     $ module spider rocm/6.0.0'
b'----------------------------------------------------------------------------'
b''
b' '
b''
b'Running on machine: vega90a_caraway'
b"KokkosKernels Repository Status:  36ed74e153fa1603ef9250eb6842ec64c54e8d38 Merge remote-tracking branch 'upstream/develop' into HEAD"
b''
b'Kokkos Repository Status:  486cc745cb9a287f3915061455105a3ee588c616 Merge pull request #6908 from ndellingwood/master-release-4.3.00'
b''
b''
b'Going to test compilers:  rocm/5.6.1'
b'Testing compiler rocm/5.6.1'
b'Unrecognized compiler rocm/5.6.1 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.1 when looking for Spack variants'
b'Unrecognized compiler rocm/5.6.1 when looking for Spack variants'
b'  Starting job rocm-5.6.1-Hip_Serial-release'
b'Hip IS THE KOKKOS DEVICE'
b'kokkos devices: Hip,Serial'
b'kokkos arch: VEGA908A'
b'kokkos options: '
b'kokkos cuda options: '
b'kokkos cxxflags: -O3  '
b'extra_args: '
b"kokkoskernels scalars: 'double,complex_double'"
b'kokkoskernels ordinals: int'
b'kokkoskernels offsets: int,size_t'
b'kokkoskernels layouts: LayoutLeft'
b'kokkoskernels tpls list: ,blas,rocblas,rocsparse,rocsolver'
b'Build was aborted'
b'Aborted by Evan Harvey'
b'Finished: ABORTED'
b''

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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: 1406
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 994
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 651
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 638
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 639
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 643
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 615
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1095
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 610
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (cwpearson/kokkos-kernels)
  • Branch: fix/sycl-spgemm
  • SHA: d40590415f5df76ac9228eb0d85254e860fcc925
  • Mode: TEST_REPO
Pull Request Author: cwpearson
kokkos-devops-admin commented 3 months ago

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

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC930_Light_Tpls_GCC930_Tpls_CLANG13CUDA10

  • Build Num: 994
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021

  • Build Num: 651
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GNU1021_Light_LayoutRight

  • Build Num: 638
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GNU1021

  • Build Num: 639
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL19_solo

  • Build Num: 643
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_CLANG1001_solo

  • Build Num: 615
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_ROCM561

  • Build Num: 1095
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_VEGA90A_Tpls_ROCM561

  • Build Num: 610
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_REPO https://github.com/cwpearson/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d40590415f5df76ac9228eb0d85254e860fcc925
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 0a0c04836c0ffd7cb85ab17b3f1e34ae3c919bff
PR_LABELS
PULLREQUESTNUM 2262
TEST_REPO_ALIAS KOKKOSKERNELS
kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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

kokkos-devops-admin commented 3 months ago

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

cwpearson commented 3 months ago

Kokkos Core is tracking the source of this issue and raising it with Intel: https://github.com/kokkos/kokkos/issues/7116

masterleinad commented 2 months ago

This likely just works because the pointer value is not modified since the pointer is already correctly aligned. As soon as you add something to pointer, we get a wring pointer address. In other words, the current (common) implementation should also "work" if you provide a shortcut for when the pointer is already correctly aligned.