Skip to content

Commit 8e69840

Browse files
committed
fix cimport utils
1 parent 85bd2b8 commit 8e69840

10 files changed

+10
-11
lines changed

dpnp/backend.pyx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ and the rest of the library
3434

3535
import dpnp.config as config
3636
import numpy
37-
from dpnp.dpnp_utils cimport checker_throw_type_error, checker_throw_runtime_error, get_shape_dtype, copy_values_to_dparray
38-
from cython.operator cimport dereference, preincrement
37+
3938
cimport cpython
4039
cimport dpnp.dpnp_utils as utils
4140
cimport numpy

dpnp/backend_bitwise.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the rest of the library
3333
"""
3434

3535

36-
from dpnp.dpnp_utils cimport checker_throw_type_error
36+
from dpnp.dpnp_utils cimport *
3737

3838

3939
__all__ += [

dpnp/backend_counting.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ and the rest of the library
3434

3535

3636
import numpy
37-
from dpnp.dpnp_utils cimport checker_throw_type_error, normalize_axis
37+
from dpnp.dpnp_utils cimport *
3838

3939

4040
__all__ += [

dpnp/backend_linearalgebra.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ and the rest of the library
3232
3333
"""
3434

35-
from dpnp.dpnp_utils cimport checker_throw_type_error, normalize_axis
35+
from dpnp.dpnp_utils cimport *
3636
cimport numpy
3737

3838

dpnp/backend_logic.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the rest of the library
3333
"""
3434

3535

36-
from dpnp.dpnp_utils cimport checker_throw_type_error
36+
from dpnp.dpnp_utils cimport *
3737

3838

3939
__all__ += [

dpnp/backend_manipulation.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the rest of the library
3333
"""
3434

3535

36-
from dpnp.dpnp_utils cimport checker_throw_type_error, normalize_axis
36+
from dpnp.dpnp_utils cimport *
3737

3838

3939
__all__ += [

dpnp/backend_searching.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ from libcpp.string cimport string
3636
import cython
3737
import numpy
3838

39-
from dpnp.dpnp_utils cimport checker_throw_type_error, normalize_axis
39+
from dpnp.dpnp_utils cimport *
4040

4141
__all__ += [
4242
"dpnp_argmax",

dpnp/backend_sorting.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ and the rest of the library
3434

3535

3636
import numpy
37-
from dpnp.dpnp_utils cimport checker_throw_type_error, normalize_axis
37+
from dpnp.dpnp_utils cimport *
3838

3939

4040
__all__ += [

dpnp/backend_trigonometric.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the rest of the library
3333
"""
3434

3535

36-
from dpnp.dpnp_utils cimport checker_throw_type_error
36+
from dpnp.dpnp_utils cimport *
3737

3838

3939
__all__ += [

dpnp/linalg/linalg.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ and the rest of the library
3232
3333
"""
3434

35-
from dpnp.dpnp_utils cimport checker_throw_type_error
35+
from dpnp.dpnp_utils cimport *
3636
from dpnp.backend cimport *
3737
from dpnp.dparray cimport dparray, dparray_shape_type
3838
import numpy

0 commit comments

Comments
 (0)