Skip to content
Failed

Console Output

Pull request #6610 updated
11:49:05 Connecting to https://api.github.com using Jenkins ORNL
Obtained .jenkins from a80d7cbc9a2b07a752cc9b5bee42694582ab5f20
[Pipeline] Start of Pipeline
[Pipeline] withEnv
[Pipeline] {
[Pipeline] timeout
Timeout set to expire in 6 hr 0 min
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Clang-Format)
[Pipeline] node
Running on CpuNode5 in /var/jenkins/workspace/Kokkos_PR-6610
[Pipeline] {
[Pipeline] checkout
Selected Git installation does not exist. Using Default
The recommended git tool is: NONE
using credential Jenkins ORNL
Fetching changes from the remote Git repository
Fetching without tags
Checking out Revision a80d7cbc9a2b07a752cc9b5bee42694582ab5f20 (PR-6610)
Commit message: "unorderedmap: adding missing 'space' argument for map erasure"
 > git rev-parse --resolve-git-dir /var/jenkins/workspace/Kokkos_PR-6610/.git # timeout=10
 > git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > git --version # timeout=10
 > git --version # 'git version 2.17.1'
using GIT_ASKPASS to set credentials 
 > git fetch --no-tags --progress -- https://github.com/kokkos/kokkos.git +refs/pull/6610/head:refs/remotes/origin/PR-6610 # timeout=10
 > git config core.sparsecheckout # timeout=10
 > git checkout -f a80d7cbc9a2b07a752cc9b5bee42694582ab5f20 # timeout=10
 > git rev-list --no-walk ccdfa059ce21356e820f5aa4eeb7a4349d550704 # timeout=10
[Pipeline] withEnv
[Pipeline] {
[Pipeline] isUnix
[Pipeline] readFile
[Pipeline] sh
+ docker build -t 02895d63c2fbb6c91c3ad8cae81712b6cfb90e7d -f scripts/docker/Dockerfile.clang scripts/docker
Sending build context to Docker daemon   21.5kB

Step 1/3 : FROM ubuntu:20.04
 ---> 6df894023726
Step 2/3 : RUN apt-get update && apt-get install -y         bc         git         build-essential         clang-format-8         wget         &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 97d2bd84f46e
Step 3/3 : ENV CLANG_FORMAT_EXE=clang-format-8
 ---> Using cache
 ---> 56d91edba900
Successfully built 56d91edba900
Successfully tagged 02895d63c2fbb6c91c3ad8cae81712b6cfb90e7d:latest
[Pipeline] isUnix
[Pipeline] withEnv
[Pipeline] {
[Pipeline] sh
+ docker inspect -f . 02895d63c2fbb6c91c3ad8cae81712b6cfb90e7d
.
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] withDockerContainer
CpuNode5 seems to be running inside container 96eb3c64af22c2400c54d0922c971f10735788eaca719af33e757c9e3fa73f0c
$ docker run -t -d -u 0:0 -v /tmp/ccache.kokkos:/tmp/ccache -w /var/jenkins/workspace/Kokkos_PR-6610 --volumes-from 96eb3c64af22c2400c54d0922c971f10735788eaca719af33e757c9e3fa73f0c -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** 02895d63c2fbb6c91c3ad8cae81712b6cfb90e7d cat
$ docker top 096bc6a3c564a50c45da0be50dac9f938b1dd89de003ebc2329a78ca6af57a39 -eo pid,comm
[Pipeline] {
[Pipeline] sh
+ ./scripts/docker/check_format_cpp.sh
diff --git a/containers/src/Kokkos_UnorderedMap.hpp b/containers/src/Kokkos_UnorderedMap.hpp
index b77589d65..c185dc54e 100644
--- a/containers/src/Kokkos_UnorderedMap.hpp
+++ b/containers/src/Kokkos_UnorderedMap.hpp
@@ -419,20 +419,16 @@ class UnorderedMap {
 
   bool rehash(const execution_space &space, size_type requested_capacity = 0) {
     const bool bounded_insert = (capacity() == 0) || (size() == 0u);
-    execution_space().fence(
-        "Kokkos::UnorderedMap::rehash: fence before");
+    execution_space().fence("Kokkos::UnorderedMap::rehash: fence before");
     bool result = rehash(space, requested_capacity, bounded_insert);
-    execution_space().fence(
-        "Kokkos::UnorderedMap::rehash: fence after");
+    execution_space().fence("Kokkos::UnorderedMap::rehash: fence after");
     return result;
   }
 
   bool rehash(size_type requested_capacity, bool bounded_insert) {
-    execution_space().fence(
-        "Kokkos::UnorderedMap::rehash: fence before");
+    execution_space().fence("Kokkos::UnorderedMap::rehash: fence before");
     bool result = rehash(execution_space{}, requested_capacity, bounded_insert);
-    execution_space().fence(
-        "Kokkos::UnorderedMap::rehash: fence after");
+    execution_space().fence("Kokkos::UnorderedMap::rehash: fence after");
     return result;
   }
 
@@ -444,8 +440,8 @@ class UnorderedMap {
     requested_capacity =
         (requested_capacity < curr_size) ? curr_size : requested_capacity;
 
-    insertable_map_type tmp(Kokkos::view_alloc(space, "rehash"), requested_capacity,
-                            m_hasher, m_equal_to);
+    insertable_map_type tmp(Kokkos::view_alloc(space, "rehash"),
+                            requested_capacity, m_hasher, m_equal_to);
 
     if (curr_size) {
       tmp.m_bounded_insert = false;
@@ -487,11 +483,9 @@ class UnorderedMap {
   }
 
   bool begin_erase() {
-    execution_space().fence(
-        "Kokkos::UnorderedMap::begin_erase: fence before");
+    execution_space().fence("Kokkos::UnorderedMap::begin_erase: fence before");
     bool result = begin_erase(execution_space{});
-    execution_space().fence(
-        "Kokkos::UnorderedMap::begin_erase: fence after");
+    execution_space().fence("Kokkos::UnorderedMap::begin_erase: fence after");
     return result;
   }
 
@@ -507,11 +501,9 @@ class UnorderedMap {
   }
 
   bool end_erase() {
-    execution_space().fence(
-        "Kokkos::UnorderedMap::end_erase: fence before");
+    execution_space().fence("Kokkos::UnorderedMap::end_erase: fence before");
     bool result = end_erase(execution_space{});
-    execution_space().fence(
-        "Kokkos::UnorderedMap::end_erase: fence after");
+    execution_space().fence("Kokkos::UnorderedMap::end_erase: fence after");
     return result;
   }
 
[Pipeline] }
$ docker stop --time=1 096bc6a3c564a50c45da0be50dac9f938b1dd89de003ebc2329a78ca6af57a39
$ docker rm -f --volumes 096bc6a3c564a50c45da0be50dac9f938b1dd89de003ebc2329a78ca6af57a39
[Pipeline] // withDockerContainer
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Build)
Stage "Build" skipped due to earlier failure(s)
[Pipeline] parallel
[Pipeline] { (Branch: CUDA-12.2-NVHPC)
[Pipeline] { (Branch: SYCL-OneAPI)
[Pipeline] { (Branch: HIP-ROCm-5.2)
[Pipeline] { (Branch: HIP-ROCm-5.6-C++20)
[Pipeline] { (Branch: OPENMPTARGET-Clang)
[Pipeline] { (Branch: CUDA-11.0.3-Clang-Tidy)
[Pipeline] { (Branch: CUDA-11.7-NVCC)
[Pipeline] { (Branch: CUDA-11.0-NVCC-RDC)
[Pipeline] { (Branch: CUDA-11.6-NVCC-DEBUG)
[Pipeline] { (Branch: GCC-8.4.0)
[Pipeline] stage
[Pipeline] { (CUDA-12.2-NVHPC)
[Pipeline] stage
[Pipeline] { (SYCL-OneAPI)
[Pipeline] stage
[Pipeline] { (HIP-ROCm-5.2)
[Pipeline] stage
[Pipeline] { (HIP-ROCm-5.6-C++20)
[Pipeline] stage
[Pipeline] { (OPENMPTARGET-Clang)
[Pipeline] stage
[Pipeline] { (CUDA-11.0.3-Clang-Tidy)
[Pipeline] stage
[Pipeline] { (CUDA-11.7-NVCC)
[Pipeline] stage
[Pipeline] { (CUDA-11.0-NVCC-RDC)
[Pipeline] stage
[Pipeline] { (CUDA-11.6-NVCC-DEBUG)
[Pipeline] stage
[Pipeline] { (GCC-8.4.0)
Stage "CUDA-12.2-NVHPC" skipped due to earlier failure(s)
[Pipeline] }
Stage "SYCL-OneAPI" skipped due to earlier failure(s)
[Pipeline] }
Stage "HIP-ROCm-5.2" skipped due to earlier failure(s)
[Pipeline] }
Stage "HIP-ROCm-5.6-C++20" skipped due to earlier failure(s)
[Pipeline] }
Stage "OPENMPTARGET-Clang" skipped due to earlier failure(s)
[Pipeline] }
Stage "CUDA-11.0.3-Clang-Tidy" skipped due to earlier failure(s)
[Pipeline] }
Stage "CUDA-11.7-NVCC" skipped due to earlier failure(s)
[Pipeline] }
Stage "CUDA-11.0-NVCC-RDC" skipped due to earlier failure(s)
[Pipeline] }
Stage "CUDA-11.6-NVCC-DEBUG" skipped due to earlier failure(s)
[Pipeline] }
Stage "GCC-8.4.0" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] // stage
[Pipeline] }
Failed in branch CUDA-12.2-NVHPC
[Pipeline] }
Failed in branch SYCL-OneAPI
[Pipeline] }
Failed in branch HIP-ROCm-5.2
[Pipeline] }
Failed in branch HIP-ROCm-5.6-C++20
[Pipeline] }
Failed in branch OPENMPTARGET-Clang
[Pipeline] }
Failed in branch CUDA-11.0.3-Clang-Tidy
[Pipeline] }
Failed in branch CUDA-11.7-NVCC
[Pipeline] }
Failed in branch CUDA-11.0-NVCC-RDC
[Pipeline] }
Failed in branch CUDA-11.6-NVCC-DEBUG
[Pipeline] }
Failed in branch GCC-8.4.0
[Pipeline] // parallel
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // timeout
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] End of Pipeline
ERROR: script returned exit code 1

GitHub has been notified of this commit’s build result

Finished: FAILURE