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
72
72
DPNP_FN_MODF, /* *< Used in numpy.modf() impl */
73
73
DPNP_FN_MODF_EXT, /* *< Used in numpy.modf() impl, requires extra parameters
74
74
*/
75
- DPNP_FN_MULTIPLY, /* *< Used in numpy.multiply() impl */
76
75
DPNP_FN_ONES, /* *< Used in numpy.ones() impl */
77
76
DPNP_FN_ONES_LIKE, /* *< Used in numpy.ones_like() impl */
78
77
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
115
115
const shape_elem_type * , const shape_elem_type * ,
116
116
const long * ,
117
117
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)
130
118
131
119
132
120
"""
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ import operator
54
54
import numpy
55
55
56
56
__all__ = [
57
- " dpnp_queue_initialize" ,
58
57
]
59
58
60
59
@@ -64,22 +63,6 @@ include "dpnp_algo_sorting.pxi"
64
63
include " dpnp_algo_special.pxi"
65
64
66
65
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
-
83
66
"""
84
67
Internal functions
85
68
"""
You can’t perform that action at this time.
0 commit comments