Skip to content

Console Output

+ docker build -t 4f3594e3e578ee19591d6fb2733ecd17e60ed0c9 -f docker/Dockerfile.sycl docker
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            Install the buildx component to build images with BuildKit:
            https://docs.docker.com/go/buildx/

Sending build context to Docker daemon  24.58kB

Step 1/23 : ARG BASE=nvidia/cuda:11.7.1-devel-ubuntu22.04
Step 2/23 : FROM $BASE
 ---> 28a6f693c19c
Step 3/23 : ARG NPROCS=4
 ---> Using cache
 ---> 8402cab90b5f
Step 4/23 : RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
 ---> Using cache
 ---> 096806c41f8e
Step 5/23 : RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq         bc         wget         ccache         ninja-build         python3         git         vim         jq         libopenmpi-dev         &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 58a3b04b5ff8
Step 6/23 : RUN KEYDUMP_URL=https://cloud.cees.ornl.gov/download &&     KEYDUMP_FILE=keydump &&     wget --quiet ${KEYDUMP_URL}/${KEYDUMP_FILE} &&     wget --quiet ${KEYDUMP_URL}/${KEYDUMP_FILE}.sig &&     gpg --import ${KEYDUMP_FILE} &&     gpg --verify ${KEYDUMP_FILE}.sig ${KEYDUMP_FILE} &&     rm ${KEYDUMP_FILE}*
 ---> Using cache
 ---> d84322cef0e2
Step 7/23 : ARG CMAKE_VERSION=3.26.3
 ---> Using cache
 ---> 272c6d170b6c
Step 8/23 : ENV CMAKE_DIR=/opt/cmake
 ---> Using cache
 ---> b6763aa0a18f
Step 9/23 : RUN CMAKE_KEY=2D2CEF1034921684 &&     CMAKE_URL=https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION} &&     CMAKE_SCRIPT=cmake-${CMAKE_VERSION}-Linux-x86_64.sh &&     CMAKE_SHA256=cmake-${CMAKE_VERSION}-SHA-256.txt &&     wget --quiet ${CMAKE_URL}/${CMAKE_SHA256} &&     wget --quiet ${CMAKE_URL}/${CMAKE_SHA256}.asc &&     wget --quiet ${CMAKE_URL}/${CMAKE_SCRIPT} &&     gpg --verify ${CMAKE_SHA256}.asc ${CMAKE_SHA256} &&     grep -i ${CMAKE_SCRIPT} ${CMAKE_SHA256} | sed -e s/linux/Linux/ | sha256sum --check &&     mkdir -p ${CMAKE_DIR} &&     sh ${CMAKE_SCRIPT} --skip-license --prefix=${CMAKE_DIR} &&     rm cmake*
 ---> Using cache
 ---> aa7cf5128c7d
Step 10/23 : ENV PATH=${CMAKE_DIR}/bin:$PATH
 ---> Using cache
 ---> 261e8cd438ed
Step 11/23 : ARG DPCPP_VERSION=2023.0.0
 ---> Using cache
 ---> 16992973cda8
Step 12/23 : RUN wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB &&     apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB &&     echo "deb https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list &&     apt-get update -o Dir::Etc::sourcelist="sources.list.d/oneAPI.list" -o APT::Get::List-Cleanup="0" &&     apt-get install -y intel-oneapi-compiler-dpcpp-cpp-${DPCPP_VERSION} &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> d5af97ef7f89
Step 13/23 : ENV DPCPP=/opt/intel/oneapi/compiler/${DPCPP_VERSION}/linux/bin-llvm/clang++
 ---> Using cache
 ---> bb0a8fd1a2da
Step 14/23 : RUN wget https://cloud.cees.ornl.gov/download/oneapi-for-nvidia-gpus-${DPCPP_VERSION}-linux.sh &&     chmod +x oneapi-for-nvidia-gpus-${DPCPP_VERSION}-linux.sh &&     ./oneapi-for-nvidia-gpus-${DPCPP_VERSION}-linux.sh -y &&     rm oneapi-for-nvidia-gpus-${DPCPP_VERSION}-linux.sh
 ---> Using cache
 ---> e53f9c82066d
