From bd8b9f804b7ffd1f17c986d399874083320fa527 Mon Sep 17 00:00:00 2001 From: Alexander-Makaryev <40917969+Alexander-Makaryev@users.noreply.github.com> Date: Tue, 8 Dec 2020 17:05:40 +0300 Subject: [PATCH] dpctl renaming (#380) * dpctl renaming * up dpctl version in recipe --- conda-recipe/meta.yaml | 4 ++-- dpnp/backend/queue_sycl.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 1ae5b6d8897..193c1284e6d 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -10,11 +10,11 @@ requirements: - setuptools - numpy-devel >=1.18 - cython - - dpctl >=0.3.7 + - dpctl >=0.5 - mkl-devel >=2021.1b10 run: - python - - dpctl >=0.3.7 + - dpctl >=0.5 - dpcpp_cpp_rt >=2021.1b10 - mkl >=2021.1b10 diff --git a/dpnp/backend/queue_sycl.hpp b/dpnp/backend/queue_sycl.hpp index 4d0b63f4852..621c53d40a5 100644 --- a/dpnp/backend/queue_sycl.hpp +++ b/dpnp/backend/queue_sycl.hpp @@ -41,7 +41,7 @@ #include #if !defined(DPNP_LOCAL_QUEUE) -#include +#include #endif #include "backend_pstl.hpp" // this header must be included after @@ -128,7 +128,7 @@ class backend_sycl return *queue; #else // temporal solution. Started from Sept-2020 - DPPLSyclQueueRef DPCtrl_queue = DPPLQueueMgr_GetCurrentQueue(); + DPCTLSyclQueueRef DPCtrl_queue = DPCTLQueueMgr_GetCurrentQueue(); return *(reinterpret_cast(DPCtrl_queue)); #endif }