Skip to content
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

Multimethods for the random module #73

Merged
merged 4 commits into from Aug 28, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions unumpy/__init__.py
Expand Up @@ -152,6 +152,9 @@
"""
from ._multimethods import *
from .lib import c_, r_, s_
from . import linalg
from . import lib
from . import random

from ._version import get_versions

Expand Down
2 changes: 1 addition & 1 deletion unumpy/numpy_backend.py
@@ -1,6 +1,6 @@
import numpy as np
from uarray import Dispatchable, wrap_single_convertor
from unumpy import ufunc, ufunc_list, ndarray, dtype, linalg
from unumpy import ufunc, ufunc_list, ndarray, dtype
import unumpy
import functools

Expand Down
1 change: 1 addition & 0 deletions unumpy/random/__init__.py
@@ -0,0 +1 @@
from ._multimethods import *