Step 15/23 : RUN wget https://registrationcenter-download.intel.com/akdlm/irc_nas/19133/l_oneDPL_p_2022.0.0.25335.sh &&    chmod +x ./l_oneDPL_p_2022.0.0.25335.sh &&     ./l_oneDPL_p_2022.0.0.25335.sh -a -s --eula accept &&     rm l_oneDPL_p_2022.0.0.25335.sh
 ---> Using cache
 ---> cac4eaaf5a7c
Step 16/23 : ENV BOOST_DIR=/opt/boost
 ---> Using cache
 ---> 22667f377e45
Step 17/23 : RUN . /opt/intel/oneapi/setvars.sh --include-intel-llvm &&     BOOST_VERSION=1.81.0 &&     BOOST_VERSION_UNDERSCORE=$(echo "$BOOST_VERSION" | sed -e "s/\./_/g") &&     BOOST_KEY=379CE192D401AB61 &&     BOOST_URL=https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source &&     BOOST_ARCHIVE=boost_${BOOST_VERSION_UNDERSCORE}.tar.bz2 &&     SCRATCH_DIR=/scratch && mkdir -p ${SCRATCH_DIR} && cd ${SCRATCH_DIR} &&     wget --quiet ${BOOST_URL}/${BOOST_ARCHIVE} &&     wget --quiet ${BOOST_URL}/${BOOST_ARCHIVE}.json &&     cat ${BOOST_ARCHIVE}.json | jq -r '. | .sha256 + "  " + .file' | sha256sum --check &&     mkdir -p boost &&     tar -xf ${BOOST_ARCHIVE} -C boost --strip-components=1 &&     cd boost &&     sed -i "s/-pch-create/-Xclang -emit-pch -o/g" tools/build/src/tools/intel-linux.jam &&     cat tools/build/src/tools/intel-linux.jam &&     CXXFLAGS="-w" ./bootstrap.sh --with-toolset=intel-linux --prefix=${BOOST_DIR} &&     ./b2 -j${NPROCS}         hardcode-dll-paths=true dll-path=${BOOST_DIR}/lib         toolset=intel-linux         link=shared         variant=release         cxxflags=-w         install         &&     rm -rf ${SCRATCH_DIR}
 ---> Using cache
 ---> bee208f5f511
Step 18/23 : ENV BENCHMARK_DIR=/opt/benchmark
 ---> Using cache
 ---> d5aaa1d7a0a6
Step 19/23 : RUN SCRATCH_DIR=/scratch && mkdir -p ${SCRATCH_DIR} && cd ${SCRATCH_DIR} &&     git clone https://github.com/google/benchmark.git -b v1.5.4 &&     cd benchmark &&     mkdir build && cd build &&     cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=${BENCHMARK_DIR} -D BENCHMARK_ENABLE_TESTING=OFF .. &&     make -j${NPROCS} && make install &&     rm -rf ${SCRATCH_DIR}
 ---> Using cache
 ---> a9d5e07f81d1
Step 20/23 : ARG KOKKOS_VERSION=4.1.00
 ---> Running in 26556133065f
Removing intermediate container 26556133065f
 ---> e3f0fe6f5217
Step 21/23 : ARG KOKKOS_OPTIONS="-DKokkos_ENABLE_SYCL=ON -DCMAKE_CXX_FLAGS=-Wno-unknown-cuda-version -DKokkos_ENABLE_UNSUPPORTED_ARCHS=ON -DKokkos_ENABLE_DEPRECATED_CODE_3=OFF -DKokkos_ARCH_VOLTA70=ON -DCMAKE_CXX_STANDARD=17 -DCMAKE_CXX_FLAGS=-w"
 ---> Running in 11e50ce17b66
Removing intermediate container 11e50ce17b66
 ---> 73814dad99b8
Step 22/23 : ENV KOKKOS_DIR=/opt/kokkos
 ---> Running in fae0d6e6ae9c
Removing intermediate container fae0d6e6ae9c
 ---> 61d47623d195
