We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c6ff6 commit 1837844Copy full SHA for 1837844
dpnp/dpnp_algo/dpnp_elementwise_common.py
@@ -37,6 +37,11 @@
37
BinaryElementwiseFunc,
38
UnaryElementwiseFunc,
39
)
40
+from dpctl.tensor._scalar_utils import (
41
+ _get_dtype,
42
+ _get_shape,
43
+ _validate_dtype,
44
+)
45
46
# pylint: disable=no-name-in-module
47
# TODO: revert to `import dpctl.tensor...`
@@ -46,11 +51,6 @@
51
import dpctl_ext.tensor._tensor_impl as dti
52
import dpnp
48
53
import dpnp.backend.extensions.vm._vm_impl as vmi
49
-from dpctl_ext.tensor._scalar_utils import (
50
- _get_dtype,
- _get_shape,
- _validate_dtype,
-)
54
from dpnp.dpnp_array import dpnp_array
55
from dpnp.dpnp_utils import get_usm_allocations
56
from dpnp.dpnp_utils.dpnp_utils_common import (
0 commit comments