Skip to content

Console Output

+ docker build -t c5aa25f7fe886320f8b399dd3e69ef59c71b5a2e -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  25.09kB

Step 1/27 : ARG BASE=nvidia/cuda:11.7.1-devel-ubuntu22.04
Step 2/27 : FROM $BASE
 ---> 28a6f693c19c
Step 3/27 : ARG NPROCS=4
 ---> Using cache
 ---> b65c90104d65
Step 4/27 : RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
 ---> Using cache
 ---> 32e3dc088ec6
Step 5/27 : 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
 ---> 70d7445ed83b
Step 6/27 : 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
 ---> e1b3bd64c1d3
Step 7/27 : ARG CMAKE_VERSION=3.26.3
 ---> Using cache
 ---> bd2c460dcce5
Step 8/27 : ENV CMAKE_DIR=/opt/cmake
 ---> Using cache
 ---> 0e83fa205c93
Step 9/27 : 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
 ---> 4e5b9b102aa6
Step 10/27 : ENV PATH=${CMAKE_DIR}/bin:$PATH
 ---> Using cache
 ---> dd216f52d6b4
Step 11/27 : ARG DPCPP_VERSION=2023.0.0
 ---> Using cache
 ---> f00eb0767568
Step 12/27 : 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
 ---> 8a7db8e3d46b
Step 13/27 : ENV DPCPP=/opt/intel/oneapi/compiler/${DPCPP_VERSION}/linux/bin-llvm/clang++
 ---> Using cache
 ---> 07d3fa3ac462
Step 14/27 : 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
 ---> 0adaa413ce94
Step 15/27 : 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
 ---> a8dfa81f5e7f
Step 16/27 : ENV PATH=/opt/intel/oneapi/compiler/latest/linux/bin-llvm/:$PATH
 ---> Using cache
 ---> 8434bc2a393e
Step 17/27 : ENV PATH=/opt/intel/oneapi/compiler/latest/linux/bin/:$PATH
 ---> Using cache
 ---> 52acef2d48e0
Step 18/27 : ENV LD_LIBRARY_PATH=/opt/intel/oneapi/compiler/latest/linux/lib:$LD_LIBRARY_PATH
 ---> Using cache
 ---> 069152c1f623
Step 19/27 : ENV LD_LIBRARY_PATH=/opt/intel/oneapi/compiler/latest/linux/compiler/lib/intel64_lin:$LD_LIBRARY_PATH
 ---> Using cache
 ---> 6597feffbb51
Step 20/27 : ENV BOOST_DIR=/opt/boost
 ---> Using cache
 ---> ce69a38025df
Step 21/27 : 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
 ---> a4237bbe2773
Step 22/27 : ENV BENCHMARK_DIR=/opt/benchmark
 ---> Using cache
 ---> c95038b2af69
Step 23/27 : 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
 ---> 92b0501e822e
Step 24/27 : ARG KOKKOS_VERSION=4.3.00
 ---> Using cache
 ---> 0806999409c7
Step 25/27 : 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 -DKOKKOS_IMPL_SYCL_DEVICE_GLOBAL_SUPPORTED=0 -DCMAKE_CXX_STANDARD=17 -DCMAKE_CXX_FLAGS=-w"
 ---> Running in 76873ed11cc1
 ---> Removed intermediate container 76873ed11cc1
 ---> 8ccee95ce574
Step 26/27 : ENV KOKKOS_DIR=/opt/kokkos
 ---> Running in 649b15d64cc0
 ---> Removed intermediate container 649b15d64cc0
 ---> d0c6d6a17d30
Step 27/27 : 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 067ede48aca9
 
:: 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.3.0
-- 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
-- Looking for SYCL_EXT_ONEAPI_DEVICE_GLOBAL
-- Looking for SYCL_EXT_ONEAPI_DEVICE_GLOBAL - not found
-- 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 Backends: SERIAL;SYCL
-- Configuring done (16.1s)
-- Generating done (0.4s)
CMake Warning:
  Manually-specified variables were not used by the project:

    Kokkos_ENABLE_DEPRECATED_CODE_3


