Skip to content

Commit

Permalink
dpctl renaming (#380)
Browse files Browse the repository at this point in the history
* dpctl renaming

* up dpctl version in recipe
  • Loading branch information
Alexander-Makaryev authored Dec 8, 2020
1 parent 2b75de2 commit bd8b9f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions dpnp/backend/queue_sycl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include <ctime>

#if !defined(DPNP_LOCAL_QUEUE)
#include <dppl_sycl_queue_manager.h>
#include <dpctl_sycl_queue_manager.h>
#endif

#include "backend_pstl.hpp" // this header must be included after <mkl.hpp>
Expand Down Expand Up @@ -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<cl::sycl::queue*>(DPCtrl_queue));
#endif
}
Expand Down

0 comments on commit bd8b9f8

Please sign in to comment.