Step 23/23 : RUN . /opt/intel/oneapi/setvars.sh --include-intel-llvm &&     KOKKOS_URL=https://github.com/kokkos/kokkos/archive/${KOKKOS_VERSION}.tar.gz &&     KOKKOS_ARCHIVE=kokkos-${KOKKOS_HASH}.tar.gz &&     SCRATCH_DIR=/scratch && mkdir -p ${SCRATCH_DIR} && cd ${SCRATCH_DIR} &&     wget --quiet ${KOKKOS_URL} --output-document=${KOKKOS_ARCHIVE} &&     mkdir -p kokkos &&     tar -xf ${KOKKOS_ARCHIVE} -C kokkos --strip-components=1 &&     cd kokkos &&     mkdir -p build && cd build &&     cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=${KOKKOS_DIR} -D CMAKE_CXX_COMPILER=${DPCPP} ${KOKKOS_OPTIONS} .. &&     make -j${NPROCS} install &&     rm -rf ${SCRATCH_DIR}
 ---> Running in 68a0be9dd356
 
:: initializing oneAPI environment ...
   dash: SH_VERSION = unknown
   args: Using "$@" for setvars.sh arguments: 
:: compiler -- latest
:: debugger -- latest
:: dev-utilities -- latest
:: dpl -- latest
:: tbb -- latest
:: oneAPI environment initialized ::
 
