Skip to content

Commit

Permalink
refactor: remove numpy dispatcher (#87)
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman authored Sep 20, 2024
1 parent 65c1557 commit c8f711f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
4 changes: 1 addition & 3 deletions src/quaxed/numpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@

from jaxtyping import install_import_hook

from . import _core, _creation_functions, _dispatch, _higher_order
from . import _core, _creation_functions, _higher_order
from ._creation_functions import *
from ._dispatch import *
from ._higher_order import *

__all__: list[str] = []
__all__ += _core.__all__
__all__ += _higher_order.__all__
__all__ += _creation_functions.__all__
__all__ += _dispatch.__all__


# TODO: consolidate with ``_core.__getattr__``.
Expand Down
7 changes: 0 additions & 7 deletions src/quaxed/numpy/_dispatch.py

This file was deleted.

0 comments on commit c8f711f

Please sign in to comment.