Skip to content

Commit e15b751

Browse files
Clean up __all__ in dpnp.scipy submodule
1 parent 2cd50c4 commit e15b751

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

dpnp/scipy/linalg/_decomp_lu.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@
5151
dpnp_lu_solve,
5252
)
5353

54-
__all__ = [
55-
"lu_factor",
56-
"lu_solve",
57-
]
58-
5954

6055
def lu_factor(a, overwrite_a=False, check_finite=True):
6156
"""

dpnp/scipy/linalg/_utils.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@
5151
from dpnp.dpnp_utils import get_usm_allocations
5252
from dpnp.linalg.dpnp_utils_linalg import _common_type
5353

54-
__all__ = [
55-
"dpnp_lu_factor",
56-
"dpnp_lu_solve",
57-
]
58-
5954

6055
def _align_lu_solve_broadcast(lu, b):
6156
"""Align LU and RHS batch dimensions with SciPy-like rules."""

dpnp/scipy/special/_erf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@
4444
import dpnp.backend.extensions.ufunc._ufunc_impl as ufi
4545
from dpnp.dpnp_algo.dpnp_elementwise_common import DPNPUnaryFunc
4646

47-
__all__ = ["erf", "erfc", "erfcinv", "erfcx", "erfinv"]
48-
4947

5048
# pylint: disable=too-few-public-methods
5149
class DPNPErf(DPNPUnaryFunc):

0 commit comments

Comments
 (0)