Pull request #712 updated Connecting to https://api.github.com using 476720/****** Obtained .jenkins from 3d02d7eee7096efa3f17c1fa89b1b882303209da [Pipeline] Start of Pipeline [Pipeline] withEnv [Pipeline] { [Pipeline] timeout Timeout set to expire in 3 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Build) [Pipeline] parallel [Pipeline] { (Branch: CUDA-11-NVCC-DEBUG) [Pipeline] { (Branch: ROCM-4.5-HIPCC-DEBUG) [Pipeline] { (Branch: SYCL) [Pipeline] stage [Pipeline] { (CUDA-11-NVCC-DEBUG) [Pipeline] stage [Pipeline] { (ROCM-4.5-HIPCC-DEBUG) [Pipeline] stage [Pipeline] { (SYCL) [Pipeline] node Running on fetnat06 in /var/jenkins/workspace/Cabana_PR-712 [Pipeline] node [Pipeline] node Running on fetnat07 in /var/jenkins/workspace/Cabana_PR-712 [Pipeline] { [Pipeline] { [Pipeline] checkout [Pipeline] checkout The recommended git tool is: NONE The recommended git tool is: NONE using credential Jenkins ORNL Cloning the remote Git repository Cloning with configured refspecs honoured and without tags using credential Jenkins ORNL Cloning the remote Git repository Cloning with configured refspecs honoured and without tags Cloning repository https://github.com/ECP-copa/Cabana.git > git init /var/jenkins/workspace/Cabana_PR-712 # timeout=10 Fetching upstream changes from https://github.com/ECP-copa/Cabana.git > git --version # timeout=10 > git --version # 'git version 2.17.1' using GIT_ASKPASS to set credentials > git fetch --no-tags --progress -- https://github.com/ECP-copa/Cabana.git +refs/pull/712/head:refs/remotes/origin/PR-712 # timeout=10 Cloning repository https://github.com/ECP-copa/Cabana.git > git init /var/jenkins/workspace/Cabana_PR-712 # timeout=10 Fetching upstream changes from https://github.com/ECP-copa/Cabana.git > git --version # timeout=10 > git --version # 'git version 2.17.1' using GIT_ASKPASS to set credentials > git fetch --no-tags --progress -- https://github.com/ECP-copa/Cabana.git +refs/pull/712/head:refs/remotes/origin/PR-712 # timeout=10 Fetching without tags > git config remote.origin.url https://github.com/ECP-copa/Cabana.git # timeout=10 > git config --add remote.origin.fetch +refs/pull/712/head:refs/remotes/origin/PR-712 # timeout=10 > git config remote.origin.url https://github.com/ECP-copa/Cabana.git # timeout=10 Checking out Revision 3d02d7eee7096efa3f17c1fa89b1b882303209da (PR-712) Commit message: "fixup: clarify ranges for LinkedCellList" Fetching upstream changes from https://github.com/ECP-copa/Cabana.git using GIT_ASKPASS to set credentials > git fetch --no-tags --progress -- https://github.com/ECP-copa/Cabana.git +refs/pull/712/head:refs/remotes/origin/PR-712 # timeout=10 > git config core.sparsecheckout # timeout=10 > git checkout -f 3d02d7eee7096efa3f17c1fa89b1b882303209da # timeout=10 > git rev-list --no-walk ce06eca019474868abf5730107fb324965cbbea4 # timeout=10 [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] readFile [Pipeline] sh Fetching without tags + docker build -t 5ce6f6af6a48bc15e45537142e4a0054fec361a4 -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 19.46kB Step 1/18 : ARG BASE=nvidia/cuda:11.0.3-devel-ubuntu20.04 Step 2/18 : FROM $BASE ---> 66deaf56c203 Step 3/18 : ARG NPROCS=4 ---> Using cache ---> 8ed9928d6fb2 Step 4/18 : RUN DISTRO=ubuntu2004 && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/$DISTRO/x86_64/3bf863cc.pub ---> Using cache ---> 4a1afb2f7b89 Step 5/18 : RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq bc wget ccache ninja-build python3 git vim jq libgtest-dev libopenmpi-dev && apt-get clean && rm -rf /var/lib/apt/lists/* ---> Using cache ---> 53ab6f7f836a Step 6/18 : 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 ---> 87d004eee8b3 Step 7/18 : ARG CMAKE_VERSION=3.26.3 ---> Using cache ---> d1b735425b4b Step 8/18 : ENV CMAKE_DIR=/opt/cmake ---> Using cache ---> 0a482ad1a4ca Step 9/18 : 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 ---> af2eda4782a0 Step 10/18 : ENV PATH=${CMAKE_DIR}/bin:$PATH ---> Using cache ---> 72a99ec91ea1 Step 11/18 : ARG DPCPP_VERSION=2023.0.0 ---> Using cache ---> 06115adbde7e Step 12/18 : 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 ---> 5e151e465b0d Step 13/18 : ENV DPCPP=/opt/intel/oneapi/compiler/${DPCPP_VERSION}/linux/bin-llvm/clang++ ---> Using cache ---> 808fb9c5d606 Step 14/18 : 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 ---> 5ce7f42f657e Step 15/18 : ARG KOKKOS_VERSION=3.7.02 Checking out Revision 3d02d7eee7096efa3f17c1fa89b1b882303209da (PR-712) Commit message: "fixup: clarify ranges for LinkedCellList" ---> Running in 49e467782dfe [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] readFile [Pipeline] sh > git config remote.origin.url https://github.com/ECP-copa/Cabana.git # timeout=10 > git config --add remote.origin.fetch +refs/pull/712/head:refs/remotes/origin/PR-712 # timeout=10 > git config remote.origin.url https://github.com/ECP-copa/Cabana.git # timeout=10 Fetching upstream changes from https://github.com/ECP-copa/Cabana.git using GIT_ASKPASS to set credentials > git fetch --no-tags --progress -- https://github.com/ECP-copa/Cabana.git +refs/pull/712/head:refs/remotes/origin/PR-712 # timeout=10 > git config core.sparsecheckout # timeout=10 > git checkout -f 3d02d7eee7096efa3f17c1fa89b1b882303209da # timeout=10 + docker build -t c7783df57b64d357b10ad4b036e4d7e2b6901a1c --build-arg BASE=nvidia/cuda:11.0.3-devel-ubuntu20.04 -f docker/Dockerfile 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 19.46kB Step 1/25 : ARG BASE=nvidia/cuda:11.0.3-devel-ubuntu20.04 Step 2/25 : FROM $BASE ---> 66deaf56c203 Step 3/25 : ARG NPROCS=4 ---> Using cache ---> eb4521c67836 Step 4/25 : RUN DISTRO=ubuntu2004 && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/$DISTRO/x86_64/3bf863cc.pub ---> Using cache ---> d66077b85dca Step 5/25 : RUN apt-get update && apt-get install -y bc ccache wget openssh-client libgtest-dev && apt-get clean && rm -rf /var/lib/apt/lists/* ---> Using cache ---> f97937143bd9 Step 6/25 : 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 ---> 343a776272f1 Step 7/25 : ENV CMAKE_DIR=/opt/cmake ---> Using cache ---> 3399127e9838 Step 8/25 : RUN CMAKE_VERSION=3.16.9 && 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 ${CMAKE_SCRIPT} ${CMAKE_SHA256} | sha256sum --check && mkdir -p ${CMAKE_DIR} && sh ${CMAKE_SCRIPT} --skip-license --prefix=${CMAKE_DIR} && rm ${CMAKE_SCRIPT} ---> Using cache ---> 7a96946e97f6 Step 9/25 : ENV PATH=${CMAKE_DIR}/bin:$PATH ---> Using cache ---> 99fa69e93b56 Step 10/25 : ENV OPENMPI_DIR=/opt/openmpi ---> Using cache ---> ae6eaaac1a9c Step 11/25 : RUN OPENMPI_VERSION=4.0.2 && OPENMPI_VERSION_SHORT=4.0 && OPENMPI_SHA1=32ce3761288575fb8e4f6296c9105c3a25cf3235 && OPENMPI_URL=https://download.open-mpi.org/release/open-mpi/v${OPENMPI_VERSION_SHORT}/openmpi-${OPENMPI_VERSION}.tar.bz2 && OPENMPI_ARCHIVE=openmpi-${OPENMPI_VERSION}.tar.bz2 && [ ! -z "${CUDA_VERSION}" ] && CUDA_OPTIONS=--with-cuda || true && SCRATCH_DIR=/scratch && mkdir -p ${SCRATCH_DIR} && cd ${SCRATCH_DIR} && wget --quiet ${OPENMPI_URL} --output-document=${OPENMPI_ARCHIVE} && echo "${OPENMPI_SHA1} ${OPENMPI_ARCHIVE}" | sha1sum -c && mkdir -p openmpi && tar -xf ${OPENMPI_ARCHIVE} -C openmpi --strip-components=1 && mkdir -p build && cd build && ../openmpi/configure --prefix=${OPENMPI_DIR} ${CUDA_OPTIONS} CFLAGS=-w && make -j${NPROCS} install && rm -rf ${SCRATCH_DIR} ---> Using cache ---> 79da27e5a3c1 Step 12/25 : ENV PATH=${OPENMPI_DIR}/bin:$PATH ---> Using cache ---> 2f45240eccd8 Step 13/25 : ARG KOKKOS_VERSION=3.7.02 ---> Running in e835431c811b ---> Removed intermediate container e835431c811b ---> 4d17b4acb149 Step 14/25 : ENV KOKKOS_DIR=/opt/kokkos ---> Running in 2dc7bb768ed8 Still waiting to schedule task There are no nodes with the label ‘rocm-docker&&vega&&AMD_Radeon_Instinct_MI60’ ---> Removed intermediate container 2dc7bb768ed8 ---> a603bb35be43 Step 15/25 : RUN KOKKOS_URL=https://github.com/kokkos/kokkos/archive/${KOKKOS_VERSION}.tar.gz && KOKKOS_ARCHIVE=kokkos-${KOKKOS_VERSION}.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_INSTALL_PREFIX=${KOKKOS_DIR} -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_COMPILER=${SCRATCH_DIR}/kokkos/bin/nvcc_wrapper -D Kokkos_ENABLE_CUDA=ON -D Kokkos_ENABLE_CUDA_LAMBDA=ON -D Kokkos_ARCH_VOLTA70=ON .. && make -j${NPROCS} install && rm -rf ${SCRATCH_DIR} ---> Running in 661722e62404 -- Setting default Kokkos CXX standard to 14 -- The CXX compiler identification is GNU 9.4.0 -- Check for working CXX compiler: /scratch/kokkos/bin/nvcc_wrapper -- Check for working CXX compiler: /scratch/kokkos/bin/nvcc_wrapper -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- The project name is: Kokkos -- Compiler Version: 11.0.221 -- 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=c++14 for C++14 standard as feature -- Built-in Execution Spaces: -- Device Parallel: Kokkos::Cuda -- Host Parallel: NoTypeDefined -- Host Serial: SERIAL -- -- Architectures: -- VOLTA70 ---> Removed intermediate container 49e467782dfe ---> ce9de95c6625 Step 16/18 : ARG KOKKOS_OPTIONS="-DKokkos_ENABLE_SYCL=ON -DCMAKE_CXX_FLAGS=-Wno-unknown-cuda-version -DKokkos_ENABLE_UNSUPPORTED_ARCHS=ON -DKokkos_ARCH_VOLTA70=ON -DCMAKE_CXX_STANDARD=17" ---> Running in debe7a82b558 -- Found CUDAToolkit: /usr/local/cuda/include (found version "11.0.221") -- Looking for C++ include pthread.h -- Looking for C++ include pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success -- Found Threads: TRUE -- Found TPLCUDA: TRUE -- Found TPLLIBDL: /usr/include -- Using internal desul_atomics copy -- Kokkos Devices: CUDA;SERIAL, Kokkos Backends: CUDA;SERIAL -- Configuring done -- Generating done -- Build files have been written to: /scratch/kokkos/build Scanning dependencies of target kokkoscore [ 3%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_CPUDiscovery.cpp.o [ 7%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Command_Line_Parsing.cpp.o [ 10%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Core.cpp.o [ 14%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Error.cpp.o [ 17%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_ExecPolicy.cpp.o [ 21%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostBarrier.cpp.o [ 25%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace.cpp.o ---> Removed intermediate container debe7a82b558 ---> 6d301628b5e4 Step 17/18 : ENV KOKKOS_DIR=/opt/kokkos ---> Running in 520ac43ce609 [ 28%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace_deepcopy.cpp.o [ 32%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostThreadTeam.cpp.o [ 35%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemoryPool.cpp.o [ 39%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemorySpace.cpp.o [ 42%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_NumericTraits.cpp.o [ 46%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Profiling.cpp.o [ 50%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_SharedAlloc.cpp.o [ 53%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Spinwait.cpp.o [ 57%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Stacktrace.cpp.o [ 60%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_hwloc.cpp.o [ 64%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Cuda/Kokkos_CudaSpace.cpp.o [ 67%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Cuda/Kokkos_Cuda_Instance.cpp.o ---> Removed intermediate container 520ac43ce609 ---> b00403fab1e2 Step 18/18 : 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 f6d1d513a8be [ 71%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Cuda/Kokkos_Cuda_Locks.cpp.o [ 75%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Cuda/Kokkos_Cuda_Task.cpp.o :: 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 :: [ 78%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Serial/Kokkos_Serial.cpp.o [ 82%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Serial/Kokkos_Serial_Task.cpp.o -- 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 [ 85%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/__/__/tpls/desul/src/Lock_Array_CUDA.cpp.o [ 89%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/__/__/tpls/desul/src/Lock_Array_HIP.cpp.o -- The project name is: Kokkos -- 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 -- Built-in Execution Spaces: -- Device Parallel: Kokkos::Experimental::SYCL -- Host Parallel: NoTypeDefined -- Host Serial: SERIAL -- -- Architectures: -- VOLTA70 -- Found TPLLIBDL: /usr/include -- Using internal desul_atomics copy -- Kokkos Devices: SERIAL;SYCL, Kokkos Backends: SERIAL;SYCL -- Configuring done (1.4s) -- Generating done (0.3s) -- Build files have been written to: /scratch/kokkos/build [ 3%] Building CXX object simd/src/CMakeFiles/kokkossimd.dir/Kokkos_SIMD_dummy.cpp.o [ 6%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_CPUDiscovery.cpp.o [ 13%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Command_Line_Parsing.cpp.o [ 13%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Core.cpp.o clang++clang++clang++: : : warning: warning: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument]argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument]argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [ 17%] Linking CXX static library libkokkossimd.a [ 17%] Built target kokkossimd [ 20%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Error.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [ 24%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_ExecPolicy.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [ 92%] Linking CXX static library libkokkoscore.a [ 92%] Built target kokkoscore Scanning dependencies of target kokkoscontainers [ 96%] Building CXX object containers/src/CMakeFiles/kokkoscontainers.dir/impl/Kokkos_UnorderedMap_impl.cpp.o In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here  get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. [ 27%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostBarrier.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] 14 warnings generated. In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here  get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_ExecPolicy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_Core.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. [ 31%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [100%] Linking CXX static library libkokkoscontainers.a [100%] Built target kokkoscontainers Install the project... -- Install configuration: "Debug" -- 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_HIP_Space.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_View.hpp -- Installing: /opt/kokkos/include/Kokkos_Serial.hpp -- Installing: /opt/kokkos/include/Kokkos_TaskScheduler.hpp -- Installing: /opt/kokkos/include/Kokkos_ScratchSpace.hpp -- Installing: /opt/kokkos/include/Kokkos_OpenMPTarget.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_UniqueToken.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_Parallel_Team.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/Threads -- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Parallel_MDRange.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_Parallel_Team.hpp -- Installing: /opt/kokkos/include/Kokkos_Threads.hpp -- Installing: /opt/kokkos/include/Kokkos_CudaSpace.hpp -- Installing: /opt/kokkos/include/Kokkos_OpenMPTargetSpace.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_Cuda.hpp -- Installing: /opt/kokkos/include/Kokkos_PointerOwnership.hpp -- Installing: /opt/kokkos/include/Kokkos_HPX.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_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_SYCL.hpp -- Installing: /opt/kokkos/include/Kokkos_SYCL_Space.hpp -- Installing: /opt/kokkos/include/KokkosExp_InterOp.hpp -- Installing: /opt/kokkos/include/Kokkos_OpenMP.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.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_UniqueToken.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Parallel_MDRange.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Task.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Exec.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_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_Traits.hpp -- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_Instance.hpp -- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC.hpp -- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACCSpace.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_HIP.hpp -- Installing: /opt/kokkos/include/Kokkos_TaskPolicy.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_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_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_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_Locks.hpp -- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_BlockSize_Deduction.hpp -- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Atomic.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_Atomic_Fetch_Add.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Load.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_Atomic_Increment.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Default_GraphNode_Impl.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Fetch_And.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_Atomic_Exchange.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_Timer.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_Atomic_Windows.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_GraphNodeCustomization.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ChaseLev.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMemoryManager.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_MinMax.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_Default_Graph_fwd.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMultiple_impl.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Memory_Order.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_Atomic_Store.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_Atomic_Assembly.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Memory_Fence.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Fetch_Or.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_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_Atomic_Compare_Exchange_Weak.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_PhysicalLayout.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Generic.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ClockTic.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_FunctorAnalysis.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Compare_Exchange_Strong.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Stacktrace.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ViewMapping.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ViewArray.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Generic_Secondary.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_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_Atomic_Fetch_Sub.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_Atomic_Decrement.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ConcurrentBitset.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_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_Locks.hpp -- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Atomic_Intrinsics.hpp -- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Parallel_MDRange.hpp -- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Alloc.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_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_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_Atomic_Intrinsics_Restore_Builtins.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/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/SYCLConversions.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/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/SYCL.hpp -- Installing: /opt/kokkos/include/desul/atomics/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/Compare_Exchange_CUDA.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_GCC.hpp -- Installing: /opt/kokkos/include/desul/atomics/Lock_Array_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/Lock_Array.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/HIP.hpp -- Installing: /opt/kokkos/include/desul/atomics/OpenMP.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_Serial.hpp -- Installing: /opt/kokkos/include/desul/atomics/Macros.hpp -- Installing: /opt/kokkos/include/desul/atomics/CUDA.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_HIP.hpp -- Installing: /opt/kokkos/include/desul/atomics.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/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-debug.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 [ 34%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostSpace_deepcopy.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [ 37%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_HostThreadTeam.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ [ 41%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemoryPool.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] 14 warnings generated. 14 warnings generated. [ 44%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemorySpace.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_HostSpace_deepcopy.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ [ 48%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_NumericTraits.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] 14 warnings generated. [ 51%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Profiling.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [ 55%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_SharedAlloc.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument]  ---> Removed intermediate container 661722e62404 ---> 8ce9fc64900f Step 16/25 : ENV ARBORX_DIR=/opt/arborx ---> Running in 761a0a9fcf6b [ 58%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Spinwait.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ [ 62%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_Stacktrace.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] 14 warnings generated.  ---> Removed intermediate container 761a0a9fcf6b ---> e7713504b3d4 Step 17/25 : RUN ARBORX_VERSION=4834bff44c23c9510c6ed93366638dcdf85ab217 && ARBORX_URL=https://github.com/arborx/ArborX/archive/${ARBORX_VERSION}.tar.gz && ARBORX_ARCHIVE=arborx.tar.gz && wget --quiet ${ARBORX_URL} --output-document=${ARBORX_ARCHIVE} && mkdir arborx && tar -xf ${ARBORX_ARCHIVE} -C arborx --strip-components=1 && cd arborx && mkdir -p build && cd build && cmake -D CMAKE_INSTALL_PREFIX=${ARBORX_DIR} -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_COMPILER=${KOKKOS_DIR}/bin/nvcc_wrapper -D CMAKE_CXX_EXTENSIONS=OFF -D CMAKE_PREFIX_PATH=${KOKKOS_DIR} .. && make -j${NPROCS} install && cd ../.. && rm -r arborx ---> Running in a24da0ffc75a [ 65%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_hwloc.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_SharedAlloc.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ [ 68%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Serial/Kokkos_Serial.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] 14 warnings generated. [ 72%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/Serial/Kokkos_Serial_Task.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. [ 75%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] -- The CXX compiler identification is GNU 9.4.0 -- Check for working CXX compiler: /opt/kokkos/bin/nvcc_wrapper -- Check for working CXX compiler: /opt/kokkos/bin/nvcc_wrapper -- works -- Detecting CXX compiler ABI info In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Enabled Kokkos devices: CUDA;SERIAL -- Found Kokkos_OPTIONS: CUDA_LAMBDA -- ArborX hash = 'No hash available' -- Configuring done -- Generating done -- Build files have been written to: /arborx/build Scanning dependencies of target record_hash -- ArborX hash = 'No hash available' Built target record_hash Install the project... -- Install configuration: "Debug" -- Installing: /opt/arborx/lib/cmake/ArborX/ArborXTargets.cmake -- Installing: /opt/arborx/lib/cmake/ArborX/ArborXConfig.cmake -- Installing: /opt/arborx/lib/cmake/ArborX/ArborXSettings.cmake -- Installing: /opt/arborx/include -- Installing: /opt/arborx/include/ArborX_LinearBVH.hpp -- Installing: /opt/arborx/include/ArborX.hpp -- Installing: /opt/arborx/include/details -- Installing: /opt/arborx/include/details/ArborX_DetailsHeap.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsStack.hpp -- Installing: /opt/arborx/include/details/ArborX_Macros.hpp -- Installing: /opt/arborx/include/details/ArborX_Point.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsAlgorithms.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsBufferOptimization.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsNode.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsUtils.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsConcepts.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsTreeTraversal.hpp -- Installing: /opt/arborx/include/details/ArborX_Callbacks.hpp -- Installing: /opt/arborx/include/details/ArborX_Sphere.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsTags.hpp -- Installing: /opt/arborx/include/details/ArborX_Box.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsBatchedQueries.hpp -- Installing: /opt/arborx/include/details/ArborX_Predicates.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsContainers.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsTreeVisualization.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsMortonCode.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsTreeConstruction.hpp -- Installing: /opt/arborx/include/details/ArborX_AccessTraits.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsBoundingVolumeHierarchyImpl.hpp -- Installing: /opt/arborx/include/details/ArborX_Exception.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsPriorityQueue.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsSortUtils.hpp -- Installing: /opt/arborx/include/details/ArborX_DetailsKokkosExt.hpp -- Up-to-date: /opt/arborx/include -- Installing: /opt/arborx/include/ArborX_Config.hpp -- Installing: /opt/arborx/include/ArborX_Version.hpp 14 warnings generated. In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/impl/Kokkos_hwloc.cpp:56: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ [ 79%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL_Instance.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. [ 82%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL_Space.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:173:40: warning: 'is_host' is deprecated: is_host() is deprecated as the host device is no longer supported. [-Wdeprecated-declarations] << "\nIs Host: " << device.is_host() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/device.hpp:101:3: note: 'is_host' has been explicitly marked deprecated here __SYCL2020_DEPRECATED( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:213:63: warning: 'image_support' is deprecated: deprecated in SYCL 2020, use device::has(aspect::image) instead [-Wdeprecated-declarations] << "\nImage Support: " << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:2:1: note: 'image_support' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(image_support, "deprecated in SYCL 2020, use device::has(aspect::image) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:247:40: warning: 'host_unified_memory' is deprecated: deprecated in SYCL 2020, use device::has() with one of the aspect::usm_* aspects instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:5:1: note: 'host_unified_memory' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(host_unified_memory,"deprecated in SYCL 2020, use device::has() with " ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:251:40: warning: 'is_endian_little' is deprecated: deprecated in SYCL 2020, check the byte order of the host system instead, the host and the device are required to have the same byte order [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:7:1: note: 'is_endian_little' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(is_endian_little,"deprecated in SYCL 2020, check the byte order of " ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:254:40: warning: 'is_compiler_available' is deprecated: deprecated in SYCL 2020, use device::has(aspect::online_compiler) instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:10:1: note: 'is_compiler_available' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(is_compiler_available,"deprecated in SYCL 2020, use device::has(aspect::online_compiler) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:256:40: warning: 'is_linker_available' is deprecated: deprecated in SYCL 2020, use device::has(aspect::online_linker) instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:11:1: note: 'is_linker_available' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(is_linker_available, "deprecated in SYCL 2020, use device::has(aspect::online_linker) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:258:40: warning: 'queue_profiling' is deprecated: deprecated in SYCL 2020, use device::has(aspect::queue_profiling) instead [-Wdeprecated-declarations]  << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:12:1: note: 'queue_profiling' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(queue_profiling, "deprecated in SYCL 2020, use device::has(aspect::queue_profiling) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED'  struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:260:57: warning: 'profile' is deprecated: deprecated in SYCL 2020 [-Wdeprecated-declarations]  << "\nProfile: " << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:14:1: note: 'profile' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(profile,"deprecated in SYCL 2020") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:263:40: warning: 'printf_buffer_size' is deprecated: deprecated in SYCL 2020 [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:18:1: note: 'printf_buffer_size' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(printf_buffer_size,"deprecated in SYCL 2020") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:265:40: warning: 'preferred_interop_user_sync' is deprecated: deprecated in SYCL 2020 [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:19:1: note: 'preferred_interop_user_sync' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(preferred_interop_user_sync,"deprecated in SYCL 2020") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 24 warnings generated. In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/Serial/Kokkos_Serial.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. [ 86%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/__/__/tpls/desul/src/Lock_Array_CUDA.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here  get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:54: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:173:40: warning: 'is_host' is deprecated: is_host() is deprecated as the host device is no longer supported. [-Wdeprecated-declarations] << "\nIs Host: " << device.is_host() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/device.hpp:101:3: note: 'is_host' has been explicitly marked deprecated here __SYCL2020_DEPRECATED( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:213:63: warning: 'image_support' is deprecated: deprecated in SYCL 2020, use device::has(aspect::image) instead [-Wdeprecated-declarations] << "\nImage Support: " << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:2:1: note: 'image_support' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(image_support, "deprecated in SYCL 2020, use device::has(aspect::image) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:247:40: warning: 'host_unified_memory' is deprecated: deprecated in SYCL 2020, use device::has() with one of the aspect::usm_* aspects instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:5:1: note: 'host_unified_memory' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(host_unified_memory,"deprecated in SYCL 2020, use device::has() with " ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:251:40: warning: 'is_endian_little' is deprecated: deprecated in SYCL 2020, check the byte order of the host system instead, the host and the device are required to have the same byte order [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:7:1: note: 'is_endian_little' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(is_endian_little,"deprecated in SYCL 2020, check the byte order of " ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:254:40: warning: 'is_compiler_available' is deprecated: deprecated in SYCL 2020, use device::has(aspect::online_compiler) instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:10:1: note: 'is_compiler_available' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(is_compiler_available,"deprecated in SYCL 2020, use device::has(aspect::online_compiler) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED'  struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:256:40: warning: 'is_linker_available' is deprecated: deprecated in SYCL 2020, use device::has(aspect::online_linker) instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:11:1: note: 'is_linker_available' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(is_linker_available, "deprecated in SYCL 2020, use device::has(aspect::online_linker) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED'  struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:258:40: warning: 'queue_profiling' is deprecated: deprecated in SYCL 2020, use device::has(aspect::queue_profiling) instead [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:12:1: note: 'queue_profiling' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(queue_profiling, "deprecated in SYCL 2020, use device::has(aspect::queue_profiling) instead") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:260:57: warning: 'profile' is deprecated: deprecated in SYCL 2020 [-Wdeprecated-declarations] << "\nProfile: " << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:14:1: note: 'profile' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(profile,"deprecated in SYCL 2020") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED'  struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:263:40: warning: 'printf_buffer_size' is deprecated: deprecated in SYCL 2020 [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:18:1: note: 'printf_buffer_size' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(printf_buffer_size,"deprecated in SYCL 2020") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED' struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ /scratch/kokkos/core/src/SYCL/Kokkos_SYCL.cpp:265:40: warning: 'preferred_interop_user_sync' is deprecated: deprecated in SYCL 2020 [-Wdeprecated-declarations] << device.get_info() ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/device_traits_deprecated.def:19:1: note: 'preferred_interop_user_sync' has been explicitly marked deprecated here __SYCL_PARAM_TRAITS_DEPRECATED(preferred_interop_user_sync,"deprecated in SYCL 2020") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/info/info_desc.hpp:97:10: note: expanded from macro '__SYCL_PARAM_TRAITS_DEPRECATED'  struct __SYCL2020_DEPRECATED(Message) Desc; ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^  ---> Removed intermediate container a24da0ffc75a ---> dcde8d33df30 Step 18/25 : ARG FFTW_VERSION=3.3.8 24 warnings generated. [ 89%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/__/__/tpls/desul/src/Lock_Array_HIP.cpp.o clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument]  ---> Running in 90258a441d9d In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Instance.cpp:49: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. [ 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 clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument]  ---> Removed intermediate container 90258a441d9d ---> b1491bb23ca7 Step 19/25 : ENV FFTW_DIR=/opt/fftw ---> Running in b111a9647425 In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here  local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here  get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations]  auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ 14 warnings generated. In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:331:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:335:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:645:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:55: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Reduce.hpp:649:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:56: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Scan.hpp:166:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:465:16: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] .get_info( ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:433:44: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:627:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations] sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:693:54: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:156:7: note: 'get_info' has been explicitly marked deprecated here  get_info(const device &Device, const range<3> &WGSize) const; ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:825:35: warning: 'get_info' is deprecated: Use the overload without the second parameter [-Wdeprecated-declarations] auto max_sg_size = kernel.get_info< ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/kernel.hpp:154:3: note: 'get_info' has been explicitly marked deprecated here  __SYCL2020_DEPRECATED("Use the overload without the second parameter") ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:680:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^ In file included from /scratch/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.cpp:49: In file included from /scratch/kokkos/containers/src/Kokkos_UnorderedMap.hpp:58: In file included from /scratch/kokkos/core/src/Kokkos_Core.hpp:57: In file included from /scratch/kokkos/build/KokkosCore_Config_DeclareBackend.hpp:48: In file included from /scratch/kokkos/core/src/decl/Kokkos_Declare_SYCL.hpp:57: /scratch/kokkos/core/src/SYCL/Kokkos_SYCL_Parallel_Team.hpp:837:46: warning: 'local' is deprecated: use `local_accessor` instead [-Wdeprecated-declarations]  sycl::access::target::local> ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/access/access.hpp:20:9: note: 'local' has been explicitly marked deprecated here local __SYCL2020_DEPRECATED("use `local_accessor` instead") = 2016, ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:52:40: note: expanded from macro '__SYCL2020_DEPRECATED' #define __SYCL2020_DEPRECATED(message) __SYCL_DEPRECATED(message) ^ /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/../include/sycl/detail/defines_elementary.hpp:43:38: note: expanded from macro '__SYCL_DEPRECATED' #define __SYCL_DEPRECATED(message) [[deprecated(message)]] ^  ---> Removed intermediate container b111a9647425 ---> 14659c5aa29e Step 20/25 : RUN FFTW_URL=http://www.fftw.org/fftw-${FFTW_VERSION}.tar.gz && FFTW_ARCHIVE=fftw.tar.gz && SCRATCH_DIR=/scratch && mkdir -p ${SCRATCH_DIR} && cd ${SCRATCH_DIR} && wget --quiet ${FFTW_URL} --output-document=${FFTW_ARCHIVE} && mkdir -p fftw && tar -xf ${FFTW_ARCHIVE} -C fftw --strip-components=1 && cd fftw && mkdir -p build && cd build && cmake -D CMAKE_INSTALL_PREFIX=${FFTW_DIR} -D CMAKE_BUILD_TYPE=Debug -D ENABLE_FLOAT=ON .. && make -j${NPROCS} install && cmake -D CMAKE_INSTALL_PREFIX=${FFTW_DIR} -D CMAKE_BUILD_TYPE=Debug -D ENABLE_FLOAT=OFF .. && make -j${NPROCS} install && rm -rf ${SCRATCH_DIR} ---> Running in 3ae599be9ddb 14 warnings generated. [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_HIP_Space.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_View.hpp -- Installing: /opt/kokkos/include/Kokkos_Serial.hpp -- Installing: /opt/kokkos/include/Kokkos_TaskScheduler.hpp -- Installing: /opt/kokkos/include/Kokkos_ScratchSpace.hpp -- Installing: /opt/kokkos/include/Kokkos_OpenMPTarget.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_UniqueToken.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_Parallel_Team.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/Threads -- Installing: /opt/kokkos/include/Threads/Kokkos_Threads_Parallel_MDRange.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_Parallel_Team.hpp -- Installing: /opt/kokkos/include/Kokkos_Threads.hpp -- Installing: /opt/kokkos/include/Kokkos_CudaSpace.hpp -- Installing: /opt/kokkos/include/Kokkos_OpenMPTargetSpace.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_Cuda.hpp -- Installing: /opt/kokkos/include/Kokkos_PointerOwnership.hpp -- Installing: /opt/kokkos/include/Kokkos_HPX.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_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_SYCL.hpp -- Installing: /opt/kokkos/include/Kokkos_SYCL_Space.hpp -- Installing: /opt/kokkos/include/KokkosExp_InterOp.hpp -- Installing: /opt/kokkos/include/Kokkos_OpenMP.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.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_UniqueToken.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Parallel_MDRange.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Task.hpp -- Installing: /opt/kokkos/include/OpenMPTarget/Kokkos_OpenMPTarget_Exec.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_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_Traits.hpp -- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC_Instance.hpp -- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACC.hpp -- Installing: /opt/kokkos/include/OpenACC/Kokkos_OpenACCSpace.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_HIP.hpp -- Installing: /opt/kokkos/include/Kokkos_TaskPolicy.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_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_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_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_Locks.hpp -- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_BlockSize_Deduction.hpp -- Installing: /opt/kokkos/include/HIP/Kokkos_HIP_Atomic.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_Atomic_Fetch_Add.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Load.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_Atomic_Increment.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Default_GraphNode_Impl.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Fetch_And.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_Atomic_Exchange.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_Timer.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_Atomic_Windows.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_GraphNodeCustomization.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ChaseLev.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMemoryManager.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_MinMax.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_Default_Graph_fwd.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_TaskQueueMultiple_impl.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Memory_Order.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_Atomic_Store.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_Atomic_Assembly.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Memory_Fence.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Fetch_Or.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_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_Atomic_Compare_Exchange_Weak.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_PhysicalLayout.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Generic.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ClockTic.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_FunctorAnalysis.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Compare_Exchange_Strong.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Stacktrace.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ViewMapping.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ViewArray.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_Atomic_Generic_Secondary.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_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_Atomic_Fetch_Sub.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_Atomic_Decrement.hpp -- Installing: /opt/kokkos/include/impl/Kokkos_ConcurrentBitset.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_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_Locks.hpp -- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Atomic_Intrinsics.hpp -- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Parallel_MDRange.hpp -- Installing: /opt/kokkos/include/Cuda/Kokkos_Cuda_Alloc.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_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_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_Atomic_Intrinsics_Restore_Builtins.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/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/SYCLConversions.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/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/SYCL.hpp -- Installing: /opt/kokkos/include/desul/atomics/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/Compare_Exchange_CUDA.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_GCC.hpp -- Installing: /opt/kokkos/include/desul/atomics/Lock_Array_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/Lock_Array.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/HIP.hpp -- Installing: /opt/kokkos/include/desul/atomics/OpenMP.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_Serial.hpp -- Installing: /opt/kokkos/include/desul/atomics/Macros.hpp -- Installing: /opt/kokkos/include/desul/atomics/CUDA.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange.hpp -- Installing: /opt/kokkos/include/desul/atomics/Compare_Exchange_HIP.hpp -- Installing: /opt/kokkos/include/desul/atomics.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 -- Up-to-date: /opt/kokkos/include -- Installing: /opt/kokkos/include/Kokkos_SIMD_Common.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 -- The C compiler identification is GNU 9.4.0 -- The CXX compiler identification is GNU 9.4.0 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Looking for alloca.h -- Looking for alloca.h - found -- Looking for altivec.h -- Looking for altivec.h - not found -- Looking for c_asm.h -- Looking for c_asm.h - not found -- Looking for dlfcn.h -- Looking for dlfcn.h - found -- Looking for intrinsics.h -- Looking for intrinsics.h - not found -- Looking for inttypes.h -- Looking for inttypes.h - found -- Looking for libintl.h -- Looking for libintl.h - found -- Looking for limits.h -- Looking for limits.h - found -- Looking for mach/mach_time.h -- Looking for mach/mach_time.h - not found -- Looking for malloc.h -- Looking for malloc.h - found -- Looking for memory.h -- Looking for memory.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stdlib.h -- Looking for stdlib.h - found -- Looking for string.h -- Looking for string.h - found -- Looking for strings.h -- Looking for strings.h - found -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for sys/time.h -- Looking for sys/time.h - found -- Looking for sys/stat.h -- Looking for sys/stat.h - found -- Looking for sys/sysctl.h -- Looking for sys/sysctl.h - found -- Looking for time.h -- Looking for time.h - found -- Looking for uintptr.h -- Looking for uintptr.h - not found -- Looking for unistd.h -- Looking for unistd.h - found -- Checking prototype drand48 for HAVE_DECL_DRAND48 - True -- Checking prototype srand48 for HAVE_DECL_SRAND48 - True -- Checking prototype cosl for HAVE_DECL_COSL - True ---> Removed intermediate container f6d1d513a8be ---> b4c72286ff18 Successfully built b4c72286ff18 Successfully tagged 5ce6f6af6a48bc15e45537142e4a0054fec361a4:latest -- Checking prototype sinl for HAVE_DECL_SINL - True -- Checking prototype memalign for HAVE_DECL_MEMALIGN - True [Pipeline] isUnix [Pipeline] withEnv [Pipeline] { [Pipeline] sh -- Checking prototype posix_memalign for HAVE_DECL_POSIX_MEMALIGN - True -- Looking for clock_gettime + docker inspect -f . 5ce6f6af6a48bc15e45537142e4a0054fec361a4 . [Pipeline] } [Pipeline] // withEnv [Pipeline] withDockerContainer fetnat07 seems to be running inside container bfa014185456acfb44c6df26f64418adcbf634b3afec695e2417a69273aa4e5b $ docker run -t -d -u 0:0 -v /tmp/ccache.kokkos:/tmp/ccache -w /var/jenkins/workspace/Cabana_PR-712 --volumes-from bfa014185456acfb44c6df26f64418adcbf634b3afec695e2417a69273aa4e5b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** 5ce6f6af6a48bc15e45537142e4a0054fec361a4 cat -- Looking for clock_gettime - found -- Looking for gettimeofday -- Looking for gettimeofday - found -- Looking for getpagesize -- Looking for getpagesize - found -- Looking for drand48 -- Looking for drand48 - found -- Looking for srand48 -- Looking for srand48 - found -- Looking for memalign -- Looking for memalign - found -- Looking for posix_memalign -- Looking for posix_memalign - found -- Looking for mach_absolute_time -- Looking for mach_absolute_time - not found -- Looking for alloca -- Looking for alloca - found -- Looking for isnan -- Looking for isnan - found -- Looking for snprintf -- Looking for snprintf - found -- Looking for strchr -- Looking for strchr - found -- Looking for sysctl -- Looking for sysctl - not found -- Looking for cosl -- Looking for cosl - found -- Looking for sinl -- Looking for sinl - found -- Check size of float -- Check size of float - done -- Check size of double -- Check size of double - done -- Check size of int $ docker top 1c2dd3ccbca094cefa534b71e89f15f985167763cea1ff370a22111aca119d09 -eo pid,comm ERROR: The container started but didn't run the expected command. Please double check your ENTRYPOINT does execute the command passed as docker run argument, as required by official docker images (see https://github.com/docker-library/official-images#consistency for entrypoint consistency requirements). Alternatively you can force image entrypoint to be disabled by adding option `--entrypoint=''`. [Pipeline] { -- Check size of int - done -- Check size of long -- Check size of long - done -- Check size of long long [Pipeline] sh -- Check size of long long - done -- Check size of unsigned int -- Check size of unsigned int - done -- Check size of unsigned long + ccache --zero-stats Statistics zeroed [Pipeline] sh -- Check size of unsigned long - done -- Check size of unsigned long long + . /opt/intel/oneapi/setvars.sh --include-intel-llvm + script_name=setvars.sh + config_file= + config_array= + component_array= + warning_tally=0 + posix_nl= + save_args + echo + script_args= + _setvars_this_script_name=setvars.sh + _setvars_get_proc_name /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy + [ -n ] + script=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy + [ -L /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy ] + basename -- /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy + [ setvars.sh = script.sh.copy ] + sourcer= + sourced_nm= + ps -p 50 -o comm= + sourced_sh=sh + _setvars_get_proc_name /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy + [ -n ] + script=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy + [ -L /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy ] + basename -- /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy + proc_name=script.sh.copy + [ -n ] + [ -n ] + [ -n ] + [ dash = sh ] + [ sh = sh ] + printf %s: %s script.sh.copy SH_VERSION = unknown + sourcer=script.sh.copy: SH_VERSION = unknown + sourced_nm=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + : + printf %s /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + grep -Eq sh: [0-9]+: .*setvars\.sh: + [ -eq 0 ] /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 371: [: Illegal number: + [ = /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution ] + get_script_path /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + script=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + [ -L /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution ] + command dirname -- /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + script_dir=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi + [ -n ] + command cd /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 269: cd: can't cd to /var/jenkins/workspace/Cabana_PR-712@tmp/durable-a04ce32c/script.sh.copy: 370: /opt/intel/oneapi + script_dir= + script_root= Post stage [Pipeline] sh -- Check size of unsigned long long - done -- Check size of size_t -- Check size of size_t - done -- Check size of ptrdiff_t + ccache --show-stats cache directory /tmp/ccache primary config /tmp/ccache/ccache.conf secondary config (readonly) /etc/ccache.conf stats updated Wed Apr 24 16:30:30 2024 stats zeroed Wed Apr 24 16:30:30 2024 cache hit (direct) 0 cache hit (preprocessed) 0 cache miss 0 cache hit rate 0.00 % cleanups performed 0 files in cache 2520 cache size 4.4 GB max cache size 10.0 GB [Pipeline] } $ docker stop --time=1 1c2dd3ccbca094cefa534b71e89f15f985167763cea1ff370a22111aca119d09 -- Check size of ptrdiff_t - done -- Configuring done -- Generating done -- Build files have been written to: /scratch/fftw/build Scanning dependencies of target fftw3f [ 1%] Building C object CMakeFiles/fftw3f.dir/api/execute-dft-c2r.c.o [ 1%] Building C object CMakeFiles/fftw3f.dir/api/configure.c.o [ 1%] Building C object CMakeFiles/fftw3f.dir/api/apiplan.c.o [ 1%] Building C object CMakeFiles/fftw3f.dir/api/execute-dft-r2c.c.o [ 1%] Building C object CMakeFiles/fftw3f.dir/api/execute-dft.c.o [ 2%] Building C object CMakeFiles/fftw3f.dir/api/execute-r2r.c.o [ 2%] Building C object CMakeFiles/fftw3f.dir/api/execute-split-dft-c2r.c.o [ 2%] Building C object CMakeFiles/fftw3f.dir/api/execute-split-dft-r2c.c.o [ 3%] Building C object CMakeFiles/fftw3f.dir/api/execute-split-dft.c.o [ 3%] Building C object CMakeFiles/fftw3f.dir/api/execute.c.o [ 3%] Building C object CMakeFiles/fftw3f.dir/api/export-wisdom-to-file.c.o [ 3%] Building C object CMakeFiles/fftw3f.dir/api/export-wisdom-to-string.c.o [ 3%] Building C object CMakeFiles/fftw3f.dir/api/export-wisdom.c.o [ 3%] Building C object CMakeFiles/fftw3f.dir/api/f77api.c.o [ 4%] Building C object CMakeFiles/fftw3f.dir/api/flops.c.o [ 4%] Building C object CMakeFiles/fftw3f.dir/api/forget-wisdom.c.o [ 4%] Building C object CMakeFiles/fftw3f.dir/api/import-system-wisdom.c.o [ 4%] Building C object CMakeFiles/fftw3f.dir/api/import-wisdom-from-file.c.o [ 4%] Building C object CMakeFiles/fftw3f.dir/api/import-wisdom-from-string.c.o [ 5%] Building C object CMakeFiles/fftw3f.dir/api/import-wisdom.c.o [ 5%] Building C object CMakeFiles/fftw3f.dir/api/malloc.c.o [ 5%] Building C object CMakeFiles/fftw3f.dir/api/map-r2r-kind.c.o [ 5%] Building C object CMakeFiles/fftw3f.dir/api/mapflags.c.o [ 6%] Building C object CMakeFiles/fftw3f.dir/api/mkprinter-file.c.o [ 6%] Building C object CMakeFiles/fftw3f.dir/api/mkprinter-str.c.o [ 6%] Building C object CMakeFiles/fftw3f.dir/api/mktensor-iodims.c.o [ 6%] Building C object CMakeFiles/fftw3f.dir/api/mktensor-iodims64.c.o [ 6%] Building C object CMakeFiles/fftw3f.dir/api/mktensor-rowmajor.c.o [ 7%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-1d.c.o [ 7%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-2d.c.o [ 7%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-3d.c.o [ 7%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-c2r-1d.c.o [ 7%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-c2r-2d.c.o [ 8%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-c2r-3d.c.o [ 8%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-c2r.c.o [ 8%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-r2c-1d.c.o [ 8%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-r2c-2d.c.o [ 9%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-r2c-3d.c.o [ 9%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft-r2c.c.o [ 9%] Building C object CMakeFiles/fftw3f.dir/api/plan-dft.c.o [ 9%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-dft-c2r.c.o [ 9%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-dft-r2c.c.o [ 10%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-dft.c.o [ 10%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-r2r.c.o [ 10%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-split-dft-c2r.c.o [ 10%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-split-dft-r2c.c.o $ docker rm -f --volumes 1c2dd3ccbca094cefa534b71e89f15f985167763cea1ff370a22111aca119d09 [Pipeline] // withDockerContainer [Pipeline] } [ 10%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru-split-dft.c.o [ 11%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-dft-c2r.c.o [ 11%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-dft-r2c.c.o [ 11%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-dft.c.o [ 11%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-r2r.c.o [ 12%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-split-dft-c2r.c.o [ 12%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-split-dft-r2c.c.o [ 12%] Building C object CMakeFiles/fftw3f.dir/api/plan-guru64-split-dft.c.o [ 12%] Building C object CMakeFiles/fftw3f.dir/api/plan-many-dft-c2r.c.o [ 12%] Building C object CMakeFiles/fftw3f.dir/api/plan-many-dft-r2c.c.o [ 13%] Building C object CMakeFiles/fftw3f.dir/api/plan-many-dft.c.o [ 13%] Building C object CMakeFiles/fftw3f.dir/api/plan-many-r2r.c.o [ 13%] Building C object CMakeFiles/fftw3f.dir/api/plan-r2r-1d.c.o [ 13%] Building C object CMakeFiles/fftw3f.dir/api/plan-r2r-2d.c.o [ 13%] Building C object CMakeFiles/fftw3f.dir/api/plan-r2r-3d.c.o [ 14%] Building C object CMakeFiles/fftw3f.dir/api/plan-r2r.c.o [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] } [Pipeline] // stage [Pipeline] } Failed in branch SYCL [ 14%] Building C object CMakeFiles/fftw3f.dir/api/print-plan.c.o [ 14%] Building C object CMakeFiles/fftw3f.dir/api/rdft2-pad.c.o [ 14%] Building C object CMakeFiles/fftw3f.dir/api/the-planner.c.o [ 15%] Building C object CMakeFiles/fftw3f.dir/api/version.c.o [ 15%] Building C object CMakeFiles/fftw3f.dir/dft/bluestein.c.o [ 15%] Building C object CMakeFiles/fftw3f.dir/dft/conf.c.o [ 15%] Building C object CMakeFiles/fftw3f.dir/dft/ct.c.o [ 15%] Building C object CMakeFiles/fftw3f.dir/dft/buffered.c.o [ 16%] Building C object CMakeFiles/fftw3f.dir/dft/dftw-direct.c.o [ 16%] Building C object CMakeFiles/fftw3f.dir/dft/dftw-directsq.c.o [ 16%] Building C object CMakeFiles/fftw3f.dir/dft/dftw-generic.c.o [ 16%] Building C object CMakeFiles/fftw3f.dir/dft/dftw-genericbuf.c.o [ 16%] Building C object CMakeFiles/fftw3f.dir/dft/direct.c.o [ 17%] Building C object CMakeFiles/fftw3f.dir/dft/generic.c.o [ 17%] Building C object CMakeFiles/fftw3f.dir/dft/indirect.c.o [ 17%] Building C object CMakeFiles/fftw3f.dir/dft/indirect-transpose.c.o [ 17%] Building C object CMakeFiles/fftw3f.dir/dft/kdft-dif.c.o [ 18%] Building C object CMakeFiles/fftw3f.dir/dft/kdft-difsq.c.o [ 18%] Building C object CMakeFiles/fftw3f.dir/dft/kdft.c.o [ 18%] Building C object CMakeFiles/fftw3f.dir/dft/kdft-dit.c.o [ 18%] Building C object CMakeFiles/fftw3f.dir/dft/nop.c.o [ 18%] Building C object CMakeFiles/fftw3f.dir/dft/plan.c.o [ 19%] Building C object CMakeFiles/fftw3f.dir/dft/problem.c.o [ 19%] Building C object CMakeFiles/fftw3f.dir/dft/rader.c.o [ 19%] Building C object CMakeFiles/fftw3f.dir/dft/rank-geq2.c.o [ 19%] Building C object CMakeFiles/fftw3f.dir/dft/solve.c.o [ 19%] Building C object CMakeFiles/fftw3f.dir/dft/vrank-geq1.c.o [ 20%] Building C object CMakeFiles/fftw3f.dir/dft/zero.c.o [ 20%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/n.c.o [ 20%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/t.c.o [ 21%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_10.c.o [ 21%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/codlist.c.o [ 21%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_11.c.o [ 21%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_12.c.o [ 21%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_13.c.o [ 21%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_14.c.o [ 22%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_15.c.o [ 22%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_16.c.o [ 22%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_2.c.o [ 22%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_20.c.o [ 22%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_25.c.o [ 23%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_3.c.o [ 23%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_32.c.o [ 23%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_4.c.o [ 23%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_5.c.o [ 24%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_6.c.o [ 24%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_64.c.o [ 24%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_7.c.o [ 24%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_8.c.o [ 24%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/n1_9.c.o [ 25%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/q1_2.c.o [ 25%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/q1_3.c.o [ 25%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/q1_4.c.o [ 25%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/q1_5.c.o [ 25%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/q1_6.c.o [ 26%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/q1_8.c.o [ 26%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_10.c.o [ 26%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_12.c.o [ 26%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_15.c.o [ 27%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_16.c.o [ 27%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_2.c.o [ 27%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_20.c.o [ 27%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_25.c.o [ 27%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_3.c.o [ 28%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_32.c.o [ 28%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_4.c.o [ 28%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_5.c.o [ 28%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_6.c.o [ 28%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_64.c.o [ 29%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_7.c.o [ 29%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_8.c.o [ 29%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t1_9.c.o [ 29%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_10.c.o [ 30%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_16.c.o [ 30%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_20.c.o [ 30%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_25.c.o [ 30%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_32.c.o [ 30%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_4.c.o [ 31%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_5.c.o [ 31%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_64.c.o [ 31%] Building C object CMakeFiles/fftw3f.dir/dft/scalar/codelets/t2_8.c.o [ 31%] Building C object CMakeFiles/fftw3f.dir/kernel/align.c.o [ 31%] Building C object CMakeFiles/fftw3f.dir/kernel/alloc.c.o [ 32%] Building C object CMakeFiles/fftw3f.dir/kernel/assert.c.o [ 32%] Building C object CMakeFiles/fftw3f.dir/kernel/awake.c.o [ 32%] Building C object CMakeFiles/fftw3f.dir/kernel/buffered.c.o [ 32%] Building C object CMakeFiles/fftw3f.dir/kernel/cpy1d.c.o [ 33%] Building C object CMakeFiles/fftw3f.dir/kernel/cpy2d-pair.c.o [ 33%] Building C object CMakeFiles/fftw3f.dir/kernel/cpy2d.c.o [ 33%] Building C object CMakeFiles/fftw3f.dir/kernel/ct.c.o [ 33%] Building C object CMakeFiles/fftw3f.dir/kernel/debug.c.o [ 33%] Building C object CMakeFiles/fftw3f.dir/kernel/extract-reim.c.o [ 34%] Building C object CMakeFiles/fftw3f.dir/kernel/hash.c.o [ 34%] Building C object CMakeFiles/fftw3f.dir/kernel/iabs.c.o [ 34%] Building C object CMakeFiles/fftw3f.dir/kernel/kalloc.c.o [ 34%] Building C object CMakeFiles/fftw3f.dir/kernel/md5-1.c.o [ 34%] Building C object CMakeFiles/fftw3f.dir/kernel/md5.c.o [ 35%] Building C object CMakeFiles/fftw3f.dir/kernel/minmax.c.o [ 35%] Building C object CMakeFiles/fftw3f.dir/kernel/ops.c.o [ 35%] Building C object CMakeFiles/fftw3f.dir/kernel/pickdim.c.o [ 35%] Building C object CMakeFiles/fftw3f.dir/kernel/plan.c.o [ 36%] Building C object CMakeFiles/fftw3f.dir/kernel/planner.c.o [ 36%] Building C object CMakeFiles/fftw3f.dir/kernel/primes.c.o [ 36%] Building C object CMakeFiles/fftw3f.dir/kernel/problem.c.o [ 36%] Building C object CMakeFiles/fftw3f.dir/kernel/print.c.o [ 36%] Building C object CMakeFiles/fftw3f.dir/kernel/rader.c.o [ 37%] Building C object CMakeFiles/fftw3f.dir/kernel/scan.c.o [ 37%] Building C object CMakeFiles/fftw3f.dir/kernel/solver.c.o [ 37%] Building C object CMakeFiles/fftw3f.dir/kernel/solvtab.c.o [ 37%] Building C object CMakeFiles/fftw3f.dir/kernel/stride.c.o [ 37%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor.c.o [ 38%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor1.c.o [ 38%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor2.c.o [ 38%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor3.c.o [ 38%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor4.c.o [ 39%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor5.c.o [ 39%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor7.c.o [ 39%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor8.c.o [ 39%] Building C object CMakeFiles/fftw3f.dir/kernel/tensor9.c.o [ 39%] Building C object CMakeFiles/fftw3f.dir/kernel/tile2d.c.o [ 40%] Building C object CMakeFiles/fftw3f.dir/kernel/timer.c.o [ 40%] Building C object CMakeFiles/fftw3f.dir/kernel/transpose.c.o [ 40%] Building C object CMakeFiles/fftw3f.dir/kernel/trig.c.o [ 40%] Building C object CMakeFiles/fftw3f.dir/kernel/twiddle.c.o [ 40%] Building C object CMakeFiles/fftw3f.dir/rdft/buffered.c.o [ 41%] Building C object CMakeFiles/fftw3f.dir/rdft/buffered2.c.o [ 41%] Building C object CMakeFiles/fftw3f.dir/rdft/conf.c.o [ 41%] Building C object CMakeFiles/fftw3f.dir/rdft/ct-hc2c-direct.c.o [ 41%] Building C object CMakeFiles/fftw3f.dir/rdft/ct-hc2c.c.o [ 42%] Building C object CMakeFiles/fftw3f.dir/rdft/dft-r2hc.c.o [ 42%] Building C object CMakeFiles/fftw3f.dir/rdft/dht-r2hc.c.o [ 42%] Building C object CMakeFiles/fftw3f.dir/rdft/dht-rader.c.o [ 42%] Building C object CMakeFiles/fftw3f.dir/rdft/direct-r2c.c.o [ 42%] Building C object CMakeFiles/fftw3f.dir/rdft/direct-r2r.c.o [ 43%] Building C object CMakeFiles/fftw3f.dir/rdft/direct2.c.o [ 43%] Building C object CMakeFiles/fftw3f.dir/rdft/generic.c.o [ 43%] Building C object CMakeFiles/fftw3f.dir/rdft/hc2hc-direct.c.o [ 43%] Building C object CMakeFiles/fftw3f.dir/rdft/hc2hc.c.o [ 43%] Building C object CMakeFiles/fftw3f.dir/rdft/hc2hc-generic.c.o [ 44%] Building C object CMakeFiles/fftw3f.dir/rdft/indirect.c.o [ 44%] Building C object CMakeFiles/fftw3f.dir/rdft/khc2c.c.o [ 44%] Building C object CMakeFiles/fftw3f.dir/rdft/khc2hc.c.o [ 44%] Building C object CMakeFiles/fftw3f.dir/rdft/kr2c.c.o [ 45%] Building C object CMakeFiles/fftw3f.dir/rdft/kr2r.c.o [ 45%] Building C object CMakeFiles/fftw3f.dir/rdft/nop.c.o [ 45%] Building C object CMakeFiles/fftw3f.dir/rdft/nop2.c.o [ 45%] Building C object CMakeFiles/fftw3f.dir/rdft/plan.c.o [ 45%] Building C object CMakeFiles/fftw3f.dir/rdft/plan2.c.o [ 46%] Building C object CMakeFiles/fftw3f.dir/rdft/problem.c.o [ 46%] Building C object CMakeFiles/fftw3f.dir/rdft/problem2.c.o [ 46%] Building C object CMakeFiles/fftw3f.dir/rdft/rank-geq2-rdft2.c.o [ 46%] Building C object CMakeFiles/fftw3f.dir/rdft/rank-geq2.c.o [ 46%] Building C object CMakeFiles/fftw3f.dir/rdft/rank0-rdft2.c.o [ 47%] Building C object CMakeFiles/fftw3f.dir/rdft/rank0.c.o [ 47%] Building C object CMakeFiles/fftw3f.dir/rdft/rdft-dht.c.o [ 47%] Building C object CMakeFiles/fftw3f.dir/rdft/rdft2-inplace-strides.c.o [ 47%] Building C object CMakeFiles/fftw3f.dir/rdft/rdft2-rdft.c.o [ 48%] Building C object CMakeFiles/fftw3f.dir/rdft/rdft2-strides.c.o [ 48%] Building C object CMakeFiles/fftw3f.dir/rdft/rdft2-tensor-max-index.c.o [ 48%] Building C object CMakeFiles/fftw3f.dir/rdft/solve.c.o [ 48%] Building C object CMakeFiles/fftw3f.dir/rdft/solve2.c.o [ 48%] Building C object CMakeFiles/fftw3f.dir/rdft/vrank-geq1-rdft2.c.o [ 49%] Building C object CMakeFiles/fftw3f.dir/rdft/vrank-geq1.c.o [ 49%] Building C object CMakeFiles/fftw3f.dir/rdft/vrank3-transpose.c.o [ 49%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/hc2c.c.o [ 49%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/hfb.c.o [ 49%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2c.c.o [ 50%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2r.c.o [ 50%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/codlist.c.o [ 50%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_16.c.o [ 50%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_20.c.o [ 51%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_25.c.o [ 51%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_32.c.o [ 51%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_4.c.o [ 51%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_5.c.o [ 51%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb2_8.c.o [ 52%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_10.c.o [ 52%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_12.c.o [ 52%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_15.c.o [ 52%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_16.c.o [ 52%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_2.c.o [ 53%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_20.c.o [ 53%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_25.c.o [ 53%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_3.c.o [ 53%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_32.c.o [ 54%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_4.c.o [ 54%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_5.c.o [ 54%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_6.c.o [ 54%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_64.c.o [ 54%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_7.c.o [ 55%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_8.c.o [ 55%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hb_9.c.o [ 55%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb2_16.c.o [ 55%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb2_20.c.o [ 55%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb2_32.c.o [ 56%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb2_4.c.o [ 56%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb2_8.c.o [ 56%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_10.c.o [ 56%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_12.c.o [ 57%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_16.c.o [ 57%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_2.c.o [ 57%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_20.c.o [ 57%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_32.c.o [ 57%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_4.c.o [ 58%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_6.c.o [ 58%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cb_8.c.o [ 58%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft2_16.c.o [ 58%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft2_20.c.o [ 58%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft2_32.c.o [ 59%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft2_4.c.o [ 59%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft2_8.c.o [ 59%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_10.c.o [ 59%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_12.c.o [ 60%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_16.c.o [ 60%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_2.c.o [ 60%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_20.c.o [ 60%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_32.c.o [ 60%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_4.c.o [ 61%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_6.c.o [ 61%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/hc2cbdft_8.c.o [ 61%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_10.c.o [ 61%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_12.c.o [ 61%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_15.c.o [ 62%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_16.c.o [ 62%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_2.c.o [ 62%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_20.c.o [ 62%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_25.c.o [ 63%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_3.c.o [ 63%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_32.c.o [ 63%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_4.c.o [ 63%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_5.c.o [ 63%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_6.c.o [ 64%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_64.c.o [ 64%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_7.c.o [ 64%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_8.c.o [ 64%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cbIII_9.c.o [ 64%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_10.c.o [ 65%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_11.c.o [ 65%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_12.c.o [ 65%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_128.c.o [ 65%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_13.c.o [ 66%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_14.c.o [ 66%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_15.c.o [ 66%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_16.c.o [ 66%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_20.c.o [ 66%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_2.c.o [ 67%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_25.c.o [ 67%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_3.c.o [ 67%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_32.c.o [ 67%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_4.c.o [ 67%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_5.c.o [ 68%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_6.c.o [ 68%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_64.c.o [ 68%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_7.c.o [ 68%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_8.c.o [ 69%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cb/r2cb_9.c.o [ 69%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/codlist.c.o [ 69%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf2_16.c.o [ 69%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf2_20.c.o [ 69%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf2_32.c.o [ 70%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf2_4.c.o [ 70%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf2_8.c.o [ 70%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_12.c.o [ 70%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_10.c.o [ 70%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_16.c.o [ 71%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_2.c.o [ 71%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_20.c.o [ 71%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_32.c.o [ 71%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_4.c.o [ 72%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_6.c.o [ 72%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cf_8.c.o [ 72%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft2_16.c.o [ 72%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft2_20.c.o [ 72%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft2_32.c.o [ 73%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft2_4.c.o [ 73%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft2_8.c.o [ 73%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_10.c.o [ 73%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_12.c.o [ 73%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_16.c.o [ 74%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_2.c.o [ 74%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_20.c.o [ 74%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_32.c.o [ 74%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_4.c.o [ 75%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_6.c.o [ 75%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hc2cfdft_8.c.o [ 75%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_16.c.o [ 75%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_20.c.o [ 75%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_25.c.o [ 76%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_32.c.o [ 76%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_4.c.o [ 76%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_5.c.o [ 76%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf2_8.c.o [ 76%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_10.c.o [ 77%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_12.c.o [ 77%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_15.c.o [ 77%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_16.c.o [ 77%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_2.c.o [ 78%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_25.c.o [ 78%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_20.c.o [ 78%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_3.c.o [ 78%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_32.c.o [ 78%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_4.c.o [ 79%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_5.c.o [ 79%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_6.c.o [ 79%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_64.c.o [ 79%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_7.c.o [ 79%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_8.c.o [ 80%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/hf_9.c.o [ 80%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_10.c.o [ 80%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_12.c.o [ 80%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_15.c.o [ 81%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_16.c.o [ 81%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_2.c.o [ 81%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_20.c.o [ 81%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_25.c.o [ 81%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_3.c.o [ 82%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_32.c.o [ 82%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_4.c.o [ 82%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_5.c.o [ 82%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_6.c.o [ 83%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_64.c.o [ 83%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_7.c.o [ 83%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_8.c.o [ 83%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_10.c.o [ 83%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cfII_9.c.o [ 84%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_11.c.o [ 84%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_12.c.o [ 84%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_128.c.o [ 84%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_13.c.o [ 84%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_14.c.o [ 85%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_15.c.o [ 85%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_16.c.o [ 85%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_2.c.o [ 85%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_20.c.o [ 85%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_25.c.o [ 86%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_3.c.o [ 86%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_32.c.o [ 86%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_4.c.o [ 86%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_5.c.o [ 87%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_6.c.o [ 87%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_64.c.o [ 87%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_7.c.o [ 87%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_8.c.o [ 87%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2cf/r2cf_9.c.o [ 88%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2r/codlist.c.o [ 88%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2r/e01_8.c.o [ 88%] Building C object CMakeFiles/fftw3f.dir/rdft/scalar/r2r/e10_8.c.o [ 88%] Building C object CMakeFiles/fftw3f.dir/reodft/conf.c.o [ 88%] Building C object CMakeFiles/fftw3f.dir/reodft/redft00e-r2hc-pad.c.o [ 89%] Building C object CMakeFiles/fftw3f.dir/reodft/redft00e-r2hc.c.o [ 89%] Building C object CMakeFiles/fftw3f.dir/reodft/reodft00e-splitradix.c.o [ 89%] Building C object CMakeFiles/fftw3f.dir/reodft/reodft010e-r2hc.c.o [ 90%] Building C object CMakeFiles/fftw3f.dir/reodft/reodft11e-r2hc.c.o [ 90%] Building C object CMakeFiles/fftw3f.dir/reodft/reodft11e-r2hc-odd.c.o [ 90%] Building C object CMakeFiles/fftw3f.dir/reodft/reodft11e-radix2.c.o [ 90%] Building C object CMakeFiles/fftw3f.dir/reodft/rodft00e-r2hc-pad.c.o [ 90%] Building C object CMakeFiles/fftw3f.dir/reodft/rodft00e-r2hc.c.o [ 90%] Building C object CMakeFiles/fftw3f.dir/simd-support/altivec.c.o [ 91%] Building C object CMakeFiles/fftw3f.dir/simd-support/avx-128-fma.c.o [ 91%] Building C object CMakeFiles/fftw3f.dir/simd-support/avx.c.o [ 91%] Building C object CMakeFiles/fftw3f.dir/simd-support/avx2.c.o [ 91%] Building C object CMakeFiles/fftw3f.dir/simd-support/avx512.c.o [ 91%] Building C object CMakeFiles/fftw3f.dir/simd-support/kcvi.c.o [ 92%] Building C object CMakeFiles/fftw3f.dir/simd-support/neon.c.o [ 92%] Building C object CMakeFiles/fftw3f.dir/simd-support/sse2.c.o [ 92%] Building C object CMakeFiles/fftw3f.dir/simd-support/taint.c.o [ 92%] Building C object CMakeFiles/fftw3f.dir/simd-support/vsx.c.o [ 93%] Linking C shared library libfftw3f.so [ 93%] Built target fftw3f Scanning dependencies of target bench [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-ccopy-to.c.o [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-ccopy-from.c.o [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-hccopy-from.c.o [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-hccopy-to.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/after-rcopy-from.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/after-rcopy-to.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/allocate.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/aset.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/bench-cost-postprocess.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/bench-main.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/bench-exit.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/can-do.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/caset.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/dotens2.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/info.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/main.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/mflops.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/mp.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/my-getopt.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/ovtpvt.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/pow2.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/problem.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/report.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/speed.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/tensor.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/timer.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/util.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/verify-dft.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify-lib.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify-r2r.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify-rdft2.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify.c.o [100%] Building C object CMakeFiles/bench.dir/libbench2/zero.c.o [100%] Building C object CMakeFiles/bench.dir/tests/bench.c.o [100%] Building C object CMakeFiles/bench.dir/tests/hook.c.o [100%] Building C object CMakeFiles/bench.dir/tests/fftw-bench.c.o [100%] Linking C executable bench [100%] Built target bench Install the project... -- Install configuration: "Debug" -- Installing: /opt/fftw/lib/libfftw3f.so.3 -- Installing: /opt/fftw/lib/libfftw3f.so.3.5.7 -- Installing: /opt/fftw/lib/libfftw3f.so -- Up-to-date: /opt/fftw/lib/libfftw3f.so.3 -- Up-to-date: /opt/fftw/lib/libfftw3f.so.3.5.7 -- Up-to-date: /opt/fftw/lib/libfftw3f.so -- Installing: /opt/fftw/include/fftw3.h -- Installing: /opt/fftw/include/fftw3.f -- Installing: /opt/fftw/include/fftw3l.f03 -- Installing: /opt/fftw/include/fftw3q.f03 -- Installing: /opt/fftw/include/fftw3.f03 -- Installing: /opt/fftw/lib/pkgconfig/fftwf.pc -- Installing: /opt/fftw/lib/cmake/fftw3f/FFTW3fConfig.cmake -- Installing: /opt/fftw/lib/cmake/fftw3f/FFTW3fConfigVersion.cmake -- Installing: /opt/fftw/lib/cmake/fftw3f/FFTW3LibraryDepends.cmake -- Installing: /opt/fftw/lib/cmake/fftw3f/FFTW3LibraryDepends-debug.cmake -- Configuring done -- Generating done -- Build files have been written to: /scratch/fftw/build Scanning dependencies of target fftw3 [ 1%] Building C object CMakeFiles/fftw3.dir/api/apiplan.c.o [ 1%] Building C object CMakeFiles/fftw3.dir/api/configure.c.o [ 1%] Building C object CMakeFiles/fftw3.dir/api/execute-dft-c2r.c.o [ 1%] Building C object CMakeFiles/fftw3.dir/api/execute-dft-r2c.c.o [ 1%] Building C object CMakeFiles/fftw3.dir/api/execute-dft.c.o [ 2%] Building C object CMakeFiles/fftw3.dir/api/execute-r2r.c.o [ 2%] Building C object CMakeFiles/fftw3.dir/api/execute-split-dft-c2r.c.o [ 2%] Building C object CMakeFiles/fftw3.dir/api/execute-split-dft-r2c.c.o [ 2%] Building C object CMakeFiles/fftw3.dir/api/execute-split-dft.c.o [ 3%] Building C object CMakeFiles/fftw3.dir/api/export-wisdom-to-file.c.o [ 3%] Building C object CMakeFiles/fftw3.dir/api/execute.c.o [ 3%] Building C object CMakeFiles/fftw3.dir/api/export-wisdom-to-string.c.o [ 3%] Building C object CMakeFiles/fftw3.dir/api/export-wisdom.c.o [ 3%] Building C object CMakeFiles/fftw3.dir/api/f77api.c.o [ 4%] Building C object CMakeFiles/fftw3.dir/api/flops.c.o [ 4%] Building C object CMakeFiles/fftw3.dir/api/forget-wisdom.c.o [ 4%] Building C object CMakeFiles/fftw3.dir/api/import-system-wisdom.c.o [ 4%] Building C object CMakeFiles/fftw3.dir/api/import-wisdom-from-file.c.o [ 4%] Building C object CMakeFiles/fftw3.dir/api/import-wisdom-from-string.c.o [ 5%] Building C object CMakeFiles/fftw3.dir/api/import-wisdom.c.o [ 5%] Building C object CMakeFiles/fftw3.dir/api/malloc.c.o [ 5%] Building C object CMakeFiles/fftw3.dir/api/map-r2r-kind.c.o [ 5%] Building C object CMakeFiles/fftw3.dir/api/mapflags.c.o [ 6%] Building C object CMakeFiles/fftw3.dir/api/mkprinter-file.c.o [ 6%] Building C object CMakeFiles/fftw3.dir/api/mktensor-iodims.c.o [ 6%] Building C object CMakeFiles/fftw3.dir/api/mkprinter-str.c.o [ 6%] Building C object CMakeFiles/fftw3.dir/api/mktensor-iodims64.c.o [ 6%] Building C object CMakeFiles/fftw3.dir/api/mktensor-rowmajor.c.o [ 7%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-1d.c.o [ 7%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-2d.c.o [ 7%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-3d.c.o [ 7%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-c2r-1d.c.o [ 7%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-c2r-2d.c.o [ 8%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-c2r-3d.c.o [ 8%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-c2r.c.o [ 8%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-r2c-1d.c.o [ 8%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-r2c-2d.c.o [ 9%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-r2c-3d.c.o [ 9%] Building C object CMakeFiles/fftw3.dir/api/plan-dft-r2c.c.o [ 9%] Building C object CMakeFiles/fftw3.dir/api/plan-dft.c.o [ 9%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-dft-c2r.c.o [ 9%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-dft-r2c.c.o [ 10%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-dft.c.o [ 10%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-r2r.c.o [ 10%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-split-dft-r2c.c.o [ 10%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-split-dft-c2r.c.o [ 10%] Building C object CMakeFiles/fftw3.dir/api/plan-guru-split-dft.c.o [ 11%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-dft-c2r.c.o [ 11%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-dft.c.o [ 11%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-dft-r2c.c.o [ 11%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-r2r.c.o [ 12%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-split-dft-r2c.c.o [ 12%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-split-dft-c2r.c.o [ 12%] Building C object CMakeFiles/fftw3.dir/api/plan-many-dft-c2r.c.o [ 12%] Building C object CMakeFiles/fftw3.dir/api/plan-guru64-split-dft.c.o [ 12%] Building C object CMakeFiles/fftw3.dir/api/plan-many-dft-r2c.c.o [ 13%] Building C object CMakeFiles/fftw3.dir/api/plan-many-dft.c.o [ 13%] Building C object CMakeFiles/fftw3.dir/api/plan-many-r2r.c.o [ 13%] Building C object CMakeFiles/fftw3.dir/api/plan-r2r-1d.c.o [ 13%] Building C object CMakeFiles/fftw3.dir/api/plan-r2r-2d.c.o [ 13%] Building C object CMakeFiles/fftw3.dir/api/plan-r2r-3d.c.o [ 14%] Building C object CMakeFiles/fftw3.dir/api/plan-r2r.c.o [ 14%] Building C object CMakeFiles/fftw3.dir/api/print-plan.c.o [ 14%] Building C object CMakeFiles/fftw3.dir/api/rdft2-pad.c.o [ 14%] Building C object CMakeFiles/fftw3.dir/api/the-planner.c.o [ 15%] Building C object CMakeFiles/fftw3.dir/dft/bluestein.c.o [ 15%] Building C object CMakeFiles/fftw3.dir/api/version.c.o [ 15%] Building C object CMakeFiles/fftw3.dir/dft/conf.c.o [ 15%] Building C object CMakeFiles/fftw3.dir/dft/ct.c.o [ 15%] Building C object CMakeFiles/fftw3.dir/dft/buffered.c.o [ 16%] Building C object CMakeFiles/fftw3.dir/dft/dftw-direct.c.o [ 16%] Building C object CMakeFiles/fftw3.dir/dft/dftw-directsq.c.o [ 16%] Building C object CMakeFiles/fftw3.dir/dft/dftw-generic.c.o [ 16%] Building C object CMakeFiles/fftw3.dir/dft/dftw-genericbuf.c.o [ 16%] Building C object CMakeFiles/fftw3.dir/dft/direct.c.o [ 17%] Building C object CMakeFiles/fftw3.dir/dft/generic.c.o [ 17%] Building C object CMakeFiles/fftw3.dir/dft/indirect-transpose.c.o [ 17%] Building C object CMakeFiles/fftw3.dir/dft/indirect.c.o [ 17%] Building C object CMakeFiles/fftw3.dir/dft/kdft-dif.c.o [ 18%] Building C object CMakeFiles/fftw3.dir/dft/kdft-difsq.c.o [ 18%] Building C object CMakeFiles/fftw3.dir/dft/kdft.c.o [ 18%] Building C object CMakeFiles/fftw3.dir/dft/kdft-dit.c.o [ 18%] Building C object CMakeFiles/fftw3.dir/dft/nop.c.o [ 18%] Building C object CMakeFiles/fftw3.dir/dft/plan.c.o [ 19%] Building C object CMakeFiles/fftw3.dir/dft/problem.c.o [ 19%] Building C object CMakeFiles/fftw3.dir/dft/rader.c.o [ 19%] Building C object CMakeFiles/fftw3.dir/dft/rank-geq2.c.o [ 19%] Building C object CMakeFiles/fftw3.dir/dft/solve.c.o [ 19%] Building C object CMakeFiles/fftw3.dir/dft/vrank-geq1.c.o [ 19%] Building C object CMakeFiles/fftw3.dir/dft/scalar/n.c.o [ 20%] Building C object CMakeFiles/fftw3.dir/dft/zero.c.o [ 20%] Building C object CMakeFiles/fftw3.dir/dft/scalar/t.c.o [ 20%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/codlist.c.o [ 21%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_11.c.o [ 21%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_10.c.o [ 21%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_12.c.o [ 21%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_13.c.o [ 22%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_15.c.o [ 22%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_14.c.o [ 22%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_16.c.o [ 22%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_2.c.o [ 22%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_20.c.o [ 22%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_25.c.o [ 23%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_3.c.o [ 23%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_32.c.o [ 23%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_4.c.o [ 23%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_5.c.o [ 24%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_6.c.o [ 24%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_64.c.o [ 24%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_7.c.o [ 24%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_8.c.o [ 24%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/n1_9.c.o [ 25%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/q1_2.c.o [ 25%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/q1_3.c.o [ 25%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/q1_4.c.o [ 25%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/q1_5.c.o [ 26%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/q1_6.c.o [ 26%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/q1_8.c.o [ 26%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_10.c.o [ 26%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_12.c.o [ 26%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_15.c.o [ 27%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_16.c.o [ 27%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_2.c.o [ 27%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_20.c.o [ 27%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_25.c.o [ 27%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_3.c.o [ 28%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_32.c.o [ 28%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_4.c.o [ 28%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_5.c.o [ 28%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_6.c.o [ 28%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_64.c.o [ 29%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_7.c.o [ 29%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_8.c.o [ 29%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t1_9.c.o [ 29%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_10.c.o [ 30%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_16.c.o [ 30%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_20.c.o [ 30%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_25.c.o [ 30%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_32.c.o [ 30%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_4.c.o [ 31%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_5.c.o [ 31%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_64.c.o [ 31%] Building C object CMakeFiles/fftw3.dir/dft/scalar/codelets/t2_8.c.o [ 31%] Building C object CMakeFiles/fftw3.dir/kernel/align.c.o [ 31%] Building C object CMakeFiles/fftw3.dir/kernel/alloc.c.o [ 32%] Building C object CMakeFiles/fftw3.dir/kernel/assert.c.o [ 32%] Building C object CMakeFiles/fftw3.dir/kernel/awake.c.o [ 32%] Building C object CMakeFiles/fftw3.dir/kernel/buffered.c.o [ 32%] Building C object CMakeFiles/fftw3.dir/kernel/cpy1d.c.o [ 33%] Building C object CMakeFiles/fftw3.dir/kernel/cpy2d-pair.c.o [ 33%] Building C object CMakeFiles/fftw3.dir/kernel/cpy2d.c.o [ 33%] Building C object CMakeFiles/fftw3.dir/kernel/ct.c.o [ 33%] Building C object CMakeFiles/fftw3.dir/kernel/debug.c.o [ 33%] Building C object CMakeFiles/fftw3.dir/kernel/extract-reim.c.o [ 34%] Building C object CMakeFiles/fftw3.dir/kernel/hash.c.o [ 34%] Building C object CMakeFiles/fftw3.dir/kernel/iabs.c.o [ 34%] Building C object CMakeFiles/fftw3.dir/kernel/kalloc.c.o [ 34%] Building C object CMakeFiles/fftw3.dir/kernel/md5-1.c.o [ 34%] Building C object CMakeFiles/fftw3.dir/kernel/md5.c.o [ 35%] Building C object CMakeFiles/fftw3.dir/kernel/minmax.c.o [ 35%] Building C object CMakeFiles/fftw3.dir/kernel/ops.c.o [ 35%] Building C object CMakeFiles/fftw3.dir/kernel/pickdim.c.o [ 35%] Building C object CMakeFiles/fftw3.dir/kernel/plan.c.o [ 36%] Building C object CMakeFiles/fftw3.dir/kernel/planner.c.o [ 36%] Building C object CMakeFiles/fftw3.dir/kernel/primes.c.o [ 36%] Building C object CMakeFiles/fftw3.dir/kernel/print.c.o [ 36%] Building C object CMakeFiles/fftw3.dir/kernel/problem.c.o [ 36%] Building C object CMakeFiles/fftw3.dir/kernel/rader.c.o [ 37%] Building C object CMakeFiles/fftw3.dir/kernel/scan.c.o [ 37%] Building C object CMakeFiles/fftw3.dir/kernel/solver.c.o [ 37%] Building C object CMakeFiles/fftw3.dir/kernel/solvtab.c.o [ 37%] Building C object CMakeFiles/fftw3.dir/kernel/stride.c.o [ 37%] Building C object CMakeFiles/fftw3.dir/kernel/tensor.c.o [ 38%] Building C object CMakeFiles/fftw3.dir/kernel/tensor1.c.o [ 38%] Building C object CMakeFiles/fftw3.dir/kernel/tensor2.c.o [ 38%] Building C object CMakeFiles/fftw3.dir/kernel/tensor3.c.o [ 38%] Building C object CMakeFiles/fftw3.dir/kernel/tensor4.c.o [ 39%] Building C object CMakeFiles/fftw3.dir/kernel/tensor5.c.o [ 39%] Building C object CMakeFiles/fftw3.dir/kernel/tensor7.c.o [ 39%] Building C object CMakeFiles/fftw3.dir/kernel/tensor8.c.o [ 39%] Building C object CMakeFiles/fftw3.dir/kernel/tensor9.c.o [ 39%] Building C object CMakeFiles/fftw3.dir/kernel/tile2d.c.o [ 40%] Building C object CMakeFiles/fftw3.dir/kernel/transpose.c.o [ 40%] Building C object CMakeFiles/fftw3.dir/kernel/timer.c.o [ 40%] Building C object CMakeFiles/fftw3.dir/kernel/trig.c.o [ 40%] Building C object CMakeFiles/fftw3.dir/kernel/twiddle.c.o [ 40%] Building C object CMakeFiles/fftw3.dir/rdft/buffered.c.o [ 41%] Building C object CMakeFiles/fftw3.dir/rdft/buffered2.c.o [ 41%] Building C object CMakeFiles/fftw3.dir/rdft/conf.c.o [ 41%] Building C object CMakeFiles/fftw3.dir/rdft/ct-hc2c-direct.c.o [ 41%] Building C object CMakeFiles/fftw3.dir/rdft/ct-hc2c.c.o [ 42%] Building C object CMakeFiles/fftw3.dir/rdft/dft-r2hc.c.o [ 42%] Building C object CMakeFiles/fftw3.dir/rdft/dht-r2hc.c.o [ 42%] Building C object CMakeFiles/fftw3.dir/rdft/dht-rader.c.o [ 42%] Building C object CMakeFiles/fftw3.dir/rdft/direct-r2c.c.o [ 42%] Building C object CMakeFiles/fftw3.dir/rdft/direct-r2r.c.o [ 43%] Building C object CMakeFiles/fftw3.dir/rdft/direct2.c.o [ 43%] Building C object CMakeFiles/fftw3.dir/rdft/generic.c.o [ 43%] Building C object CMakeFiles/fftw3.dir/rdft/hc2hc-direct.c.o [ 43%] Building C object CMakeFiles/fftw3.dir/rdft/hc2hc-generic.c.o [ 43%] Building C object CMakeFiles/fftw3.dir/rdft/hc2hc.c.o [ 44%] Building C object CMakeFiles/fftw3.dir/rdft/indirect.c.o [ 44%] Building C object CMakeFiles/fftw3.dir/rdft/khc2c.c.o [ 44%] Building C object CMakeFiles/fftw3.dir/rdft/khc2hc.c.o [ 44%] Building C object CMakeFiles/fftw3.dir/rdft/kr2c.c.o [ 45%] Building C object CMakeFiles/fftw3.dir/rdft/kr2r.c.o [ 45%] Building C object CMakeFiles/fftw3.dir/rdft/nop.c.o [ 45%] Building C object CMakeFiles/fftw3.dir/rdft/nop2.c.o [ 45%] Building C object CMakeFiles/fftw3.dir/rdft/plan.c.o [ 45%] Building C object CMakeFiles/fftw3.dir/rdft/plan2.c.o [ 46%] Building C object CMakeFiles/fftw3.dir/rdft/problem.c.o [ 46%] Building C object CMakeFiles/fftw3.dir/rdft/problem2.c.o [ 46%] Building C object CMakeFiles/fftw3.dir/rdft/rank-geq2-rdft2.c.o [ 46%] Building C object CMakeFiles/fftw3.dir/rdft/rank-geq2.c.o [ 46%] Building C object CMakeFiles/fftw3.dir/rdft/rank0-rdft2.c.o [ 47%] Building C object CMakeFiles/fftw3.dir/rdft/rank0.c.o [ 47%] Building C object CMakeFiles/fftw3.dir/rdft/rdft-dht.c.o [ 47%] Building C object CMakeFiles/fftw3.dir/rdft/rdft2-inplace-strides.c.o [ 47%] Building C object CMakeFiles/fftw3.dir/rdft/rdft2-rdft.c.o [ 48%] Building C object CMakeFiles/fftw3.dir/rdft/rdft2-strides.c.o [ 48%] Building C object CMakeFiles/fftw3.dir/rdft/rdft2-tensor-max-index.c.o [ 48%] Building C object CMakeFiles/fftw3.dir/rdft/solve.c.o [ 48%] Building C object CMakeFiles/fftw3.dir/rdft/solve2.c.o [ 48%] Building C object CMakeFiles/fftw3.dir/rdft/vrank-geq1-rdft2.c.o [ 49%] Building C object CMakeFiles/fftw3.dir/rdft/vrank-geq1.c.o [ 49%] Building C object CMakeFiles/fftw3.dir/rdft/vrank3-transpose.c.o [ 49%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/hc2c.c.o [ 49%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/hfb.c.o [ 49%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2c.c.o [ 50%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2r.c.o [ 50%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/codlist.c.o [ 50%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_16.c.o [ 50%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_20.c.o [ 51%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_25.c.o [ 51%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_32.c.o [ 51%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_4.c.o [ 51%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_5.c.o [ 51%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb2_8.c.o [ 52%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_10.c.o [ 52%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_12.c.o [ 52%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_15.c.o [ 52%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_16.c.o [ 52%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_2.c.o [ 53%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_20.c.o [ 53%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_25.c.o [ 53%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_3.c.o [ 53%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_32.c.o [ 54%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_4.c.o [ 54%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_5.c.o [ 54%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_6.c.o [ 54%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_64.c.o [ 54%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_7.c.o [ 55%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_8.c.o [ 55%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hb_9.c.o [ 55%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb2_16.c.o [ 55%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb2_20.c.o [ 55%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb2_32.c.o [ 56%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb2_4.c.o [ 56%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb2_8.c.o [ 56%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_10.c.o [ 56%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_12.c.o [ 57%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_16.c.o [ 57%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_2.c.o [ 57%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_20.c.o [ 57%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_32.c.o [ 57%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_4.c.o [ 58%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_6.c.o [ 58%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cb_8.c.o [ 58%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft2_16.c.o [ 58%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft2_20.c.o [ 58%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft2_32.c.o [ 59%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft2_4.c.o [ 59%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft2_8.c.o [ 59%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_10.c.o [ 59%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_12.c.o [ 60%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_16.c.o [ 60%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_2.c.o [ 60%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_20.c.o [ 60%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_32.c.o [ 60%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_4.c.o [ 61%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_6.c.o [ 61%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/hc2cbdft_8.c.o [ 61%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_10.c.o [ 61%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_12.c.o [ 61%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_15.c.o [ 62%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_16.c.o [ 62%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_2.c.o [ 62%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_20.c.o [ 62%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_25.c.o [ 63%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_3.c.o [ 63%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_32.c.o [ 63%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_4.c.o [ 63%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_5.c.o [ 64%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_6.c.o [ 64%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_64.c.o [ 64%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_7.c.o [ 64%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_8.c.o [ 64%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cbIII_9.c.o [ 64%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_10.c.o [ 65%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_11.c.o [ 65%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_12.c.o [ 65%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_128.c.o [ 65%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_13.c.o [ 66%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_14.c.o [ 66%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_15.c.o [ 66%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_16.c.o [ 66%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_2.c.o [ 66%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_20.c.o [ 67%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_25.c.o [ 67%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_3.c.o [ 67%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_32.c.o [ 67%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_4.c.o [ 67%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_5.c.o [ 68%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_6.c.o [ 68%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_64.c.o [ 68%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_7.c.o [ 68%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_8.c.o [ 69%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cb/r2cb_9.c.o [ 69%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/codlist.c.o [ 69%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf2_16.c.o [ 69%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf2_20.c.o [ 69%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf2_32.c.o [ 70%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf2_4.c.o [ 70%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf2_8.c.o [ 70%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_10.c.o [ 70%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_12.c.o [ 70%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_16.c.o [ 71%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_2.c.o [ 71%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_20.c.o [ 71%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_32.c.o [ 71%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_4.c.o [ 72%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_6.c.o [ 72%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cf_8.c.o [ 72%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft2_16.c.o [ 72%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft2_20.c.o [ 72%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft2_32.c.o [ 73%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft2_4.c.o [ 73%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft2_8.c.o [ 73%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_10.c.o [ 73%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_12.c.o [ 73%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_16.c.o [ 74%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_2.c.o [ 74%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_20.c.o [ 74%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_32.c.o [ 74%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_4.c.o [ 75%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_6.c.o [ 75%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hc2cfdft_8.c.o [ 75%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_16.c.o [ 75%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_20.c.o [ 75%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_25.c.o [ 76%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_32.c.o [ 76%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_4.c.o [ 76%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_5.c.o [ 76%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf2_8.c.o [ 76%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_10.c.o [ 77%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_12.c.o [ 77%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_15.c.o [ 77%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_16.c.o [ 77%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_2.c.o [ 78%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_20.c.o [ 78%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_25.c.o [ 78%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_3.c.o [ 78%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_32.c.o [ 78%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_4.c.o [ 79%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_5.c.o [ 79%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_6.c.o [ 79%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_64.c.o [ 79%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_7.c.o [ 79%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_8.c.o [ 80%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/hf_9.c.o [ 80%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_10.c.o [ 80%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_12.c.o [ 80%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_15.c.o [ 81%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_16.c.o [ 81%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_2.c.o [ 81%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_20.c.o [ 81%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_25.c.o [ 81%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_3.c.o [ 82%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_32.c.o [ 82%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_4.c.o [ 82%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_5.c.o [ 82%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_6.c.o [ 82%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_64.c.o [ 83%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_7.c.o [ 83%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_8.c.o [ 83%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cfII_9.c.o [ 83%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_10.c.o [ 84%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_11.c.o [ 84%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_12.c.o [ 84%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_128.c.o [ 84%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_13.c.o [ 84%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_14.c.o [ 85%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_15.c.o [ 85%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_16.c.o [ 85%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_2.c.o [ 85%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_20.c.o [ 85%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_25.c.o [ 86%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_3.c.o [ 86%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_32.c.o [ 86%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_4.c.o [ 86%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_5.c.o [ 87%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_6.c.o [ 87%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_64.c.o [ 87%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_7.c.o [ 87%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_8.c.o [ 87%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2cf/r2cf_9.c.o [ 88%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2r/codlist.c.o [ 88%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2r/e01_8.c.o [ 88%] Building C object CMakeFiles/fftw3.dir/rdft/scalar/r2r/e10_8.c.o [ 88%] Building C object CMakeFiles/fftw3.dir/reodft/conf.c.o [ 88%] Building C object CMakeFiles/fftw3.dir/reodft/redft00e-r2hc-pad.c.o [ 89%] Building C object CMakeFiles/fftw3.dir/reodft/reodft00e-splitradix.c.o [ 89%] Building C object CMakeFiles/fftw3.dir/reodft/redft00e-r2hc.c.o [ 89%] Building C object CMakeFiles/fftw3.dir/reodft/reodft010e-r2hc.c.o [ 89%] Building C object CMakeFiles/fftw3.dir/reodft/reodft11e-r2hc-odd.c.o [ 90%] Building C object CMakeFiles/fftw3.dir/reodft/reodft11e-r2hc.c.o [ 90%] Building C object CMakeFiles/fftw3.dir/reodft/reodft11e-radix2.c.o [ 90%] Building C object CMakeFiles/fftw3.dir/reodft/rodft00e-r2hc-pad.c.o [ 90%] Building C object CMakeFiles/fftw3.dir/reodft/rodft00e-r2hc.c.o [ 90%] Building C object CMakeFiles/fftw3.dir/simd-support/altivec.c.o [ 91%] Building C object CMakeFiles/fftw3.dir/simd-support/avx-128-fma.c.o [ 91%] Building C object CMakeFiles/fftw3.dir/simd-support/avx.c.o [ 91%] Building C object CMakeFiles/fftw3.dir/simd-support/avx2.c.o [ 91%] Building C object CMakeFiles/fftw3.dir/simd-support/avx512.c.o [ 91%] Building C object CMakeFiles/fftw3.dir/simd-support/kcvi.c.o [ 92%] Building C object CMakeFiles/fftw3.dir/simd-support/neon.c.o [ 92%] Building C object CMakeFiles/fftw3.dir/simd-support/sse2.c.o [ 92%] Building C object CMakeFiles/fftw3.dir/simd-support/vsx.c.o [ 92%] Building C object CMakeFiles/fftw3.dir/simd-support/taint.c.o [ 93%] Linking C shared library libfftw3.so [ 93%] Built target fftw3 Scanning dependencies of target bench [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-ccopy-to.c.o [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-ccopy-from.c.o [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-hccopy-from.c.o [ 93%] Building C object CMakeFiles/bench.dir/libbench2/after-hccopy-to.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/after-rcopy-from.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/allocate.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/after-rcopy-to.c.o [ 94%] Building C object CMakeFiles/bench.dir/libbench2/aset.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/bench-cost-postprocess.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/bench-exit.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/bench-main.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/can-do.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/caset.c.o [ 95%] Building C object CMakeFiles/bench.dir/libbench2/dotens2.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/info.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/main.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/mflops.c.o [ 96%] Building C object CMakeFiles/bench.dir/libbench2/mp.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/my-getopt.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/ovtpvt.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/pow2.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/problem.c.o [ 97%] Building C object CMakeFiles/bench.dir/libbench2/report.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/speed.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/tensor.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/timer.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/util.c.o [ 98%] Building C object CMakeFiles/bench.dir/libbench2/verify-dft.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify-r2r.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify-lib.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify-rdft2.c.o [ 99%] Building C object CMakeFiles/bench.dir/libbench2/verify.c.o [100%] Building C object CMakeFiles/bench.dir/libbench2/zero.c.o [100%] Building C object CMakeFiles/bench.dir/tests/bench.c.o [100%] Building C object CMakeFiles/bench.dir/tests/hook.c.o [100%] Building C object CMakeFiles/bench.dir/tests/fftw-bench.c.o [100%] Linking C executable bench [100%] Built target bench Install the project... -- Install configuration: "Debug" -- Installing: /opt/fftw/lib/libfftw3.so.3 -- Installing: /opt/fftw/lib/libfftw3.so.3.5.7 -- Installing: /opt/fftw/lib/libfftw3.so -- Up-to-date: /opt/fftw/lib/libfftw3.so.3 -- Up-to-date: /opt/fftw/lib/libfftw3.so.3.5.7 -- Up-to-date: /opt/fftw/lib/libfftw3.so -- Up-to-date: /opt/fftw/include/fftw3.h -- Up-to-date: /opt/fftw/include/fftw3.f -- Up-to-date: /opt/fftw/include/fftw3l.f03 -- Up-to-date: /opt/fftw/include/fftw3q.f03 -- Installing: /opt/fftw/include/fftw3.f03 -- Installing: /opt/fftw/lib/pkgconfig/fftw.pc -- Installing: /opt/fftw/lib/cmake/fftw3/FFTW3Config.cmake -- Installing: /opt/fftw/lib/cmake/fftw3/FFTW3ConfigVersion.cmake -- Installing: /opt/fftw/lib/cmake/fftw3/FFTW3LibraryDepends.cmake -- Installing: /opt/fftw/lib/cmake/fftw3/FFTW3LibraryDepends-debug.cmake ---> Removed intermediate container 3ae599be9ddb ---> f1567c4f7e5e Step 21/25 : ARG HEFFTE_VERSION=2.3.0 ---> Running in 075e7d40d47a ---> Removed intermediate container 075e7d40d47a ---> 6cd806d7398a Step 22/25 : ENV HEFFTE_DIR=/opt/heffte ---> Running in b1d8c9825f20 ---> Removed intermediate container b1d8c9825f20 ---> 67e486819ad2 Step 23/25 : RUN HEFFTE_URL=https://github.com/icl-utk-edu/heffte/archive/v${HEFFTE_VERSION}.tar.gz && HEFFTE_ARCHIVE=heffte.tar.gz && SCRATCH_DIR=/scratch && mkdir -p ${SCRATCH_DIR} && cd ${SCRATCH_DIR} && wget --quiet ${HEFFTE_URL} --output-document=${HEFFTE_ARCHIVE} && mkdir -p heffte && tar -xf ${HEFFTE_ARCHIVE} -C heffte --strip-components=1 && cd heffte && mkdir -p build && cd build && cmake -D CMAKE_INSTALL_PREFIX=${HEFFTE_DIR} -D CMAKE_PREFIX_PATH=${FFTW_DIR} -D CMAKE_BUILD_TYPE=Debug -D Heffte_ENABLE_CUDA=ON -D Heffte_ENABLE_FFTW=ON .. && make -j${NPROCS} install && rm -rf ${SCRATCH_DIR} ---> Running in c9130ddfcf04 -- The CXX compiler identification is GNU 9.4.0 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Could NOT find Git (missing: GIT_EXECUTABLE) -- Found MPI_CXX: /opt/openmpi/lib/libmpi.so (found version "3.1") -- Found MPI: TRUE (found version "3.1") -- Looking for C++ include pthread.h -- Looking for C++ include pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found CUDA: /usr/local/cuda (found version "11.0") -- Found OpenMP_CXX: -fopenmp (found version "4.5") -- Found OpenMP: TRUE (found version "4.5") -- Found HeffteFFTW: /opt/fftw/include -- -- heFFTe 2.3.0 -- -D CMAKE_INSTALL_PREFIX=/opt/heffte -- -D BUILD_SHARED_LIBS=ON -- -D CMAKE_BUILD_TYPE=Debug -- -D CMAKE_CXX_FLAGS_DEBUG=-g -- -D CMAKE_CXX_FLAGS= -- -D MPI_CXX_COMPILER=/opt/openmpi/bin/mpicxx -- -D MPI_CXX_COMPILE_OPTIONS=-pthread -- -D CUDA_NVCC_FLAGS=-std=c++11 -- -D CUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -- -D Heffte_ENABLE_FFTW=ON -- -D Heffte_ENABLE_MKL=OFF -- -D Heffte_ENABLE_CUDA=ON -- -D Heffte_ENABLE_ROCM=OFF -- -D Heffte_ENABLE_ONEAPI=OFF -- -D Heffte_ENABLE_AVX=OFF -- -D Heffte_ENABLE_AVX512=OFF -- -D Heffte_ENABLE_PYTHON=OFF -- -D Heffte_ENABLE_FORTRAN=OFF -- -D Heffte_ENABLE_TRACING=OFF -- -- Setting Heffte INSTALL_RPATH = /usr/local/cuda/lib64;/usr/lib/x86_64-linux-gnu;/opt/openmpi/lib;/opt/fftw/lib;/usr/lib/gcc/x86_64-linux-gnu/9 -- Configuring done -- Generating done -- Build files have been written to: /scratch/heffte/build [ 1%] Building NVCC (Device) object CMakeFiles/Heffte.dir/src/Heffte_generated_heffte_backend_cuda.cu.o Scanning dependencies of target Heffte [ 6%] Building CXX object CMakeFiles/Heffte.dir/src/heffte_c.cpp.o [ 8%] Building CXX object CMakeFiles/Heffte.dir/src/heffte_magma_helpers.cpp.o [ 8%] Building CXX object CMakeFiles/Heffte.dir/src/heffte_reshape3d.cpp.o [ 8%] Building CXX object CMakeFiles/Heffte.dir/src/heffte_plan_logic.cpp.o [ 10%] Building CXX object CMakeFiles/Heffte.dir/src/heffte_compute_transform.cpp.o [ 11%] Linking CXX shared library libheffte.so [ 11%] Built target Heffte Scanning dependencies of target convolution Scanning dependencies of target speed3d_c2c Scanning dependencies of target speed3d_r2r Scanning dependencies of target speed3d_r2c [ 16%] Building CXX object benchmarks/CMakeFiles/convolution.dir/convolution.cpp.o [ 16%] Building CXX object benchmarks/CMakeFiles/speed3d_r2r.dir/speed3d_r2r.cpp.o [ 18%] Building CXX object benchmarks/CMakeFiles/speed3d_r2c.dir/speed3d_r2c.cpp.o [ 18%] Building CXX object benchmarks/CMakeFiles/speed3d_c2c.dir/speed3d_c2c.cpp.o [ 20%] Linking CXX executable convolution [ 20%] Built target convolution Scanning dependencies of target heffte_example_r2c [ 22%] Building CXX object examples/CMakeFiles/heffte_example_r2c.dir/heffte_example_r2c.cpp.o [ 23%] Linking CXX executable speed3d_c2c [ 23%] Built target speed3d_c2c Scanning dependencies of target heffte_example_options [ 25%] Building CXX object examples/CMakeFiles/heffte_example_options.dir/heffte_example_options.cpp.o [ 27%] Linking CXX executable speed3d_r2c [ 27%] Built target speed3d_r2c Scanning dependencies of target heffte_example_vectors [ 28%] Building CXX object examples/CMakeFiles/heffte_example_vectors.dir/heffte_example_vectors.cpp.o [ 30%] Linking CXX executable speed3d_r2r [ 30%] Built target speed3d_r2r Scanning dependencies of target heffte_example_gpu [ 32%] Building CXX object examples/CMakeFiles/heffte_example_gpu.dir/heffte_example_gpu.cpp.o [ 33%] Linking CXX executable heffte_example_r2c [ 33%] Built target heffte_example_r2c Scanning dependencies of target heffte_example_r2r [ 35%] Building CXX object examples/CMakeFiles/heffte_example_r2r.dir/heffte_example_r2r.cpp.o [ 37%] Linking CXX executable heffte_example_options [ 37%] Built target heffte_example_options Scanning dependencies of target heffte_example_fftw [ 38%] Building CXX object examples/CMakeFiles/heffte_example_fftw.dir/heffte_example_fftw.cpp.o [ 40%] Linking CXX executable heffte_example_vectors [ 42%] Linking CXX executable heffte_example_gpu [ 42%] Built target heffte_example_vectors Scanning dependencies of target test_fft3d_np6 [ 42%] Built target heffte_example_gpu [ 44%] Building CXX object test/CMakeFiles/test_fft3d_np6.dir/test_fft3d_np6.cpp.o Scanning dependencies of target test_fft3d_np2 [ 45%] Building CXX object test/CMakeFiles/test_fft3d_np2.dir/test_fft3d_np2.cpp.o [ 47%] Linking CXX executable heffte_example_r2r [ 47%] Built target heffte_example_r2r Scanning dependencies of target test_unit_nompi [ 49%] Building CXX object test/CMakeFiles/test_unit_nompi.dir/test_units_nompi.cpp.o [ 50%] Linking CXX executable heffte_example_fftw [ 50%] Built target heffte_example_fftw Scanning dependencies of target test_fft3d_np4 [ 52%] Building CXX object test/CMakeFiles/test_fft3d_np4.dir/test_fft3d_np4.cpp.o [ 54%] Linking CXX executable test_fft3d_np6 [ 54%] Built target test_fft3d_np6 [ 55%] Linking CXX executable test_fft3d_np2 Scanning dependencies of target test_heffte_header [ 57%] Building CXX object test/CMakeFiles/test_heffte_header.dir/test_heffte_header.cpp.o [ 57%] Built target test_fft3d_np2 Scanning dependencies of target test_fft3d_np8 [ 59%] Building CXX object test/CMakeFiles/test_fft3d_np8.dir/test_fft3d_np8.cpp.o [ 61%] Linking CXX executable test_fft3d_np4 [ 61%] Built target test_fft3d_np4 Scanning dependencies of target test_fft3d_np1 [ 62%] Building CXX object test/CMakeFiles/test_fft3d_np1.dir/test_fft3d_np1.cpp.o [ 64%] Linking CXX executable test_heffte_header [ 64%] Built target test_heffte_header Scanning dependencies of target test_unit_stock [ 66%] Building CXX object test/CMakeFiles/test_unit_stock.dir/test_units_stock.cpp.o [ 67%] Linking CXX executable test_unit_nompi [ 67%] Built target test_unit_nompi Scanning dependencies of target test_fft3d_np12 [ 69%] Building CXX object test/CMakeFiles/test_fft3d_np12.dir/test_fft3d_np12.cpp.o [ 71%] Linking CXX executable test_fft3d_np8 [ 71%] Built target test_fft3d_np8 Scanning dependencies of target sandbox [ 72%] Building CXX object test/CMakeFiles/sandbox.dir/sandbox.cpp.o [ 74%] Linking CXX executable test_unit_stock [ 76%] Linking CXX executable test_fft3d_np1 [ 76%] Built target test_unit_stock Scanning dependencies of target test_streams [ 77%] Building CXX object test/CMakeFiles/test_streams.dir/test_streams.cpp.o [ 77%] Built target test_fft3d_np1 Scanning dependencies of target test_reshape3d [ 79%] Building CXX object test/CMakeFiles/test_reshape3d.dir/test_reshape3d.cpp.o [ 81%] Linking CXX executable test_fft3d_np12 [ 83%] Linking CXX executable sandbox [ 83%] Built target sandbox Scanning dependencies of target test_subcomm [ 84%] Building CXX object test/CMakeFiles/test_subcomm.dir/test_subcomm.cpp.o [ 84%] Built target test_fft3d_np12 Scanning dependencies of target test_fft3d_r2c [ 86%] Building CXX object test/CMakeFiles/test_fft3d_r2c.dir/test_fft3d_r2c.cpp.o [ 88%] Linking CXX executable test_streams [ 88%] Built target test_streams Scanning dependencies of target test_cos_transform [ 89%] Building CXX object test/CMakeFiles/test_cos_transform.dir/test_cos.cpp.o [ 91%] Linking CXX executable test_subcomm [ 93%] Linking CXX executable test_fft3d_r2c [ 93%] Built target test_subcomm Scanning dependencies of target test_longlong [ 94%] Building CXX object test/CMakeFiles/test_longlong.dir/test_longlong.cpp.o [ 94%] Built target test_fft3d_r2c [ 96%] Linking CXX executable test_reshape3d [ 96%] Built target test_reshape3d [ 98%] Linking CXX executable test_cos_transform [ 98%] Built target test_cos_transform [100%] Linking CXX executable test_longlong [100%] Built target test_longlong Install the project... -- Install configuration: "Debug" -- Installing: /opt/heffte/lib/libheffte.so.2.3.0 -- Installing: /opt/heffte/lib/libheffte.so.2 -- Set runtime path of "/opt/heffte/lib/libheffte.so.2.3.0" to "/usr/local/cuda/lib64:/usr/lib/x86_64-linux-gnu:/opt/openmpi/lib:/opt/fftw/lib:/usr/lib/gcc/x86_64-linux-gnu/9" -- Installing: /opt/heffte/lib/libheffte.so -- Installing: /opt/heffte/lib/cmake/Heffte/HeffteTargets.cmake -- Installing: /opt/heffte/lib/cmake/Heffte/HeffteTargets-debug.cmake -- Installing: /opt/heffte/lib/cmake/Heffte/HeffteConfig.cmake -- Installing: /opt/heffte/lib/cmake/Heffte/HeffteConfigVersion.cmake -- Installing: /opt/heffte/include -- Installing: /opt/heffte/include/heffte_backend_cuda.h -- Installing: /opt/heffte/include/heffte_compute_transform.h -- Installing: /opt/heffte/include/heffte_magma_helpers.h -- Installing: /opt/heffte/include/heffte_c_defines.h -- Installing: /opt/heffte/include/heffte_backend_mkl.h -- Installing: /opt/heffte/include/heffte_backend_rocm.h -- Installing: /opt/heffte/include/heffte_backend_fftw.h -- Installing: /opt/heffte/include/heffte_fft3d.h -- Installing: /opt/heffte/include/heffte_geometry.h -- Installing: /opt/heffte/include/heffte_backend_stock.h -- Installing: /opt/heffte/include/heffte_backends.h -- Installing: /opt/heffte/include/heffte_backend_oneapi.h -- Installing: /opt/heffte/include/heffte_r2r_executor.h -- Installing: /opt/heffte/include/heffte_pack3d.h -- Installing: /opt/heffte/include/heffte_trace.h -- Installing: /opt/heffte/include/heffte_plan_logic.h -- Installing: /opt/heffte/include/heffte_fft3d_r2c.h -- Installing: /opt/heffte/include/heffte_backend_data_transfer.h -- Installing: /opt/heffte/include/heffte_common.h -- Installing: /opt/heffte/include/heffte_backend_vector.h -- Installing: /opt/heffte/include/heffte_utils.h -- Installing: /opt/heffte/include/heffte_c.h -- Installing: /opt/heffte/include/heffte_reshape3d.h -- Installing: /opt/heffte/include/heffte_config.cmake.h -- Installing: /opt/heffte/include/heffte.h -- Installing: /opt/heffte/include/stock_fft -- Installing: /opt/heffte/include/stock_fft/heffte_stock_allocator.h -- Installing: /opt/heffte/include/stock_fft/heffte_stock_complex.h -- Installing: /opt/heffte/include/stock_fft/heffte_stock_algos.h -- Installing: /opt/heffte/include/stock_fft/heffte_stock_vec_types.h -- Installing: /opt/heffte/include/stock_fft/heffte_stock_tree.h -- Installing: /opt/heffte/include/heffte_config.h -- Installing: /opt/heffte/share/heffte/testing/CMakeLists.txt -- Installing: /opt/heffte/share/heffte/examples/CMakeLists.txt -- Up-to-date: /opt/heffte/share/heffte/examples -- Installing: /opt/heffte/share/heffte/examples/heffte_example_gpu.cpp -- Installing: /opt/heffte/share/heffte/examples/heffte_example_vectors.cpp -- Installing: /opt/heffte/share/heffte/examples/heffte_example_fftw.f90 -- Installing: /opt/heffte/share/heffte/examples/heffte_example_fftw.cpp -- Installing: /opt/heffte/share/heffte/examples/heffte_example_r2r.cpp -- Installing: /opt/heffte/share/heffte/examples/heffte_example_sycl.cpp -- Installing: /opt/heffte/share/heffte/examples/heffte_example_c.c -- Installing: /opt/heffte/share/heffte/examples/heffte_example_options.cpp -- Installing: /opt/heffte/share/heffte/examples/heffte_example_r2c.cpp ---> Removed intermediate container c9130ddfcf04 ---> 0065c79bd7a1 Step 24/25 : ENV HYPRE_DIR=/opt/hypre ---> Running in f49314308de7 ---> Removed intermediate container f49314308de7 ---> 2f243a4abf93 Step 25/25 : RUN HYPRE_VERSION=v2.22.1 && HYPRE_URL=https://github.com/hypre-space/hypre/archive/${HYPRE_VERSION}.tar.gz && HYPRE_ARCHIVE=hypre.tar.gz && wget --quiet ${HYPRE_URL} --output-document=${HYPRE_ARCHIVE} && mkdir hypre && tar -xf ${HYPRE_ARCHIVE} -C hypre --strip-components=1 && cd hypre && mkdir -p build && cd build && cmake -D CMAKE_INSTALL_PREFIX=${HYPRE_DIR} -D CMAKE_BUILD_TYPE=Debug -D HYPRE_WITH_CUDA=ON -D HYPRE_WITH_MPI=ON ../src && make -j${NPROCS} install && cd ../.. && rm -r hypre ---> Running in b62ca181e83b -- The C compiler identification is GNU 9.4.0 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- The CXX compiler identification is GNU 9.4.0 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Enabled support for CXX. -- Using CXX standard: c++11 -- Looking for a CUDA compiler -- Looking for a CUDA compiler - /usr/local/cuda/bin/nvcc -- The CUDA compiler identification is NVIDIA 11.0.221 -- Check for working CUDA compiler: /usr/local/cuda/bin/nvcc -- Check for working CUDA compiler: /usr/local/cuda/bin/nvcc -- works -- Detecting CUDA compiler ABI info -- Detecting CUDA compiler ABI info - done -- Enabled support for CUDA. -- Using CUDA architecture: 70 -- Looking for pthread.h -- Looking for pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found CUDA: /usr/local/cuda (found version "11.0") -- Found MPI_C: /opt/openmpi/lib/libmpi.so (found version "3.1") -- Found MPI_CXX: /opt/openmpi/lib/libmpi.so (found version "3.1") -- Found MPI: TRUE (found version "3.1") -- Configuring done -- Generating done -- Build files have been written to: /hypre/build Scanning dependencies of target HYPRE [ 0%] Building C object CMakeFiles/HYPRE.dir/blas/dasum.c.o [ 0%] Building C object CMakeFiles/HYPRE.dir/blas/dcopy.c.o [ 0%] Building C object CMakeFiles/HYPRE.dir/blas/daxpy.c.o [ 0%] Building C object CMakeFiles/HYPRE.dir/blas/ddot.c.o [ 0%] Building C object CMakeFiles/HYPRE.dir/blas/dgemm.c.o [ 0%] Building C object CMakeFiles/HYPRE.dir/blas/dger.c.o [ 1%] Building C object CMakeFiles/HYPRE.dir/blas/dnrm2.c.o [ 1%] Building C object CMakeFiles/HYPRE.dir/blas/dgemv.c.o [ 1%] Building C object CMakeFiles/HYPRE.dir/blas/drot.c.o [ 1%] Building C object CMakeFiles/HYPRE.dir/blas/dscal.c.o [ 1%] Building C object CMakeFiles/HYPRE.dir/blas/dswap.c.o [ 2%] Building C object CMakeFiles/HYPRE.dir/blas/dsymm.c.o [ 2%] Building C object CMakeFiles/HYPRE.dir/blas/dsymv.c.o [ 2%] Building C object CMakeFiles/HYPRE.dir/blas/dsyr2.c.o [ 2%] Building C object CMakeFiles/HYPRE.dir/blas/dsyr2k.c.o [ 2%] Building C object CMakeFiles/HYPRE.dir/blas/dsyrk.c.o [ 2%] Building C object CMakeFiles/HYPRE.dir/blas/dtrmm.c.o [ 3%] Building C object CMakeFiles/HYPRE.dir/blas/dtrmv.c.o [ 3%] Building C object CMakeFiles/HYPRE.dir/blas/dtrsm.c.o [ 3%] Building C object CMakeFiles/HYPRE.dir/blas/dtrsv.c.o [ 3%] Building C object CMakeFiles/HYPRE.dir/blas/f2c.c.o [ 3%] Building C object CMakeFiles/HYPRE.dir/blas/idamax.c.o [ 3%] Building C object CMakeFiles/HYPRE.dir/blas/lsame.c.o [ 4%] Building C object CMakeFiles/HYPRE.dir/blas/xerbla.c.o [ 4%] Building C object CMakeFiles/HYPRE.dir/lapack/dbdsqr.c.o [ 4%] Building C object CMakeFiles/HYPRE.dir/lapack/dgebd2.c.o [ 4%] Building C object CMakeFiles/HYPRE.dir/lapack/dgelq2.c.o [ 4%] Building C object CMakeFiles/HYPRE.dir/lapack/dgebrd.c.o [ 5%] Building C object CMakeFiles/HYPRE.dir/lapack/dgelqf.c.o [ 5%] Building C object CMakeFiles/HYPRE.dir/lapack/dgels.c.o [ 5%] Building C object CMakeFiles/HYPRE.dir/lapack/dgeqr2.c.o [ 5%] Building C object CMakeFiles/HYPRE.dir/lapack/dgeqrf.c.o [ 5%] Building C object CMakeFiles/HYPRE.dir/lapack/dgesvd.c.o [ 5%] Building C object CMakeFiles/HYPRE.dir/lapack/dgetrf.c.o [ 6%] Building C object CMakeFiles/HYPRE.dir/lapack/dgetri.c.o [ 6%] Building C object CMakeFiles/HYPRE.dir/lapack/dgetrs.c.o [ 6%] Building C object CMakeFiles/HYPRE.dir/lapack/dgetf2.c.o [ 6%] Building C object CMakeFiles/HYPRE.dir/lapack/dlabad.c.o [ 6%] Building C object CMakeFiles/HYPRE.dir/lapack/dlabrd.c.o [ 6%] Building C object CMakeFiles/HYPRE.dir/lapack/dlacpy.c.o [ 7%] Building C object CMakeFiles/HYPRE.dir/lapack/dlae2.c.o [ 7%] Building C object CMakeFiles/HYPRE.dir/lapack/dlaev2.c.o [ 7%] Building C object CMakeFiles/HYPRE.dir/lapack/dlamch.c.o [ 7%] Building C object CMakeFiles/HYPRE.dir/lapack/dlange.c.o [ 7%] Building C object CMakeFiles/HYPRE.dir/lapack/dlanst.c.o [ 7%] Building C object CMakeFiles/HYPRE.dir/lapack/dlansy.c.o [ 8%] Building C object CMakeFiles/HYPRE.dir/lapack/dlapy2.c.o [ 8%] Building C object CMakeFiles/HYPRE.dir/lapack/dlarfb.c.o [ 8%] Building C object CMakeFiles/HYPRE.dir/lapack/dlarf.c.o [ 8%] Building C object CMakeFiles/HYPRE.dir/lapack/dlarfg.c.o [ 8%] Building C object CMakeFiles/HYPRE.dir/lapack/dlarft.c.o [ 8%] Building C object CMakeFiles/HYPRE.dir/lapack/dlartg.c.o [ 9%] Building C object CMakeFiles/HYPRE.dir/lapack/dlas2.c.o [ 9%] Building C object CMakeFiles/HYPRE.dir/lapack/dlascl.c.o [ 9%] Building C object CMakeFiles/HYPRE.dir/lapack/dlaset.c.o [ 9%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasq1.c.o [ 9%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasq2.c.o [ 10%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasq3.c.o [ 10%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasq4.c.o [ 10%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasq5.c.o [ 10%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasq6.c.o [ 10%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasr.c.o [ 10%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasrt.c.o [ 11%] Building C object CMakeFiles/HYPRE.dir/lapack/dlassq.c.o [ 11%] Building C object CMakeFiles/HYPRE.dir/lapack/dlaswp.c.o [ 11%] Building C object CMakeFiles/HYPRE.dir/lapack/dlasv2.c.o [ 11%] Building C object CMakeFiles/HYPRE.dir/lapack/dlatrd.c.o [ 11%] Building C object CMakeFiles/HYPRE.dir/lapack/dorg2l.c.o [ 11%] Building C object CMakeFiles/HYPRE.dir/lapack/dorg2r.c.o [ 12%] Building C object CMakeFiles/HYPRE.dir/lapack/dorgl2.c.o [ 12%] Building C object CMakeFiles/HYPRE.dir/lapack/dorgbr.c.o [ 12%] Building C object CMakeFiles/HYPRE.dir/lapack/dorglq.c.o [ 12%] Building C object CMakeFiles/HYPRE.dir/lapack/dorgql.c.o [ 12%] Building C object CMakeFiles/HYPRE.dir/lapack/dorgqr.c.o [ 12%] Building C object CMakeFiles/HYPRE.dir/lapack/dorgtr.c.o [ 13%] Building C object CMakeFiles/HYPRE.dir/lapack/dorm2r.c.o [ 13%] Building C object CMakeFiles/HYPRE.dir/lapack/dormbr.c.o [ 13%] Building C object CMakeFiles/HYPRE.dir/lapack/dormlq.c.o [ 13%] Building C object CMakeFiles/HYPRE.dir/lapack/dorml2.c.o [ 13%] Building C object CMakeFiles/HYPRE.dir/lapack/dormqr.c.o [ 14%] Building C object CMakeFiles/HYPRE.dir/lapack/dpotf2.c.o [ 14%] Building C object CMakeFiles/HYPRE.dir/lapack/dpotrf.c.o [ 14%] Building C object CMakeFiles/HYPRE.dir/lapack/dpotrs.c.o [ 14%] Building C object CMakeFiles/HYPRE.dir/lapack/dsteqr.c.o [ 14%] Building C object CMakeFiles/HYPRE.dir/lapack/dsterf.c.o [ 14%] Building C object CMakeFiles/HYPRE.dir/lapack/dsyev.c.o [ 15%] Building C object CMakeFiles/HYPRE.dir/lapack/dsygs2.c.o [ 15%] Building C object CMakeFiles/HYPRE.dir/lapack/dsygst.c.o [ 15%] Building C object CMakeFiles/HYPRE.dir/lapack/dsytd2.c.o [ 15%] Building C object CMakeFiles/HYPRE.dir/lapack/dsygv.c.o [ 15%] Building C object CMakeFiles/HYPRE.dir/lapack/dsytrd.c.o [ 15%] Building C object CMakeFiles/HYPRE.dir/lapack/dtrti2.c.o [ 16%] Building C object CMakeFiles/HYPRE.dir/lapack/ieeeck.c.o [ 16%] Building C object CMakeFiles/HYPRE.dir/lapack/dtrtri.c.o [ 16%] Building C object CMakeFiles/HYPRE.dir/lapack/ilaenv.c.o [ 16%] Building C object CMakeFiles/HYPRE.dir/lapack/lsame.c.o [ 16%] Building C object CMakeFiles/HYPRE.dir/lapack/xerbla.c.o [ 16%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/HYPRE_handle.c.o [ 17%] Building C object CMakeFiles/HYPRE.dir/utilities/HYPRE_version.c.o [ 17%] Building C object CMakeFiles/HYPRE.dir/utilities/amg_linklist.c.o [ 17%] Building C object CMakeFiles/HYPRE.dir/utilities/binsearch.c.o [ 17%] Building C object CMakeFiles/HYPRE.dir/utilities/exchange_data.c.o [ 17%] Building C object CMakeFiles/HYPRE.dir/utilities/F90_HYPRE_error.c.o [ 17%] Building C object CMakeFiles/HYPRE.dir/utilities/F90_HYPRE_general.c.o [ 18%] Building C object CMakeFiles/HYPRE.dir/utilities/fortran_matrix.c.o [ 18%] Building C object CMakeFiles/HYPRE.dir/utilities/ap.c.o [ 18%] Building C object CMakeFiles/HYPRE.dir/utilities/log.c.o [ 18%] Building C object CMakeFiles/HYPRE.dir/utilities/complex.c.o [ 18%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/cuda_utils.c.o [ 19%] Building C object CMakeFiles/HYPRE.dir/utilities/error.c.o [ 19%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/general.c.o [ 19%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/handle.c.o [ 19%] Building C object CMakeFiles/HYPRE.dir/utilities/hopscotch_hash.c.o [ 19%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/memory.c.o [ 20%] Building C object CMakeFiles/HYPRE.dir/utilities/merge_sort.c.o [ 20%] Building C object CMakeFiles/HYPRE.dir/utilities/mpi_comm_f2c.c.o [ 20%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/nvtx.c.o [ 20%] Building CUDA object CMakeFiles/HYPRE.dir/utilities/omp_device.c.o [ 20%] Building C object CMakeFiles/HYPRE.dir/utilities/prefix_sum.c.o [ 20%] Building C object CMakeFiles/HYPRE.dir/utilities/printf.c.o [ 20%] Building C object CMakeFiles/HYPRE.dir/utilities/qsort.c.o [ 21%] Building C object CMakeFiles/HYPRE.dir/utilities/utilities.c.o [ 21%] Building C object CMakeFiles/HYPRE.dir/utilities/mpistubs.c.o [ 21%] Building C object CMakeFiles/HYPRE.dir/utilities/qsplit.c.o [ 21%] Building C object CMakeFiles/HYPRE.dir/utilities/random.c.o [ 21%] Building C object CMakeFiles/HYPRE.dir/utilities/threading.c.o [ 21%] Building C object CMakeFiles/HYPRE.dir/utilities/timer.c.o [ 22%] Building C object CMakeFiles/HYPRE.dir/utilities/timing.c.o [ 22%] Building C object CMakeFiles/HYPRE.dir/multivector/multivector.c.o [ 22%] Building C object CMakeFiles/HYPRE.dir/multivector/temp_multivector.c.o [ 22%] Building C object CMakeFiles/HYPRE.dir/krylov/bicgstab.c.o [ 22%] Building C object CMakeFiles/HYPRE.dir/krylov/cgnr.c.o [ 23%] Building C object CMakeFiles/HYPRE.dir/krylov/cogmres.c.o [ 23%] Building C object CMakeFiles/HYPRE.dir/krylov/gmres.c.o [ 23%] Building C object CMakeFiles/HYPRE.dir/krylov/flexgmres.c.o [ 23%] Building C object CMakeFiles/HYPRE.dir/krylov/lgmres.c.o [ 23%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_bicgstab.c.o [ 23%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_cgnr.c.o [ 24%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_gmres.c.o [ 24%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_cogmres.c.o [ 24%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_lgmres.c.o [ 24%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_flexgmres.c.o [ 24%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_pcg.c.o [ 24%] Building C object CMakeFiles/HYPRE.dir/krylov/pcg.c.o [ 25%] Building C object CMakeFiles/HYPRE.dir/krylov/HYPRE_lobpcg.c.o [ 25%] Building C object CMakeFiles/HYPRE.dir/krylov/lobpcg.c.o [ 25%] Building C object CMakeFiles/HYPRE.dir/seq_mv/csr_matop.c.o [ 25%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_matop_device.c.o [ 25%] Building C object CMakeFiles/HYPRE.dir/seq_mv/csr_matrix.c.o [ 25%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_matrix_cuda_utils.c.o [ 26%] Building C object CMakeFiles/HYPRE.dir/seq_mv/csr_matvec.c.o [ 26%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_matvec_device.c.o [ 26%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_matvec_oomp.c.o [ 26%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spadd_device.c.o [ 26%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device.c.o [ 26%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_attempt.c.o [ 27%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_confident.c.o [ 27%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_cusparse.c.o [ 27%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_rocsparse.c.o [ 27%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_rowbound.c.o [ 27%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_rowest.c.o [ 28%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spgemm_device_util.c.o [ 28%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_spmv_device.c.o [ 28%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/csr_sptrans_device.c.o [ 28%] Building C object CMakeFiles/HYPRE.dir/seq_mv/genpart.c.o [ 28%] Building C object CMakeFiles/HYPRE.dir/seq_mv/HYPRE_csr_matrix.c.o [ 28%] Building C object CMakeFiles/HYPRE.dir/seq_mv/HYPRE_mapped_matrix.c.o [ 29%] Building C object CMakeFiles/HYPRE.dir/seq_mv/HYPRE_multiblock_matrix.c.o [ 29%] Building C object CMakeFiles/HYPRE.dir/seq_mv/HYPRE_vector.c.o [ 29%] Building C object CMakeFiles/HYPRE.dir/seq_mv/mapped_matrix.c.o [ 29%] Building C object CMakeFiles/HYPRE.dir/seq_mv/multiblock_matrix.c.o [ 29%] Building CUDA object CMakeFiles/HYPRE.dir/seq_mv/vector.c.o [ 29%] Building C object CMakeFiles/HYPRE.dir/seq_mv/vector_batched.c.o [ 30%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/communicationT.c.o [ 30%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/F90_HYPRE_parcsr_matrix.c.o [ 30%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/F90_HYPRE_parcsr_vector.c.o [ 30%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/F90_parcsr_matrix.c.o [ 30%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/F90_par_vector.c.o [ 30%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/gen_fffc.c.o [ 31%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/HYPRE_parcsr_matrix.c.o [ 31%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/HYPRE_parcsr_vector.c.o [ 31%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/new_commpkg.c.o [ 31%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/numbers.c.o [ 31%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_aat.c.o [ 32%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_assumed_part.c.o [ 32%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_bool_matop.c.o [ 32%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_bool_matrix.c.o [ 32%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_communication.c.o [ 32%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_matop.c.o [ 32%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_matrix.c.o [ 33%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_matop_marked.c.o [ 33%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_matvec.c.o [ 33%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_vector.c.o [ 33%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_vector_batched.c.o [ 33%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_make_system.c.o [ 33%] Building C object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_triplemat.c.o [ 34%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_fffc_device.c.o [ 34%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_matop_device.c.o [ 34%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_mv/par_csr_triplemat_device.c.o [ 34%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_mv/par_vector_device.c.o [ 34%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/csr_block_matrix.c.o [ 34%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/csr_block_matvec.c.o [ 35%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_matrix.c.o [ 35%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_matvec.c.o [ 35%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_comm.c.o [ 35%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_rap.c.o [ 35%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_rap_communication.c.o [ 35%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_interp.c.o [ 36%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_csr_block_relax.c.o [ 36%] Building C object CMakeFiles/HYPRE.dir/parcsr_block_mv/par_block_nodal_systems.c.o [ 36%] Building C object CMakeFiles/HYPRE.dir/distributed_matrix/distributed_matrix.c.o [ 36%] Building C object CMakeFiles/HYPRE.dir/distributed_matrix/distributed_matrix_ISIS.c.o [ 36%] Building C object CMakeFiles/HYPRE.dir/distributed_matrix/distributed_matrix_parcsr.c.o [ 37%] Building C object CMakeFiles/HYPRE.dir/distributed_matrix/distributed_matrix_PETSc.c.o [ 37%] Building C object CMakeFiles/HYPRE.dir/distributed_matrix/HYPRE_distributed_matrix.c.o [ 37%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/aux_parcsr_matrix.c.o [ 37%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/aux_par_vector.c.o [ 37%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/F90_HYPRE_IJMatrix.c.o [ 37%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/F90_HYPRE_IJVector.c.o [ 38%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/F90_IJMatrix.c.o [ 38%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/HYPRE_IJMatrix.c.o [ 38%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/HYPRE_IJVector.c.o [ 38%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/IJ_assumed_part.c.o [ 38%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/IJMatrix.c.o [ 38%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/IJMatrix_parcsr.c.o [ 39%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/IJVector.c.o [ 39%] Building C object CMakeFiles/HYPRE.dir/IJ_mv/IJVector_parcsr.c.o [ 39%] Building CUDA object CMakeFiles/HYPRE.dir/IJ_mv/IJMatrix_parcsr_device.c.o [ 39%] Building CUDA object CMakeFiles/HYPRE.dir/IJ_mv/IJVector_parcsr_device.c.o [ 39%] Building C object CMakeFiles/HYPRE.dir/matrix_matrix/HYPRE_ConvertParCSRMatrixToDistributedMatrix.c.o [ 39%] Building C object CMakeFiles/HYPRE.dir/matrix_matrix/HYPRE_ConvertPETScMatrixToDistributedMatrix.c.o [ 40%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/blas_dh.c.o [ 40%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Euclid_apply.c.o [ 40%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Euclid_dh.c.o [ 40%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/ExternalRows_dh.c.o [ 40%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Factor_dh.c.o [ 41%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/getRow_dh.c.o [ 41%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/globalObjects.c.o [ 41%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Hash_dh.c.o [ 41%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Hash_i_dh.c.o [ 41%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/ilu_mpi_bj.c.o [ 41%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/ilu_mpi_pilu.c.o [ 42%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/ilu_seq.c.o [ 42%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/io_dh.c.o [ 42%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/krylov_dh.c.o [ 42%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Mat_dh.c.o [ 42%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/mat_dh_private.c.o [ 42%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/MatGenFD.c.o [ 43%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Mem_dh.c.o [ 43%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Numbering_dh.c.o [ 43%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Parser_dh.c.o [ 43%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/shellSort_dh.c.o [ 43%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/sig_dh.c.o [ 43%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/SortedList_dh.c.o [ 44%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/SortedSet_dh.c.o [ 44%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/SubdomainGraph_dh.c.o [ 44%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/TimeLog_dh.c.o [ 44%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Timer_dh.c.o [ 44%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/Euclid/Vec_dh.c.o [ 44%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/ConjGrad.c.o [ 45%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/DiagScale.c.o [ 45%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/FGmres.c.o [ 45%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/Hash.c.o [ 45%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/hypre_ParaSails.c.o [ 45%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/LoadBal.c.o [ 46%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/Matrix.c.o [ 46%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/Mem.c.o [ 46%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/Numbering.c.o [ 46%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/OrderStat.c.o [ 46%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/ParaSails.c.o [ 46%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/PrunedRows.c.o [ 47%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/RowPatt.c.o [ 47%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/ParaSails/StoredRows.c.o [ 47%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/comm.c.o [ 47%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/debug.c.o [ 47%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/distributed_qsort.c.o [ 47%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/distributed_qsort_si.c.o [ 48%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/HYPRE_DistributedMatrixPilutSolver.c.o [ 48%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/ilut.c.o [ 48%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/parilut.c.o [ 48%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/parutil.c.o [ 48%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/pblas1.c.o [ 48%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/serilut.c.o [ 49%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/trifactor.c.o [ 49%] Building C object CMakeFiles/HYPRE.dir/distributed_ls/pilut/util.c.o [ 49%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/amg_hybrid.c.o [ 49%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/aux_interp.c.o [ 49%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_hypre_laplace.c.o [ 50%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_amg.c.o [ 50%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_bicgstab.c.o [ 50%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_block.c.o [ 50%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_cgnr.c.o [ 50%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_Euclid.c.o [ 50%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_gmres.c.o [ 51%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_cogmres.c.o [ 51%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_flexgmres.c.o [ 51%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_lgmres.c.o [ 51%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_hybrid.c.o [ 51%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_int.c.o [ 51%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_ParaSails.c.o [ 52%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_pcg.c.o [ 52%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_pilut.c.o [ 52%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_parcsr_schwarz.c.o [ 52%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/F90_HYPRE_ams.c.o [ 52%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/gen_redcs_mat.c.o [ 52%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_amg.c.o [ 53%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_amgdd.c.o [ 53%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_bicgstab.c.o [ 53%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_block.c.o [ 53%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_cgnr.c.o [ 53%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_Euclid.c.o [ 53%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_gmres.c.o [ 54%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_cogmres.c.o [ 54%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_flexgmres.c.o [ 54%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_lgmres.c.o [ 54%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_hybrid.c.o [ 54%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_int.c.o [ 55%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_ilu.c.o [ 55%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_mgr.c.o [ 55%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_ParaSails.c.o [ 55%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_pcg.c.o [ 55%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_pilut.c.o [ 55%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_parcsr_schwarz.c.o [ 56%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_ams.c.o [ 56%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_ads.c.o [ 56%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/HYPRE_ame.c.o [ 56%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_2s_interp.c.o [ 56%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amg.c.o [ 56%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd.c.o [ 57%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd_comp_grid.c.o [ 57%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd_solve.c.o [ 57%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd_helpers.c.o [ 57%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd_fac_cycle.c.o [ 57%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd_setup.c.o [ 57%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amg_setup.c.o [ 58%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amg_solve.c.o [ 58%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_amg_solveT.c.o [ 58%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_cg_relax_wt.c.o [ 58%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_coarsen.c.o [ 58%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_cgc_coarsen.c.o [ 58%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_cheby.c.o [ 59%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_cheby_device.c.o [ 59%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_coarse_parms.c.o [ 59%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_coordinates.c.o [ 59%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_cr.c.o [ 59%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_cycle.c.o [ 60%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_add_cycle.c.o [ 60%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_difconv.c.o [ 60%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_gauss_elim.c.o [ 60%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_gsmg.c.o [ 60%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_indepset.c.o [ 60%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_interp.c.o [ 61%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_jacobi_interp.c.o [ 61%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_krylov_func.c.o [ 61%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_mod_lr_interp.c.o [ 61%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_multi_interp.c.o [ 61%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_laplace_27pt.c.o [ 61%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_laplace_9pt.c.o [ 62%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_laplace.c.o [ 62%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_lr_interp.c.o [ 62%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_mgr.c.o [ 62%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_mgr_setup.c.o [ 62%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_mgr_solve.c.o [ 62%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_nongalerkin.c.o [ 63%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_nodal_systems.c.o [ 63%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_rap.c.o [ 63%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_rap_communication.c.o [ 63%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_rotate_7pt.c.o [ 63%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_vardifconv.c.o [ 64%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_vardifconv_rs.c.o [ 64%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_relax.c.o [ 64%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_relax_more.c.o [ 64%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_relax_more_device.c.o [ 64%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_relax_interface.c.o [ 64%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_scaled_matnorm.c.o [ 65%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_schwarz.c.o [ 65%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_stats.c.o [ 65%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_strength.c.o [ 65%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_sv_interp.c.o [ 65%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_sv_interp_ln.c.o [ 65%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/partial.c.o [ 66%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/schwarz.c.o [ 66%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/block_tridiag.c.o [ 66%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/ams.c.o [ 66%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/ads.c.o [ 66%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/ame.c.o [ 66%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_restr.c.o [ 67%] Building C object CMakeFiles/HYPRE.dir/parcsr_ls/par_lr_restr.c.o [ 67%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_ilu.c.o [ 67%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_ilu_setup.c.o [ 67%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_ilu_solve.c.o [ 67%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_coarsen_device.c.o [ 67%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_indepset_device.c.o [ 68%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_interp_device.c.o [ 68%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_interp_trunc_device.c.o [ 68%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_lr_interp_device.c.o [ 68%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_lr_restr_device.c.o [ 68%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_strength_device.c.o [ 69%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_strength2nd_device.c.o [ 69%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_amgdd_fac_cycle_device.c.o [ 69%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_2s_interp_device.c.o [ 69%] Building CUDA object CMakeFiles/HYPRE.dir/parcsr_ls/par_relax_device.c.o [ 69%] Building C object CMakeFiles/HYPRE.dir/struct_mv/assumed_part.c.o [ 69%] Building C object CMakeFiles/HYPRE.dir/struct_mv/box_algebra.c.o [ 70%] Building C object CMakeFiles/HYPRE.dir/struct_mv/box_boundary.c.o [ 70%] Building C object CMakeFiles/HYPRE.dir/struct_mv/box.c.o [ 70%] Building C object CMakeFiles/HYPRE.dir/struct_mv/box_manager.c.o [ 70%] Building C object CMakeFiles/HYPRE.dir/struct_mv/communication_info.c.o [ 70%] Building C object CMakeFiles/HYPRE.dir/struct_mv/computation.c.o [ 70%] Building C object CMakeFiles/HYPRE.dir/struct_mv/F90_HYPRE_struct_grid.c.o [ 71%] Building C object CMakeFiles/HYPRE.dir/struct_mv/F90_HYPRE_struct_matrix.c.o [ 71%] Building C object CMakeFiles/HYPRE.dir/struct_mv/F90_HYPRE_struct_stencil.c.o [ 71%] Building C object CMakeFiles/HYPRE.dir/struct_mv/F90_HYPRE_struct_vector.c.o [ 71%] Building C object CMakeFiles/HYPRE.dir/struct_mv/HYPRE_struct_grid.c.o [ 71%] Building C object CMakeFiles/HYPRE.dir/struct_mv/HYPRE_struct_matrix.c.o [ 71%] Building C object CMakeFiles/HYPRE.dir/struct_mv/HYPRE_struct_stencil.c.o [ 72%] Building C object CMakeFiles/HYPRE.dir/struct_mv/HYPRE_struct_vector.c.o [ 72%] Building C object CMakeFiles/HYPRE.dir/struct_mv/project.c.o [ 72%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_axpy.c.o [ 72%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_communication.c.o [ 72%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_copy.c.o [ 73%] Building C object CMakeFiles/HYPRE.dir/struct_mv/struct_grid.c.o [ 73%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_innerprod.c.o [ 73%] Building C object CMakeFiles/HYPRE.dir/struct_mv/struct_io.c.o [ 73%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_matrix.c.o [ 73%] Building C object CMakeFiles/HYPRE.dir/struct_mv/struct_matrix_mask.c.o [ 73%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_matvec.c.o [ 74%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_scale.c.o [ 74%] Building C object CMakeFiles/HYPRE.dir/struct_mv/struct_stencil.c.o [ 74%] Building CUDA object CMakeFiles/HYPRE.dir/struct_mv/struct_vector.c.o [ 74%] Building C object CMakeFiles/HYPRE.dir/struct_ls/coarsen.c.o [ 74%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/cyclic_reduction.c.o [ 74%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_bicgstab.c.o [ 75%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_cycred.c.o [ 75%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_gmres.c.o [ 75%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_hybrid.c.o [ 75%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_int.c.o [ 75%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_jacobi.c.o [ 75%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_pcg.c.o [ 76%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_pfmg.c.o [ 76%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_smg.c.o [ 76%] Building C object CMakeFiles/HYPRE.dir/struct_ls/F90_HYPRE_struct_sparse_msg.c.o [ 76%] Building C object CMakeFiles/HYPRE.dir/struct_ls/hybrid.c.o [ 76%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_bicgstab.c.o [ 76%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_cycred.c.o [ 77%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_hybrid.c.o [ 77%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_int.c.o [ 77%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_jacobi.c.o [ 77%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_pfmg.c.o [ 77%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_smg.c.o [ 78%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_sparse_msg.c.o [ 78%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_pcg.c.o [ 78%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_gmres.c.o [ 78%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_flexgmres.c.o [ 78%] Building C object CMakeFiles/HYPRE.dir/struct_ls/HYPRE_struct_lgmres.c.o [ 78%] Building C object CMakeFiles/HYPRE.dir/struct_ls/jacobi.c.o [ 79%] Building C object CMakeFiles/HYPRE.dir/struct_ls/pcg_struct.c.o [ 79%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/pfmg2_setup_rap.c.o [ 79%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/pfmg3_setup_rap.c.o [ 79%] Building C object CMakeFiles/HYPRE.dir/struct_ls/pfmg.c.o [ 79%] Building C object CMakeFiles/HYPRE.dir/struct_ls/pfmg_relax.c.o [ 79%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/pfmg_setup.c.o [ 80%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/pfmg_setup_interp.c.o [ 80%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/pfmg_setup_rap5.c.o [ 80%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/pfmg_setup_rap7.c.o [ 80%] Building C object CMakeFiles/HYPRE.dir/struct_ls/pfmg_setup_rap.c.o [ 80%] Building C object CMakeFiles/HYPRE.dir/struct_ls/pfmg_solve.c.o [ 80%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/point_relax.c.o [ 81%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/red_black_constantcoef_gs.c.o [ 81%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/red_black_gs.c.o [ 81%] Building C object CMakeFiles/HYPRE.dir/struct_ls/semi.c.o [ 81%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/semi_interp.c.o [ 81%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/semi_restrict.c.o [ 82%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/semi_setup_rap.c.o [ 82%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/smg2_setup_rap.c.o [ 82%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/smg3_setup_rap.c.o [ 82%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/smg_axpy.c.o [ 82%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/smg.c.o [ 82%] Building C object CMakeFiles/HYPRE.dir/struct_ls/smg_relax.c.o [ 83%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/smg_residual.c.o [ 83%] Building C object CMakeFiles/HYPRE.dir/struct_ls/smg_setup.c.o [ 83%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/smg_setup_interp.c.o [ 83%] Building C object CMakeFiles/HYPRE.dir/struct_ls/smg_setup_rap.c.o [ 83%] Building C object CMakeFiles/HYPRE.dir/struct_ls/smg_setup_restrict.c.o [ 83%] Building C object CMakeFiles/HYPRE.dir/struct_ls/smg_solve.c.o [ 84%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg2_setup_rap.c.o [ 84%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg3_setup_rap.c.o [ 84%] Building C object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg.c.o [ 84%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg_filter.c.o [ 84%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg_interp.c.o [ 84%] Building CUDA object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg_restrict.c.o [ 85%] Building C object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg_setup.c.o [ 85%] Building C object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg_setup_rap.c.o [ 85%] Building C object CMakeFiles/HYPRE.dir/struct_ls/sparse_msg_solve.c.o [ 85%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/F90_HYPRE_sstruct_graph.c.o [ 85%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/F90_HYPRE_sstruct_grid.c.o [ 85%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/F90_HYPRE_sstruct_matrix.c.o [ 86%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/F90_HYPRE_sstruct_stencil.c.o [ 86%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/F90_HYPRE_sstruct_vector.c.o [ 86%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/HYPRE_sstruct_graph.c.o [ 86%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/HYPRE_sstruct_grid.c.o [ 86%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/HYPRE_sstruct_matrix.c.o [ 87%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/HYPRE_sstruct_stencil.c.o [ 87%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/HYPRE_sstruct_vector.c.o [ 87%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_axpy.c.o [ 87%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_copy.c.o [ 87%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_graph.c.o [ 87%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_grid.c.o [ 88%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_innerprod.c.o [ 88%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_matrix.c.o [ 88%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_matvec.c.o [ 88%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_scale.c.o [ 88%] Building C object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_stencil.c.o [ 88%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_mv/sstruct_vector.c.o [ 89%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_bicgstab.c.o [ 89%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_gmres.c.o [ 89%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_flexgmres.c.o [ 89%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_lgmres.c.o [ 89%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_InterFAC.c.o [ 89%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_int.c.o [ 90%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_maxwell.c.o [ 90%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_pcg.c.o [ 90%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_split.c.o [ 90%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/F90_HYPRE_sstruct_sys_pfmg.c.o [ 90%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_bicgstab.c.o [ 91%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_gmres.c.o [ 91%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_flexgmres.c.o [ 91%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_lgmres.c.o [ 91%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_InterFAC.c.o [ 91%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_int.c.o [ 91%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_maxwell.c.o [ 92%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_pcg.c.o [ 92%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_split.c.o [ 92%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/HYPRE_sstruct_sys_pfmg.c.o [ 92%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/bsearch.c.o [ 92%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac.c.o [ 92%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_ls/fac_amr_rap.c.o [ 93%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_ls/fac_amr_fcoarsen.c.o [ 93%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_amr_zero_data.c.o [ 93%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_cf_coarsen.c.o [ 93%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_cfstencil_box.c.o [ 93%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_CFInterfaceExtents.c.o [ 93%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_interp2.c.o [ 94%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_relax.c.o [ 94%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_ls/fac_restrict2.c.o [ 94%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_ls/fac_setup2.c.o [ 94%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_solve3.c.o [ 94%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/fac_zero_cdata.c.o [ 94%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_ls/fac_zero_stencilcoef.c.o [ 95%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/krylov.c.o [ 95%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/krylov_sstruct.c.o [ 95%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/eliminate_rowscols.c.o [ 95%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_grad.c.o [ 95%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_physbdy.c.o [ 96%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_PNedelec.c.o [ 96%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_PNedelec_bdy.c.o [ 96%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_semi_interp.c.o [ 96%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_solve.c.o [ 96%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_solve2.c.o [ 96%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_TV.c.o [ 97%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_TV_setup.c.o [ 97%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/maxwell_zeroBC.c.o [ 97%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/nd1_amge_interpolation.c.o [ 97%] Building CUDA object CMakeFiles/HYPRE.dir/sstruct_ls/node_relax.c.o [ 97%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sstruct_amr_intercommunication.c.o [ 97%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sstruct_owninfo.c.o [ 98%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sstruct_recvinfo.c.o [ 98%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sstruct_sendinfo.c.o [ 98%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sstruct_sharedDOFComm.c.o [ 98%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_pfmg.c.o [ 98%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_pfmg_relax.c.o [ 98%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_pfmg_setup.c.o [ 99%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_pfmg_setup_interp.c.o [ 99%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_pfmg_setup_rap.c.o [ 99%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_pfmg_solve.c.o [ 99%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_semi_interp.c.o [ 99%] Building C object CMakeFiles/HYPRE.dir/sstruct_ls/sys_semi_restrict.c.o [100%] Linking CUDA static library libHYPRE.a [100%] Built target HYPRE Install the project... -- Install configuration: "Debug" -- Installing: /opt/hypre/lib/libHYPRE.a -- Installing: /opt/hypre/include/HYPRE_config.h -- Installing: /opt/hypre/include/HYPREf.h -- Installing: /opt/hypre/include/HYPRE.h -- Installing: /opt/hypre/include/_hypre_blas.h -- Installing: /opt/hypre/include/f2c.h -- Installing: /opt/hypre/include/hypre_blas.h -- Installing: /opt/hypre/include/_hypre_lapack.h -- Installing: /opt/hypre/include/HYPRE_utilities.h -- Installing: /opt/hypre/include/_hypre_utilities.h -- Installing: /opt/hypre/include/HYPRE_error_f.h -- Installing: /opt/hypre/include/fortran.h -- Installing: /opt/hypre/include/fortran_matrix.h -- Installing: /opt/hypre/include/csr_matmultivec.h -- Installing: /opt/hypre/include/interpreter.h -- Installing: /opt/hypre/include/multivector.h -- Installing: /opt/hypre/include/par_csr_matmultivec.h -- Installing: /opt/hypre/include/par_csr_pmvcomm.h -- Installing: /opt/hypre/include/par_multivector.h -- Installing: /opt/hypre/include/seq_multivector.h -- Installing: /opt/hypre/include/temp_multivector.h -- Installing: /opt/hypre/include/HYPRE_krylov.h -- Installing: /opt/hypre/include/HYPRE_lobpcg.h -- Installing: /opt/hypre/include/HYPRE_MatvecFunctions.h -- Installing: /opt/hypre/include/krylov.h -- Installing: /opt/hypre/include/lobpcg.h -- Installing: /opt/hypre/include/HYPRE_seq_mv.h -- Installing: /opt/hypre/include/seq_mv.h -- Installing: /opt/hypre/include/HYPRE_parcsr_mv.h -- Installing: /opt/hypre/include/_hypre_parcsr_mv.h -- Installing: /opt/hypre/include/par_csr_block_matrix.h -- Installing: /opt/hypre/include/csr_block_matrix.h -- Installing: /opt/hypre/include/distributed_matrix.h -- Installing: /opt/hypre/include/HYPRE_distributed_matrix_mv.h -- Installing: /opt/hypre/include/HYPRE_distributed_matrix_protos.h -- Installing: /opt/hypre/include/HYPRE_distributed_matrix_types.h -- Installing: /opt/hypre/include/aux_parcsr_matrix.h -- Installing: /opt/hypre/include/aux_par_vector.h -- Installing: /opt/hypre/include/HYPRE_IJ_mv.h -- Installing: /opt/hypre/include/_hypre_IJ_mv.h -- Installing: /opt/hypre/include/IJ_matrix.h -- Installing: /opt/hypre/include/IJ_vector.h -- Installing: /opt/hypre/include/HYPRE_matrix_matrix_protos.h -- Installing: /opt/hypre/include/HYPRE_DistributedMatrixPilutSolver_protos.h -- Installing: /opt/hypre/include/HYPRE_DistributedMatrixPilutSolver_types.h -- Installing: /opt/hypre/include/HYPRE_parcsr_ls.h -- Installing: /opt/hypre/include/_hypre_parcsr_ls.h -- Installing: /opt/hypre/include/HYPRE_struct_mv.h -- Installing: /opt/hypre/include/_hypre_struct_mv.h -- Installing: /opt/hypre/include/HYPRE_struct_ls.h -- Installing: /opt/hypre/include/_hypre_struct_ls.h -- Installing: /opt/hypre/include/HYPRE_sstruct_mv.h -- Installing: /opt/hypre/include/_hypre_sstruct_mv.h -- Installing: /opt/hypre/include/HYPRE_sstruct_ls.h -- Installing: /opt/hypre/include/_hypre_sstruct_ls.h -- Installing: /opt/hypre/lib/cmake/HYPRE/HYPRETargets.cmake -- Installing: /opt/hypre/lib/cmake/HYPRE/HYPRETargets-debug.cmake -- Installing: /opt/hypre/lib/cmake/HYPRE/HYPREConfig.cmake -- Installing: /opt/hypre/lib/cmake/HYPRE/HYPREConfigVersion.cmake ---> Removed intermediate container b62ca181e83b ---> 7b87a920c1a6 Successfully built 7b87a920c1a6 Successfully tagged c7783df57b64d357b10ad4b036e4d7e2b6901a1c:latest [Pipeline] isUnix [Pipeline] withEnv [Pipeline] { [Pipeline] sh + docker inspect -f . c7783df57b64d357b10ad4b036e4d7e2b6901a1c . [Pipeline] } [Pipeline] // withEnv [Pipeline] withDockerContainer fetnat06 seems to be running inside container 8ba4488dc9e6562509394eca46b10fb48bad2314a5e00f5b346c8f5773899d47 $ docker run -t -d -u 0:0 -v /tmp/ccache.kokkos:/tmp/ccache --env NVIDIA_VISIBLE_DEVICES=$NVIDIA_VISIBLE_DEVICES -w /var/jenkins/workspace/Cabana_PR-712 --volumes-from 8ba4488dc9e6562509394eca46b10fb48bad2314a5e00f5b346c8f5773899d47 -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** c7783df57b64d357b10ad4b036e4d7e2b6901a1c cat $ docker top c0f0ec2c391b416abcde0e0a15ad01fc56caa0ae23c8854abb21e2f512dd7eb6 -eo pid,comm ERROR: The container started but didn't run the expected command. Please double check your ENTRYPOINT does execute the command passed as docker run argument, as required by official docker images (see https://github.com/docker-library/official-images#consistency for entrypoint consistency requirements). Alternatively you can force image entrypoint to be disabled by adding option `--entrypoint=''`. [Pipeline] { [Pipeline] sh + ccache --zero-stats Statistics zeroed [Pipeline] sh + rm -rf build + mkdir -p build + cd build + cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_COMPILER=/opt/kokkos/bin/nvcc_wrapper -D CMAKE_CXX_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_FLAGS=-Wall -Wextra -Wpedantic -Werror -D CMAKE_PREFIX_PATH=/opt/kokkos;/opt/arborx;/opt/heffte;/opt/hypre -D MPIEXEC_MAX_NUMPROCS=1 -D MPIEXEC_PREFLAGS=--allow-run-as-root;--mca;btl_smcuda_use_cuda_ipc;0 -D Cabana_REQUIRE_MPI=ON -D Cabana_REQUIRE_ARBORX=ON -D Cabana_REQUIRE_HEFFTE=ON -D Cabana_REQUIRE_CUDA=ON -D Cabana_ENABLE_TESTING=ON -D Cabana_ENABLE_PERFORMANCE_TESTING=ON -D Cabana_ENABLE_EXAMPLES=ON .. -- The CXX compiler identification is GNU 9.4.0 -- Check for working CXX compiler: /opt/kokkos/bin/nvcc_wrapper -- Check for working CXX compiler: /opt/kokkos/bin/nvcc_wrapper -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Enabled Kokkos devices: CUDA;SERIAL CMake Warning at /opt/kokkos/lib/cmake/Kokkos/KokkosConfigCommon.cmake:35 (MESSAGE): The installed Kokkos configuration does not support CXX extensions. Forcing -DCMAKE_CXX_EXTENSIONS=Off Call Stack (most recent call first): /opt/kokkos/lib/cmake/Kokkos/KokkosConfig.cmake:56 (INCLUDE) CMakeLists.txt:39 (find_package) -- Found Kokkos_DEVICES: CUDA -- Found Kokkos_OPTIONS: CUDA_LAMBDA -- Found MPI_CXX: /opt/openmpi/lib/libmpi.so (found version "3.1") -- Found MPI: TRUE (found version "3.1") -- Could NOT find CLANG_FORMAT: Found unsuitable version "0.0", but required is at least "14" (found CLANG_FORMAT_EXECUTABLE-NOTFOUND) -- The C compiler identification is GNU 9.4.0 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Looking for pthread.h -- Looking for pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found CUDA: /usr/local/cuda (found version "11.0") -- Could NOT find Git (missing: GIT_EXECUTABLE) -- Cabana Revision = 'Not a git repository' -- Found GTest: /usr/lib/x86_64-linux-gnu/libgtest.a (Required is at least version "1.10") -- Could NOT find VALGRIND (missing: VALGRIND_EXECUTABLE) -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) -- Could NOT find VALGRIND (missing: VALGRIND_EXECUTABLE) -- Could NOT find VALGRIND (missing: VALGRIND_EXECUTABLE) -- Configuring done -- Generating done -- Build files have been written to: /var/jenkins/workspace/Cabana_PR-712/build + make -j8 Scanning dependencies of target Cabana_Slice_test_CUDA Scanning dependencies of target Cabana_Halo_MPI_test_CUDA_UVM Scanning dependencies of target Cabana_NeighborList_test_SERIAL Scanning dependencies of target Cabana_CommunicationPlan_MPI_test_CUDA Scanning dependencies of target Cabana_Parallel_test_CUDA Scanning dependencies of target Cabana_ParameterPack_test_CUDA Scanning dependencies of target Cabana_Distributor_MPI_test_CUDA_UVM Scanning dependencies of target Cabana_NeighborList_test_CUDA [ 0%] Building CXX object core/unit_test/CMakeFiles/Cabana_ParameterPack_test_CUDA.dir/CUDA/tstParameterPack_CUDA.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_NeighborList_test_SERIAL.dir/SERIAL/tstNeighborList_SERIAL.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_Slice_test_CUDA.dir/CUDA/tstSlice_CUDA.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_Parallel_test_CUDA.dir/CUDA/tstParallel_CUDA.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_CommunicationPlan_MPI_test_CUDA.dir/CUDA/tstCommunicationPlan_CUDA.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_Halo_MPI_test_CUDA_UVM.dir/CUDA_UVM/tstHalo_CUDA_UVM.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_NeighborList_test_CUDA.dir/CUDA/tstNeighborList_CUDA.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_Distributor_MPI_test_CUDA_UVM.dir/CUDA_UVM/tstDistributor_CUDA_UVM.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_ParameterPack_test_CUDA.dir/__/__/cmake/test_harness/unit_test_main.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_Parallel_test_CUDA.dir/__/__/cmake/test_harness/unit_test_main.cpp.o [ 1%] Building CXX object core/unit_test/CMakeFiles/Cabana_CommunicationPlan_MPI_test_CUDA.dir/__/__/cmake/test_harness/mpi_unit_test_main.cpp.o [ 2%] Building CXX object core/unit_test/CMakeFiles/Cabana_Slice_test_CUDA.dir/__/__/cmake/test_harness/unit_test_main.cpp.o [ 2%] Building CXX object core/unit_test/CMakeFiles/Cabana_Distributor_MPI_test_CUDA_UVM.dir/__/__/cmake/test_harness/mpi_unit_test_main.cpp.o [ 2%] Linking CXX executable Cabana_Parallel_test_CUDA [ 2%] Building CXX object core/unit_test/CMakeFiles/Cabana_Halo_MPI_test_CUDA_UVM.dir/__/__/cmake/test_harness/mpi_unit_test_main.cpp.o [ 3%] Linking CXX executable Cabana_ParameterPack_test_CUDA [ 3%] Built target Cabana_ParameterPack_test_CUDA [ 3%] Built target Cabana_Parallel_test_CUDA Scanning dependencies of target Cabana_Tuple_test_SERIAL Scanning dependencies of target Cabana_Slice_test_SERIAL [ 3%] Building CXX object core/unit_test/CMakeFiles/Cabana_Tuple_test_SERIAL.dir/SERIAL/tstTuple_SERIAL.cpp.o [ 3%] Building CXX object core/unit_test/CMakeFiles/Cabana_Slice_test_SERIAL.dir/SERIAL/tstSlice_SERIAL.cpp.o [ 3%] Linking CXX executable Cabana_Slice_test_CUDA [ 4%] Linking CXX executable Cabana_CommunicationPlan_MPI_test_CUDA [ 4%] Built target Cabana_Slice_test_CUDA /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp: In instantiation of 'void Test::checkFirstNeighborParallelFor(const TestListType&, const ViewType&, const ViewType&, int, std::size_t, std::size_t) [with TestListType = Test::TestNeighborList; ViewType = Kokkos::View; std::size_t = long unsigned int]': /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:450:30: required from 'void Test::checkFirstNeighborParallelForLambda(const ListType&, const TestListType&, int) [with ListType = Cabana::VerletList; TestListType = Test::TestNeighborList]' /var/jenkins/workspace/Cabana_PR-712/core/unit_test/tstNeighborList.hpp:158:36: required from 'void Test::testNeighborParallelFor() [with LayoutTag = Cabana::VerletLayoutCSR]' /var/jenkins/workspace/Cabana_PR-712/core/unit_test/tstNeighborList.hpp:299:52: required from here /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:304:37: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 304 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~ /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:304:82: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 304 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~ ^ /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp: In instantiation of 'void Test::checkFirstNeighborParallelReduce(const TestListType&, const AoSoAType&, double, double, int, std::size_t, std::size_t) [with TestListType = Test::TestNeighborList; AoSoAType = Cabana::AoSoA, Kokkos::HostSpace>; std::size_t = long unsigned int]': /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:611:33: required from 'void Test::checkFirstNeighborParallelReduceLambda(const ListType&, const TestListType&, const AoSoAType&) [with ListType = Cabana::VerletList; TestListType = Test::TestNeighborList; AoSoAType = Cabana::AoSoA, Kokkos::HostSpace>]' /var/jenkins/workspace/Cabana_PR-712/core/unit_test/tstNeighborList.hpp:193:39: required from 'void Test::testNeighborParallelReduce() [with LayoutTag = Cabana::VerletLayoutCSR]' /var/jenkins/workspace/Cabana_PR-712/core/unit_test/tstNeighborList.hpp:308:55: required from here /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:376:37: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 376 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~ /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:376:82: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 376 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~~~~~ ^ cc1plus: all warnings being treated as errors make[2]: *** [core/unit_test/CMakeFiles/Cabana_NeighborList_test_SERIAL.dir/build.make:66: core/unit_test/CMakeFiles/Cabana_NeighborList_test_SERIAL.dir/SERIAL/tstNeighborList_SERIAL.cpp.o] Error 1 make[1]: *** [CMakeFiles/Makefile2:1356: core/unit_test/CMakeFiles/Cabana_NeighborList_test_SERIAL.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [ 5%] Building CXX object core/unit_test/CMakeFiles/Cabana_Tuple_test_SERIAL.dir/__/__/cmake/test_harness/unit_test_main.cpp.o Scanning dependencies of target Cabana_DeepCopy_test_CUDA_UVM [ 5%] Building CXX object core/unit_test/CMakeFiles/Cabana_DeepCopy_test_CUDA_UVM.dir/CUDA_UVM/tstDeepCopy_CUDA_UVM.cpp.o [ 5%] Built target Cabana_CommunicationPlan_MPI_test_CUDA [ 6%] Building CXX object core/unit_test/CMakeFiles/Cabana_DeepCopy_test_CUDA_UVM.dir/__/__/cmake/test_harness/unit_test_main.cpp.o [ 6%] Building CXX object core/unit_test/CMakeFiles/Cabana_NeighborList_test_CUDA.dir/__/__/cmake/test_harness/unit_test_main.cpp.o [ 7%] Building CXX object core/unit_test/CMakeFiles/Cabana_Slice_test_SERIAL.dir/__/__/cmake/test_harness/unit_test_main.cpp.o [ 7%] Linking CXX executable Cabana_Halo_MPI_test_CUDA_UVM [ 8%] Linking CXX executable Cabana_Distributor_MPI_test_CUDA_UVM [ 8%] Linking CXX executable Cabana_Tuple_test_SERIAL [ 8%] Built target Cabana_Halo_MPI_test_CUDA_UVM [ 8%] Built target Cabana_Distributor_MPI_test_CUDA_UVM [ 8%] Built target Cabana_Tuple_test_SERIAL [ 8%] Linking CXX executable Cabana_Slice_test_SERIAL /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp: In instantiation of 'void Test::checkFirstNeighborParallelFor(const TestListType&, const ViewType&, const ViewType&, int, std::size_t, std::size_t) [with TestListType = Test::TestNeighborList; ViewType = Kokkos::View; std::size_t = long unsigned int]': /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:450:30: required from 'void Test::checkFirstNeighborParallelForLambda(const ListType&, const TestListType&, int) [with ListType = Cabana::VerletList; TestListType = Test::TestNeighborList]' /tmp/tmpxft_000002a0_00000000-6_tstNeighborList_CUDA.cudafe1.stub.c:89:671: required from here /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:304:37: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 304 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~ /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:304:82: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 304 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~ ^ /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp: In instantiation of 'void Test::checkFirstNeighborParallelReduce(const TestListType&, const AoSoAType&, double, double, int, std::size_t, std::size_t) [with TestListType = Test::TestNeighborList; AoSoAType = Cabana::AoSoA, Kokkos::CudaSpace>; std::size_t = long unsigned int]': /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:611:33: required from 'void Test::checkFirstNeighborParallelReduceLambda(const ListType&, const TestListType&, const AoSoAType&) [with ListType = Cabana::VerletList; TestListType = Test::TestNeighborList; AoSoAType = Cabana::AoSoA, Kokkos::CudaSpace>]' /tmp/tmpxft_000002a0_00000000-6_tstNeighborList_CUDA.cudafe1.stub.c:123:944: required from here /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:376:37: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 376 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~ /var/jenkins/workspace/Cabana_PR-712/core/unit_test/neighbor_unit_test.hpp:376:82: error: comparison of integer expressions of different signedness: 'int' and 'const size_t' {aka 'const long unsigned int'} [-Werror=sign-compare] 376 | if ( N2_list_copy.neighbors( p, n ) >= begin && | ~~~~~~~~~~~~~~ ^ cc1plus: all warnings being treated as errors make[2]: *** [core/unit_test/CMakeFiles/Cabana_NeighborList_test_CUDA.dir/build.make:66: core/unit_test/CMakeFiles/Cabana_NeighborList_test_CUDA.dir/CUDA/tstNeighborList_CUDA.cpp.o] Error 1 make[1]: *** [CMakeFiles/Makefile2:1410: core/unit_test/CMakeFiles/Cabana_NeighborList_test_CUDA.dir/all] Error 2 [ 8%] Built target Cabana_Slice_test_SERIAL [ 8%] Linking CXX executable Cabana_DeepCopy_test_CUDA_UVM [ 8%] Built target Cabana_DeepCopy_test_CUDA_UVM make: *** [Makefile:144: all] Error 2 Post stage [Pipeline] sh + ccache --show-stats cache directory /tmp/ccache primary config /tmp/ccache/ccache.conf secondary config (readonly) /etc/ccache.conf stats updated Wed Apr 24 16:36:08 2024 stats zeroed Wed Apr 24 16:34:49 2024 cache hit (direct) 2 cache hit (preprocessed) 2 cache miss 15 cache hit rate 21.05 % compile failed 2 cleanups performed 0 files in cache 5783 cache size 4.6 GB max cache size 10.0 GB [Pipeline] } $ docker stop --time=1 c0f0ec2c391b416abcde0e0a15ad01fc56caa0ae23c8854abb21e2f512dd7eb6 $ docker rm -f --volumes c0f0ec2c391b416abcde0e0a15ad01fc56caa0ae23c8854abb21e2f512dd7eb6 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] } [Pipeline] // stage [Pipeline] } Failed in branch CUDA-11-NVCC-DEBUG Cancelling nested steps due to timeout [Pipeline] // node [Pipeline] } [Pipeline] // stage [Pipeline] } Failed in branch ROCM-4.5-HIPCC-DEBUG [Pipeline] // parallel [Pipeline] } [Pipeline] // stage [Pipeline] } [Pipeline] // timeout [Pipeline] } [Pipeline] // withEnv [Pipeline] End of Pipeline ERROR: script returned exit code 2 GitHub has been notified of this commit’s build result Finished: FAILURE