-- Setting default Kokkos CXX standard to 17
-- The CXX compiler identification is IntelLLVM 2023.0.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Kokkos version: 4.1.00
-- The project name is: Kokkos
-- Using internal gtest for testing
-- SERIAL backend is being turned on to ensure there is at least one Host space. To change this, you must enable another host execution space and configure with -DKokkos_ENABLE_SERIAL=OFF or change CMakeCache.txt
-- Using -std=gnu++17 for C++17 extensions as feature
-- Performing Test KOKKOS_IMPL_SYCL_DEVICE_GLOBAL_SUPPORTED
-- Performing Test KOKKOS_IMPL_SYCL_DEVICE_GLOBAL_SUPPORTED - Success
-- Built-in Execution Spaces:
--     Device Parallel: Kokkos::Experimental::SYCL
--     Host Parallel: NoTypeDefined
--       Host Serial: SERIAL
-- 
-- Architectures:
--  VOLTA70
-- Found TPLLIBDL: /usr/include  
-- Looking for C++ include oneapi/dpl/execution
-- Looking for C++ include oneapi/dpl/execution - found
-- Looking for C++ include oneapi/dpl/algorithm
-- Looking for C++ include oneapi/dpl/algorithm - found
-- Performing Test KOKKOS_NO_TBB_CONFLICT
-- Performing Test KOKKOS_NO_TBB_CONFLICT - Success
-- Using internal desul_atomics copy
-- Kokkos Devices: SERIAL;SYCL, Kokkos Backends: SERIAL;SYCL
-- Configuring done (19.8s)
-- Generating done (0.4s)
-- Build files have been written to: /scratch/kokkos/build
[  6%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_CPUDiscovery.cpp.o
[ 10%] Building CXX object simd/src/CMakeFiles/kokkossimd.dir/Kokkos_SIMD_dummy.cpp.o
[ 10%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Command_Line_Parsing.cpp.o
[ 10%] Built target AlwaysCheckGit
[ 13%] Building CXX object CMakeFiles/impl_git_version.dir/generated/Kokkos_Version_Info.cpp.o
[ 17%] Linking CXX static library libkokkossimd.a
[ 17%] Built target kokkossimd
[ 20%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Core.cpp.o
[ 24%] Linking CXX static library libimpl_git_version.a
[ 24%] Built target impl_git_version
[ 27%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Error.cpp.o
[ 31%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_ExecPolicy.cpp.o
[ 34%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostBarrier.cpp.o
[ 37%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace.cpp.o
[ 41%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace_deepcopy.cpp.o
[ 44%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostThreadTeam.cpp.o
[ 48%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemoryPool.cpp.o
[ 51%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemorySpace.cpp.o
[ 55%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Profiling.cpp.o
[ 58%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_SharedAlloc.cpp.o
[ 62%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Spinwait.cpp.o
[ 65%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Stacktrace.cpp.o
[ 68%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_hwloc.cpp.o
[ 72%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Serial/Kokkos_Serial.cpp.o
[ 75%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Serial/Kokkos_Serial_Task.cpp.o
[ 79%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL.cpp.o
[ 82%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL_Instance.cpp.o
[ 86%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL_Space.cpp.o
[ 89%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/__/__/tpls/desul/src/Lock_Array_SYCL.cpp.o
[ 93%] Linking CXX static library libkokkoscore.a
[ 93%] Built target kokkoscore
[ 96%] Building CXX object containers/src/CMakeFiles/kokkoscontainers.dir/impl/Kokkos_UnorderedMap_impl.cpp.o
[100%] Linking CXX static library libkokkoscontainers.a
[100%] Built target kokkoscontainers
Install the project...
-- Install configuration: "Release"
-- Installing: /opt/kokkos/include
-- Installing: /opt/kokkos/include/Kokkos_Crs.hpp
-- Installing: /opt/kokkos/include/Kokkos_HostSpace.hpp
-- Installing: /opt/kokkos/include/Kokkos_AnonymousSpace.hpp
-- Installing: /opt/kokkos/include/Kokkos_Complex.hpp
-- Installing: /opt/kokkos/include/Kokkos_Extents.hpp
-- Installing: /opt/kokkos/include/Kokkos_Rank.hpp
-- Installing: /opt/kokkos/include/KokkosExp_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/Kokkos_Half.hpp
-- Installing: /opt/kokkos/include/Kokkos_UniqueToken.hpp
-- Installing: /opt/kokkos/include/Kokkos_Atomics_Desul_Config.hpp
-- Installing: /opt/kokkos/include/Kokkos_LogicalSpaces.hpp
-- Installing: /opt/kokkos/include/Kokkos_Atomic.hpp
-- Installing: /opt/kokkos/include/Kokkos_GraphNode.hpp
-- Installing: /opt/kokkos/include/Kokkos_BitManipulation.hpp
-- Installing: /opt/kokkos/include/Kokkos_View.hpp
-- Installing: /opt/kokkos/include/Kokkos_TaskScheduler.hpp
-- Installing: /opt/kokkos/include/Kokkos_ScratchSpace.hpp
-- Installing: /opt/kokkos/include/Serial
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_Task.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_Parallel_Range.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_UniqueToken.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_ZeroMemset.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_Parallel_MDRange.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/Serial/Kokkos_Serial_Parallel_Team.hpp
-- Installing: /opt/kokkos/include/Kokkos_ReductionIdentity.hpp
-- Installing: /opt/kokkos/include/Kokkos_Atomics_Desul_Volatile_Wrapper.hpp
-- Installing: /opt/kokkos/include/Kokkos_MathematicalConstants.hpp
-- Installing: /opt/kokkos/include/Kokkos_Timer.hpp
-- Installing: /opt/kokkos/include/Kokkos_Concepts.hpp
-- Installing: /opt/kokkos/include/Kokkos_MemoryTraits.hpp
-- Installing: /opt/kokkos/include/Kokkos_Profiling_ScopedRegion.hpp
-- Installing: /opt/kokkos/include/Threads
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Parallel_MDRange.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Parallel_Range.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_ThreadsExec.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_ThreadsTeam.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_UniqueToken.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Parallel_Team.hpp
-- Installing: /opt/kokkos/include/Kokkos_Parallel.hpp
-- Installing: /opt/kokkos/include/Kokkos_Atomics_Desul_Wrapper.hpp
-- Installing: /opt/kokkos/include/Kokkos_DetectionIdiom.hpp
-- Installing: /opt/kokkos/include/Kokkos_PointerOwnership.hpp
-- Installing: /opt/kokkos/include/Kokkos_Profiling_ProfileSection.hpp
-- Installing: /opt/kokkos/include/HPX
-- Installing: /opt/kokkos/include/HPX/Kokkos_HPX_Task.hpp
-- Installing: /opt/kokkos/include/HPX/Kokkos_HPX_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/HPX/Kokkos_HPX.hpp
-- Installing: /opt/kokkos/include/HPX/Kokkos_HPX_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/Kokkos_CopyViews.hpp
-- Installing: /opt/kokkos/include/traits
-- Installing: /opt/kokkos/include/traits/Kokkos_OccupancyControlTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_IndexTypeTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_IterationPatternTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_Traits_fwd.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_WorkTagTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_PolicyTraitAdaptor.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_LaunchBoundsTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_ScheduleTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_GraphKernelTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_PolicyTraitMatcher.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_WorkItemPropertyTrait.hpp
-- Installing: /opt/kokkos/include/traits/Kokkos_ExecutionSpaceTrait.hpp
-- Installing: /opt/kokkos/include/KokkosExp_InterOp.hpp
-- Installing: /opt/kokkos/include/Kokkos_hwloc.hpp
-- Installing: /opt/kokkos/include/Kokkos_Macros.hpp
-- Installing: /opt/kokkos/include/fwd
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_OPENMP.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_OPENACC.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_OPENMPTARGET.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_HBWSpace.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_SYCL.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_THREADS.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_SERIAL.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_HPX.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_HIP.hpp
-- Installing: /opt/kokkos/include/fwd/Kokkos_Fwd_CUDA.hpp
-- Installing: /opt/kokkos/include/Kokkos_MathematicalFunctions.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Parallel_Common.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Parallel.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Reducer.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_UniqueToken.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_ParallelScan_Team.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Parallel_MDRange.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTargetSpace.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_ParallelScan_Range.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Task.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_ParallelReduce_Range.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_ParallelReduce_Team.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_ParallelFor_Team.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Error.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Instance.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_ParallelFor_Range.hpp
-- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Abort.hpp
-- Installing: /opt/kokkos/include/Kokkos_Parallel_Reduce.hpp
-- Installing: /opt/kokkos/include/Kokkos_Array.hpp
-- Installing: /opt/kokkos/include/Kokkos_MathematicalSpecialFunctions.hpp
-- Installing: /opt/kokkos/include/Kokkos_Graph_fwd.hpp
-- Installing: /opt/kokkos/include/OpenACC
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_SharedAllocationRecord.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelReduce_Range.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_DeepCopy.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_Traits.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_Team.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelReduce_Team.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelFor_Range.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelFor_MDRange.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_Macros.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelFor_Team.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_Instance.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelScan_Range.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ScheduleType.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_FunctorAdapter.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACCSpace.hpp
-- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_ParallelReduce_MDRange.hpp
-- Installing: /opt/kokkos/include/decl
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_SYCL.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_OPENMP.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_HBWSpace.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_HIP.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_OPENACC.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_SERIAL.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_OPENMPTARGET.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_THREADS.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_CUDA.hpp
-- Installing: /opt/kokkos/include/decl/Kokkos_Declare_HPX.hpp
-- Installing: /opt/kokkos/include/Kokkos_MemoryPool.hpp
-- Installing: /opt/kokkos/include/setup
-- Installing: /opt/kokkos/include/setup/Kokkos_Setup_Cuda.hpp
-- Installing: /opt/kokkos/include/setup/Kokkos_Setup_SYCL.hpp
-- Installing: /opt/kokkos/include/setup/Kokkos_Setup_HIP.hpp
-- Installing: /opt/kokkos/include/Kokkos_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/Kokkos_MinMaxClamp.hpp
-- Installing: /opt/kokkos/include/Kokkos_Tuners.hpp
-- Installing: /opt/kokkos/include/Kokkos_HBWSpace.hpp
-- Installing: /opt/kokkos/include/Kokkos_NumericTraits.hpp
-- Installing: /opt/kokkos/include/Kokkos_MasterLock.hpp
-- Installing: /opt/kokkos/include/Kokkos_AcquireUniqueTokenImpl.hpp
-- Installing: /opt/kokkos/include/SYCL
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Instance.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Half_Conversion.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Parallel_Team.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Space.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_ZeroMemset.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Team.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_UniqueToken.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Parallel_Range.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_DeepCopy.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Abort.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Half_Impl_Type.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Parallel_Scan.hpp
-- Installing: /opt/kokkos/include/Kokkos_Vectorization.hpp
-- Installing: /opt/kokkos/include/Kokkos_Future.hpp
-- Installing: /opt/kokkos/include/HIP
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_KernelLaunch.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Parallel_Team.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Space.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_ReduceScan.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Error.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Instance.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Team.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Abort.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_UniqueToken.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Vectorization.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_ZeroMemset.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Half_Conversion.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Shuffle_Reduce.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Half_Impl_Type.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Parallel_Range.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Parallel_MDRange.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_BlockSize_Deduction.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_DeepCopy.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_SharedAllocationRecord.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/impl
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskPolicyData.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_AnalyzePolicy.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_GraphImpl_fwd.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Volatile_Load.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_MemorySpace.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueCommon.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Default_GraphNode_Impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_DeviceManagement.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_BitOps.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ParseCommandLineArgumentsAndEnvironmentVariables.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_CPUDiscovery.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_StringManipulation.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_SharedAlloc_timpl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_HostThreadTeam.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_HostSharedPtr.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Profiling_DeviceInfo.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_SimpleTaskScheduler.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_HostSpace_deepcopy.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Profiling_Interface.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_HostSpace_ZeroMemset.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskNode.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_GraphImpl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewUniformType.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueue_impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_QuadPrecisionMath.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ChaseLev.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_GraphNodeCustomization.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMemoryManager.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Command_Line_Parsing.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueue.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Half_FloatingPointWrapper.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Default_Graph_fwd.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMultiple_impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Spinwait.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Traits.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewCtor.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_VLAEmulation.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_FixedBufferMemoryPool.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Profiling.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewTracker.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Memory_Fence.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_HostBarrier.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_EBO.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_View.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_InitializationSettings.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_LinkedListNode.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskResult.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Default_GraphNodeKernel.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskBase.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ZeroMemset_fwd.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_SingleTaskQueue.hpp
-- Installing: /opt/kokkos/include/impl/KokkosExp_ViewMapping.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_SharedAlloc.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Error.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ClockTic.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_FunctorAnalysis.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Stacktrace.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewMapping.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TeamMDPolicy.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewArray.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_LIFO.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Profiling_C_Interface.h
-- Installing: /opt/kokkos/include/impl/Kokkos_Half_NumericTraits.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_GraphNodeImpl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ExecSpaceManager.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMultiple.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Tools_Generic.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_GraphImpl_Utilities.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Default_Graph_Impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_MultipleTaskQueue.hpp
-- Installing: /opt/kokkos/include/impl/KokkosExp_IterateTileGPU.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ConcurrentBitset.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_NvidiaGpuArchitectures.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewLayoutTiled.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_OptionalRef.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_TaskTeamMember.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Combined_Reducer.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Utilities.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Tools.hpp
-- Installing: /opt/kokkos/include/impl/KokkosExp_Host_IterateTile.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_MemoryPoolAllocator.hpp
-- Installing: /opt/kokkos/include/Kokkos_TaskScheduler_fwd.hpp
-- Installing: /opt/kokkos/include/OpenMP
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_Team.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_UniqueToken.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_Parallel.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_Instance.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_Task.hpp
-- Installing: /opt/kokkos/include/Cuda
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_ZeroMemset.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Parallel_MDRange.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Graph_Impl.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Vectorization.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_CudaSpace.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_GraphNodeKernel.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_BlockSize_Deduction.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_GraphNode_Impl.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_KernelLaunch.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_UniqueToken.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_abort.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Half_Conversion.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Parallel_Range.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Instance.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Error.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Task.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_View.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_ReduceScan.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Team.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Half_Impl_Type.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Parallel_Team.hpp
-- Installing: /opt/kokkos/include/Kokkos_Core_fwd.hpp
-- Installing: /opt/kokkos/include/Kokkos_Layout.hpp
-- Installing: /opt/kokkos/include/Kokkos_ExecPolicy.hpp
-- Installing: /opt/kokkos/include/Kokkos_Graph.hpp
-- Installing: /opt/kokkos/include/Kokkos_Pair.hpp
-- Installing: /opt/kokkos/include/Kokkos_Core.hpp
-- Installing: /opt/kokkos/include/View
-- Installing: /opt/kokkos/include/View/MDSpan
-- Installing: /opt/kokkos/include/View/MDSpan/Kokkos_MDSpan_Header.hpp
-- Installing: /opt/kokkos/include/View/MDSpan/Kokkos_MDSpan_Extents.hpp
-- Installing: /opt/kokkos/include/View/Hooks
-- Installing: /opt/kokkos/include/View/Hooks/Kokkos_ViewHooks.hpp
-- Installing: /opt/kokkos/include/desul
-- Installing: /opt/kokkos/include/desul/atomics
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_SYCL.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Based_Fetch_Op_SYCL.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Based_Fetch_Op_Host.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Adapt_GCC.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_SYCL.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_ScopeCaller.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Adapt_SYCL.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Atomic_Ref.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_OpenMP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_CUDA.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Adapt_CXX.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op.hpp
-- Installing: /opt/kokkos/include/desul/atomics/openmp
-- Installing: /opt/kokkos/include/desul/atomics/openmp/OpenMP_40.hpp
-- Installing: /opt/kokkos/include/desul/atomics/openmp/OpenMP_40_op.inc
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Array_CUDA.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_GCC.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Based_Fetch_Op.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_GCC.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Generic.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Array_HIP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Operator_Function_Objects.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_CUDA.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_GCC.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Based_Fetch_Op_CUDA.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Free_Fetch_Op.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Based_Fetch_Op_HIP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_Generic.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_CUDA.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Common.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_ScopeCaller.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_MSVC.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_ScopeCaller.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Array.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_SYCL.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_HIP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/cuda
-- Installing: /opt/kokkos/include/desul/atomics/cuda/CUDA_asm.hpp
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc_predicate
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_exchange_op.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc_generic
-- Installing: /opt/kokkos/include/desul/atomics/cuda/CUDA_asm_exchange.hpp
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_exchange_memorder.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_memorder.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc_generic
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc_predicate
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc_forceglobal
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc_isglobal
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_exchange.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc_forceglobal
-- Installing: /opt/kokkos/include/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc_isglobal
-- Installing: /opt/kokkos/include/desul/atomics/Lock_Array_SYCL.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_HIP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_MSVC.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Macros.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Fetch_Op_OpenMP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Thread_Fence_OpenMP.hpp
-- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_HIP.hpp
-- Installing: /opt/kokkos/include/desul/atomics.hpp
-- Up-to-date: /opt/kokkos/include/desul
-- Up-to-date: /opt/kokkos/include/desul/atomics
-- Installing: /opt/kokkos/include/desul/atomics/Config.hpp
-- Installing: /opt/kokkos/lib/libkokkoscore.a
-- Up-to-date: /opt/kokkos/lib/libkokkoscore.a
-- Up-to-date: /opt/kokkos/include
-- Installing: /opt/kokkos/include/Kokkos_OffsetView.hpp
-- Installing: /opt/kokkos/include/Kokkos_Functional.hpp
-- Installing: /opt/kokkos/include/Kokkos_Vector.hpp
-- Installing: /opt/kokkos/include/Kokkos_Bitset.hpp
-- Installing: /opt/kokkos/include/Kokkos_ErrorReporter.hpp
-- Installing: /opt/kokkos/include/Kokkos_DualView.hpp
-- Installing: /opt/kokkos/include/Kokkos_UnorderedMap.hpp
-- Installing: /opt/kokkos/include/Kokkos_ScatterView.hpp
-- Installing: /opt/kokkos/include/Kokkos_DynamicView.hpp
-- Up-to-date: /opt/kokkos/include/impl
-- Installing: /opt/kokkos/include/impl/Kokkos_Functional_impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_UnorderedMap_impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Bitset_impl.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_StaticCrsGraph_factory.hpp
-- Installing: /opt/kokkos/include/Kokkos_StaticCrsGraph.hpp
-- Installing: /opt/kokkos/include/Kokkos_DynRankView.hpp
-- Installing: /opt/kokkos/lib/libkokkoscontainers.a
-- Up-to-date: /opt/kokkos/lib/libkokkoscontainers.a
-- Up-to-date: /opt/kokkos/include
-- Installing: /opt/kokkos/include/Kokkos_Random.hpp
-- Installing: /opt/kokkos/include/Kokkos_StdAlgorithms.hpp
-- Installing: /opt/kokkos/include/std_algorithms
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Count.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ReverseCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Rotate.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Fill.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_IsSorted.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_CountIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_PartitionCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_RemoveCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_CopyIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_MaxElement.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Reduce.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_IsSortedUntil.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ReplaceCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_BeginEnd.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_TransformInclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_RotateCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Search.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Distance.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_IterSwap.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_FillN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_AdjacentFind.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_FindEnd.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_FindIfNot.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_UniqueCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Move.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_AnyOf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_AdjacentDifference.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_InclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_MinElement.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ShiftRight.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Reverse.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_IsPartitioned.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Transform.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ShiftLeft.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ForEach.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_FindFirstOf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Remove.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_SwapRanges.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Equal.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Find.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_GenerateN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_PartitionPoint.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_CopyBackward.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_LexicographicalCompare.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Unique.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Generate.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_TransformReduce.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Replace.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_TransformExclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ReplaceCopyIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Swap.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_RemoveCopyIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_SearchN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ReplaceIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_RemoveIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_MinMaxElement.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Mismatch.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ReverseCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ReducerWithArbitraryJoinerNoNeutralElement.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Rotate.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_IsSorted.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_PartitionCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_CopyIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_FindIfOrNot.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_IdentityReferenceUnaryFunctor.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_CopyCopyN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Reduce.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_HelperPredicates.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_IsSortedUntil.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ReplaceCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_TransformInclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_RotateCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Constraints.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Search.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ForEachForEachN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_AdjacentFind.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_FindEnd.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_UniqueCopy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Move.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_AdjacentDifference.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_InclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ShiftRight.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_MinMaxMinmaxElement.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Reverse.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_IsPartitioned.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Transform.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ShiftLeft.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_FindFirstOf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_SwapRanges.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ValueWrapperForNoNeutralElement.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Equal.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_GenerateGenerateN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_PartitionPoint.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_CopyBackward.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_LexicographicalCompare.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Unique.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_FillFillN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_TransformReduce.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Replace.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_TransformExclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ReplaceCopyIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_RemoveAllVariants.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_CountCountIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_SearchN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ReplaceIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_AllOfAnyOfNoneOf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_Mismatch.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_ExclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_MoveBackward.hpp
-- Installing: /opt/kokkos/include/std_algorithms/impl/Kokkos_RandomAccessIterator.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_AllOf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_Copy.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_CopyN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ExclusiveScan.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_MoveBackward.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_FindIf.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_ForEachN.hpp
-- Installing: /opt/kokkos/include/std_algorithms/Kokkos_NoneOf.hpp
-- Installing: /opt/kokkos/include/Kokkos_Sort.hpp
-- Installing: /opt/kokkos/include/Kokkos_NestedSort.hpp
-- Up-to-date: /opt/kokkos/include
-- Installing: /opt/kokkos/include/Kokkos_SIMD_Common.hpp
-- Installing: /opt/kokkos/include/Kokkos_SIMD_NEON.hpp
-- Installing: /opt/kokkos/include/Kokkos_SIMD_AVX2.hpp
-- Installing: /opt/kokkos/include/Kokkos_SIMD.hpp
-- Installing: /opt/kokkos/include/Kokkos_SIMD_Scalar.hpp
-- Installing: /opt/kokkos/include/Kokkos_SIMD_AVX512.hpp
-- Installing: /opt/kokkos/lib/libkokkossimd.a
-- Up-to-date: /opt/kokkos/lib/libkokkossimd.a
-- Installing: /opt/kokkos/lib/cmake/Kokkos/KokkosConfig.cmake
-- Installing: /opt/kokkos/lib/cmake/Kokkos/KokkosConfigCommon.cmake
-- Installing: /opt/kokkos/lib/cmake/Kokkos/KokkosConfigVersion.cmake
-- Installing: /opt/kokkos/lib/cmake/Kokkos/KokkosTargets.cmake
-- Installing: /opt/kokkos/lib/cmake/Kokkos/KokkosTargets-release.cmake
-- Installing: /opt/kokkos/include/KokkosCore_config.h
-- Installing: /opt/kokkos/bin/nvcc_wrapper
-- Installing: /opt/kokkos/bin/hpcbind
-- Installing: /opt/kokkos/bin/kokkos_launch_compiler
-- Up-to-date: /opt/kokkos/include/KokkosCore_config.h
-- Installing: /opt/kokkos/include/KokkosCore_Config_FwdBackend.hpp
-- Installing: /opt/kokkos/include/KokkosCore_Config_SetupBackend.hpp
-- Installing: /opt/kokkos/include/KokkosCore_Config_DeclareBackend.hpp
-- Installing: /opt/kokkos/include/KokkosCore_Config_PostInclude.hpp
Removing intermediate container 68a0be9dd356
 ---> 773b98b69547
Successfully built 773b98b69547
Successfully tagged 4f3594e3e578ee19591d6fb2733ecd17e60ed0c9:latest