Pull request #712 updated Connecting to https://api.github.com using 476720/****** Obtained .jenkins from ce06eca019474868abf5730107fb324965cbbea4 [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 fetnat04 in /var/jenkins/workspace/Cabana_PR-712 [Pipeline] node [Pipeline] node Running on fetnat09 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 using credential Jenkins ORNL Cloning the remote Git repository Cloning with configured refspecs honoured and without tags 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 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 Fetching upstream changes from https://github.com/ECP-copa/Cabana.git using GIT_ASKPASS to set credentials > 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 Checking out Revision ce06eca019474868abf5730107fb324965cbbea4 (PR-712) Commit message: "Improves index handling between permutation vector and lcl with specified begin. Also fixes logic of checking against the correct partial list in unit tests" > git config core.sparsecheckout # timeout=10 > git checkout -f ce06eca019474868abf5730107fb324965cbbea4 # timeout=10 > git rev-list --no-walk 3ba783a84e90615e27c440ad4fc445a8a1427c4f # timeout=10 Checking out Revision ce06eca019474868abf5730107fb324965cbbea4 (PR-712) Commit message: "Improves index handling between permutation vector and lcl with specified begin. Also fixes logic of checking against the correct partial list in unit tests" [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] readFile [Pipeline] sh [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] readFile [Pipeline] sh + 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 ---> 0473462b06cb 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 ---> 0edd706e5616 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 ---> 326a52a0b156 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 ---> 7d53c02df15d Step 7/18 : ARG CMAKE_VERSION=3.26.3 ---> Using cache ---> 80dba0fc1583 Step 8/18 : ENV CMAKE_DIR=/opt/cmake ---> Using cache ---> b5622851efa1 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 ---> 19b32b9af6b8 Step 10/18 : ENV PATH=${CMAKE_DIR}/bin:$PATH ---> Using cache ---> 864a6844c4b2 Step 11/18 : ARG DPCPP_VERSION=2023.0.0 ---> Using cache ---> 97287cdecab6 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 ---> 398839fc4235 Step 13/18 : ENV DPCPP=/opt/intel/oneapi/compiler/${DPCPP_VERSION}/linux/bin-llvm/clang++ ---> Using cache ---> de4a3ed0d7c3 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 ---> 56ceaba90f8a Step 15/18 : ARG KOKKOS_VERSION=3.7.02 > 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 ce06eca019474868abf5730107fb324965cbbea4 # 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 ---> 3f0a296c6745 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 ---> 9e19caf8cff7 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/* ---> Running in ed73c2159ab8 ---> Running in bdcd7b068dcc failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error running hook #0: error running hook: exit status 1, stdout: , stderr: Auto-detected mode as 'legacy' nvidia-container-cli: initialization error: nvml error: driver/library version mismatch: unknown [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] } [Pipeline] // stage [Pipeline] } Failed in branch CUDA-11-NVCC-DEBUG Still waiting to schedule task There are no nodes with the label ‘rocm-docker&&vega&&AMD_Radeon_Instinct_MI60’ ---> Removed intermediate container bdcd7b068dcc ---> b1683be4cb2d 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 188d866ec09d ---> Removed intermediate container 188d866ec09d ---> 933bf6a53d98 Step 17/18 : ENV KOKKOS_DIR=/opt/kokkos ---> Running in e73fc06709a3 ---> Removed intermediate container e73fc06709a3 ---> 2617c2d76ccc 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 fe0344aedf8d :: initializing oneAPI environment ... dash: SH_VERSION = unknown args: Using "$@" for setvars.sh arguments: :: compiler -- latest :: debugger -- latest :: dev-utilities -- latest :: dpl -- latest :: tbb -- latest :: oneAPI environment initialized :: -- Setting default Kokkos CXX standard to 17 -- The CXX compiler identification is IntelLLVM 2023.0.0 -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /opt/intel/oneapi/compiler/2023.0.0/linux/bin-llvm/clang++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- 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.8s) -- Generating done (0.5s) -- 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 [ 10%] 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++: warning: clang++argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument]: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] clang++: warning: 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] 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)]] ^ [ 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] 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. 14 warnings generated. 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)]] ^ [ 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] 14 warnings generated. [ 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)]] ^ 14 warnings generated. [ 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] [ 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)]] ^ 14 warnings generated. [ 48%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_NumericTraits.cpp.o 14 warnings generated. clang++: warning: argument unused during compilation: '-Xsycl-target-backend =sm_70' [-Wunused-command-line-argument] [ 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] [ 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] [ 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] 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)]] ^ 14 warnings generated. [ 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)]] ^ [ 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] 14 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)]] ^ 14 warnings generated. [ 79%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/SYCL/Kokkos_SYCL_Instance.cpp.o 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)]] ^ 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: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)]] ^ 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)]] ^ /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. 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] 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)]] ^ 14 warnings generated. [ 86%] Building CXX object core/src/CMakeFiles/kokkoscore.dir/__/__/tpls/desul/src/Lock_Array_CUDA.cpp.o 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)]] ^ 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)]] ^ 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] 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] 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)]] ^ 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 ---> Removed intermediate container fe0344aedf8d ---> a7eb37d21f48 Successfully built a7eb37d21f48 Successfully tagged 5ce6f6af6a48bc15e45537142e4a0054fec361a4:latest [Pipeline] isUnix [Pipeline] withEnv [Pipeline] { [Pipeline] sh + docker inspect -f . 5ce6f6af6a48bc15e45537142e4a0054fec361a4 . [Pipeline] } [Pipeline] // withEnv [Pipeline] withDockerContainer fetnat09 seems to be running inside container ba645db59ffe47642024d2ecfbbc5bb83fd3f98f0634473d3dd1c7d42e195586 $ docker run -t -d -u 0:0 -v /tmp/ccache.kokkos:/tmp/ccache -w /var/jenkins/workspace/Cabana_PR-712 --volumes-from ba645db59ffe47642024d2ecfbbc5bb83fd3f98f0634473d3dd1c7d42e195586 -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 $ docker top 9fc0aef51b7e8d8b684348d0580b31cad6570bb2ee338bebe49493f8655fdbe7 -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 + . /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-3026da7a/script.sh.copy + [ -n ] + script=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy + [ -L /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy ] + basename -- /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy + [ setvars.sh = script.sh.copy ] + sourcer= + sourced_nm= + ps -p 49 -o comm= + sourced_sh=sh + _setvars_get_proc_name /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy + [ -n ] + script=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy + [ -L /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy ] + basename -- /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/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-3026da7a/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + : + printf %s /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/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-3026da7a/script.sh.copy: 371: [: Illegal number: + [ = /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution ] + get_script_path /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + script=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + [ -L /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution ] + command dirname -- /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi/setvars.sh: Bad substitution + script_dir=/var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi + [ -n ] + command cd /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 269: cd: can't cd to /var/jenkins/workspace/Cabana_PR-712@tmp/durable-3026da7a/script.sh.copy: 370: /opt/intel/oneapi + script_dir= + script_root= 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 Mar 27 19:13:28 2024 stats zeroed Wed Mar 27 19:13:28 2024 cache hit (direct) 0 cache hit (preprocessed) 0 cache miss 0 cache hit rate 0.00 % cleanups performed 0 files in cache 1617 cache size 6.1 GB max cache size 10.0 GB [Pipeline] } $ docker stop --time=1 9fc0aef51b7e8d8b684348d0580b31cad6570bb2ee338bebe49493f8655fdbe7 $ docker rm -f --volumes 9fc0aef51b7e8d8b684348d0580b31cad6570bb2ee338bebe49493f8655fdbe7 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] } [Pipeline] // stage [Pipeline] } Failed in branch SYCL 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 1 GitHub has been notified of this commit’s build result Finished: FAILURE