Skip to content

BUG: random: randint returns integers, not floats #37

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

Merged
merged 1 commit into from
Feb 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions torch_np/random.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,19 @@

_default_dtype = _default_float_type.torch_dtype

__all__ = ["seed", "random_sample", "sample", "random", "rand", "randn", "normal"]
__all__ = [
"seed",
"random_sample",
"sample",
"random",
"rand",
"randn",
"normal",
"choice",
"randint",
"shuffle",
"uniform",
]


def array_or_scalar(values, py_type=float):
Expand Down Expand Up @@ -79,7 +91,7 @@ def randint(low, high=None, size=None):
if high is None:
low, high = 0, low
values = torch.randint(low, high, size=size)
return array_or_scalar(values)
return array_or_scalar(values, int)


def choice(a, size=None, replace=True, p=None):
Expand Down