Skip to content

Commit 6d17c49

Browse files
Apply review comments
1 parent ef3a849 commit 6d17c49

File tree

3 files changed

+0
-30
lines changed

3 files changed

+0
-30
lines changed

dpnp/backend/include/dpnp_iface_fptr.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ enum class DPNPFuncName : size_t
7272
DPNP_FN_MODF, /**< Used in numpy.modf() impl */
7373
DPNP_FN_MODF_EXT, /**< Used in numpy.modf() impl, requires extra parameters
7474
*/
75-
DPNP_FN_MULTIPLY, /**< Used in numpy.multiply() impl */
7675
DPNP_FN_ONES, /**< Used in numpy.ones() impl */
7776
DPNP_FN_ONES_LIKE, /**< Used in numpy.ones_like() impl */
7877
DPNP_FN_PARTITION, /**< Used in numpy.partition() impl */

dpnp/dpnp_algo/dpnp_algo.pxd

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -115,18 +115,6 @@ ctypedef c_dpctl.DPCTLSyclEventRef(*fptr_1in_1out_strides_t)(c_dpctl.DPCTLSyclQu
115115
const shape_elem_type * , const shape_elem_type * ,
116116
const long * ,
117117
const c_dpctl.DPCTLEventVectorRef)
118-
ctypedef c_dpctl.DPCTLSyclEventRef(*fptr_2in_1out_t)(c_dpctl.DPCTLSyclQueueRef,
119-
void * ,
120-
const void * ,
121-
const size_t,
122-
const shape_elem_type * ,
123-
const size_t,
124-
const void *,
125-
const size_t,
126-
const shape_elem_type * ,
127-
const size_t,
128-
const long * ,
129-
const c_dpctl.DPCTLEventVectorRef)
130118

131119

132120
"""

dpnp/dpnp_algo/dpnp_algo.pyx

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ import operator
5454
import numpy
5555

5656
__all__ = [
57-
"dpnp_queue_initialize",
5857
]
5958

6059

@@ -64,22 +63,6 @@ include "dpnp_algo_sorting.pxi"
6463
include "dpnp_algo_special.pxi"
6564

6665

67-
cpdef dpnp_queue_initialize():
68-
"""
69-
Initialize SYCL queue which will be used for any library operations.
70-
It takes visible time and needs to be done in the module loading procedure.
71-
"""
72-
cdef time_t seed_from_time
73-
74-
dpnp_python_constants_initialize_c(< void*> None,
75-
< void * > dpnp.nan)
76-
77-
# TODO:
78-
# choose seed number as is in numpy
79-
seed_from_time = time(NULL)
80-
dpnp_rng_srand_c(< size_t > seed_from_time)
81-
82-
8366
"""
8467
Internal functions
8568
"""

0 commit comments

Comments
 (0)