File tree Expand file tree Collapse file tree 3 files changed +0
-30
lines changed Expand file tree Collapse file tree 3 files changed +0
-30
lines changed Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff 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"""
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ import operator
5454import numpy
5555
5656__all__ = [
57- " dpnp_queue_initialize" ,
5857]
5958
6059
@@ -64,22 +63,6 @@ include "dpnp_algo_sorting.pxi"
6463include " 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"""
8467Internal functions
8568"""
You can’t perform that action at this time.
0 commit comments