-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove legacy correlate, dot, and multiply from backend #2183
base: correlate
Are you sure you want to change the base?
Remove legacy correlate, dot, and multiply from backend #2183
Conversation
View rendered docs @ https://intelpython.github.io/dpnp/pull/2183/index.html |
0d6a4e0
to
9083eeb
Compare
c0f0457
to
46762fa
Compare
9083eeb
to
8256472
Compare
46762fa
to
2f51c9e
Compare
8256472
to
5f793ab
Compare
d64c029
to
fd2a20d
Compare
5f793ab
to
2514037
Compare
fd2a20d
to
e3feeef
Compare
e3feeef
to
ca1b3ef
Compare
parameters */ | ||
DPNP_FN_ERF, /**< Used in scipy.special.erf impl */ | ||
DPNP_FN_ERF_EXT, /**< Used in scipy.special.erf impl, requires extra | ||
parameters */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DPNP_FN_MULTIPLY
below can be removed as well.
@@ -62,7 +62,6 @@ include "dpnp_algo_indexing.pxi" | |||
include "dpnp_algo_mathematical.pxi" | |||
include "dpnp_algo_sorting.pxi" | |||
include "dpnp_algo_special.pxi" | |||
include "dpnp_algo_statistics.pxi" | |||
|
|||
|
|||
cpdef dpnp_queue_initialize(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems dpnp_queue_initialize
can be removed as well.
@@ -34,7 +34,6 @@ from dpnp.dpnp_utils.dpnp_algo_utils cimport dpnp_descriptor | |||
cdef extern from "dpnp_iface_fptr.hpp" namespace "DPNPFuncName": # need this namespace for Enum import | |||
cdef enum DPNPFuncName "DPNPFuncName": | |||
DPNP_FN_CHOOSE_EXT | |||
DPNP_FN_CORRELATE_EXT | |||
DPNP_FN_ERF_EXT | |||
DPNP_FN_MODF_EXT | |||
DPNP_FN_PARTITION_EXT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fptr_2in_1out_t
at the bottom of this file can be removed as well.
Removing
dot
andmultiply
implementations from backend as no longer needed.Depends on PR #2183