-- Build files have been written to: /scratch/kokkos/build
[  3%] Building CXX object simd/src/CMakeFiles/kokkossimd.dir/Kokkos_SIMD_dummy.cpp.o
[  7%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Abort.cpp.o
[ 10%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_CPUDiscovery.cpp.o
[ 10%] Built target AlwaysCheckGit
[ 14%] 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
[ 21%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Command_Line_Parsing.cpp.o
[ 25%] Linking CXX static library libimpl_git_version.a
[ 25%] Built target impl_git_version
[ 28%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Core.cpp.o
[ 32%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Error.cpp.o
[ 35%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_ExecPolicy.cpp.o
[ 39%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostBarrier.cpp.o
[ 42%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace.cpp.o
[ 46%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace_deepcopy.cpp.o
[ 50%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostThreadTeam.cpp.o
[ 53%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemoryPool.cpp.o
[ 57%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Profiling.cpp.o
[ 60%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_SharedAlloc.cpp.o
[ 64%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Stacktrace.cpp.o
[ 67%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_hwloc.cpp.o
[ 71%] 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
[ 78%] 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
[ 85%] 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
[ 92%] Linking CXX static library libkokkoscore.a
[ 92%] 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_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_ParallelReduce_Team.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_ParallelReduce_Range.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_ParallelReduce_MDRange.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_ParallelFor_MDRange.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Team.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Spinwait.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_ParallelFor_Range.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Instance.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_State.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_ParallelFor_Team.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_ParallelScan_Range.hpp
-- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_MDRangePolicy.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/Kokkos_MinMax.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_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_Macros.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_Abort.hpp
-- Installing: /opt/kokkos/include/Kokkos_Graph_fwd.hpp
-- Installing: /opt/kokkos/include/Kokkos_Clamp.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_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_Swap.hpp
-- Installing: /opt/kokkos/include/Kokkos_Tuners.hpp
-- Installing: /opt/kokkos/include/Kokkos_NumericTraits.hpp
-- Installing: /opt/kokkos/include/Kokkos_Printf.hpp
-- Installing: /opt/kokkos/include/Kokkos_AcquireUniqueTokenImpl.hpp
-- Installing: /opt/kokkos/include/SYCL
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_ParallelReduce_Team.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_Instance.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_ParallelFor_Range.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_ParallelFor_MDRange.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_TeamPolicy.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_ParallelFor_Team.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_DeepCopy.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_ParallelReduce_Range.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_WorkgroupReduction.hpp
-- Installing: /opt/kokkos/include/SYCL/Kokkos_SYCL_ParallelScan_Range.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_ParallelReduce_MDRange.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_ParallelReduce_Range.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_ParallelFor_Team.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_GraphNodeKernel.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_ParallelReduce_Team.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_GraphNode_Impl.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_ParallelReduce_MDRange.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_ParallelScan_Range.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_TeamPolicyInternal.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_ParallelFor_Range.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Graph_Impl.hpp
-- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_ParallelFor_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_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_Traits.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_ViewCtor.hpp
-- Installing: /opt/kokkos/include/impl/Kokkos_Half_MathematicalFunctions.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_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_ViewDataAnalysis.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_CheckedIntegerOps.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_Parallel_For.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_MDRangePolicy.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP_Parallel_Reduce.hpp
-- Installing: /opt/kokkos/include/OpenMP/Kokkos_OpenMP.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/OpenMP/Kokkos_OpenMP_Parallel_Scan.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_Assert.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/Kokkos_Core.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/Lock_Based_Fetch_Op_OpenACC.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_OpenACC.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/Fetch_Op_OpenACC.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/Thread_Fence_OpenACC.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_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_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_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_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_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_MustUseKokkosSingleInTeam.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_FunctorsForExclusiveScan.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
-- Installing: /opt/kokkos/include/sorting
-- Installing: /opt/kokkos/include/sorting/Kokkos_BinSortPublicAPI.hpp
-- Installing: /opt/kokkos/include/sorting/Kokkos_BinOpsPublicAPI.hpp
-- Installing: /opt/kokkos/include/sorting/Kokkos_SortPublicAPI.hpp
-- Installing: /opt/kokkos/include/sorting/Kokkos_SortByKeyPublicAPI.hpp
-- Installing: /opt/kokkos/include/sorting/Kokkos_NestedSortPublicAPI.hpp
-- Installing: /opt/kokkos/include/sorting/impl
-- Installing: /opt/kokkos/include/sorting/impl/Kokkos_CopyOpsForBinSortImpl.hpp
-- Installing: /opt/kokkos/include/sorting/impl/Kokkos_SortByKeyImpl.hpp
-- Installing: /opt/kokkos/include/sorting/impl/Kokkos_NestedSortImpl.hpp
-- Installing: /opt/kokkos/include/sorting/impl/Kokkos_SortImpl.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_Common_Math.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
 ---> Removed intermediate container 067ede48aca9
 ---> 144393af1403
Successfully built 144393af1403
Successfully tagged c5aa25f7fe886320f8b399dd3e69ef59c71b5a2e:latest