-
Notifications
You must be signed in to change notification settings - Fork 45
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
Change scope of test_constants.py
#52
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,51 @@ | ||
from ._array_module import (e, inf, nan, pi, equal, isnan, abs, full, | ||
float64, less, isinf, greater, all) | ||
from .array_helpers import one | ||
import math | ||
from typing import Any, SupportsFloat | ||
|
||
def test_e(): | ||
# Check that e acts as a scalar | ||
E = full((1,), e, dtype=float64) | ||
import pytest | ||
|
||
# We don't require any accuracy. This is just a smoke test to check that | ||
# 'e' is actually the constant e. | ||
assert all(less(abs(E - 2.71), one((1,), dtype=float64))), "e is not the constant e" | ||
from . import dtype_helpers as dh | ||
from ._array_module import mod as xp | ||
from .typing import Array | ||
|
||
def test_pi(): | ||
# Check that pi acts as a scalar | ||
PI = full((1,), pi, dtype=float64) | ||
|
||
# We don't require any accuracy. This is just a smoke test to check that | ||
# 'pi' is actually the constant π. | ||
assert all(less(abs(PI - 3.14), one((1,), dtype=float64))), "pi is not the constant π" | ||
def assert_scalar_float(name: str, c: Any): | ||
assert isinstance(c, SupportsFloat), f"{name}={c!r} does not look like a float" | ||
|
||
|
||
def assert_0d_float(name: str, x: Array): | ||
assert dh.is_float_dtype( | ||
x.dtype | ||
), f"xp.asarray(xp.{name})={x!r}, but should have float dtype" | ||
|
||
|
||
@pytest.mark.parametrize("name, n", [("e", math.e), ("pi", math.pi)]) | ||
def test_irrational_numbers(name, n): | ||
assert hasattr(xp, name) | ||
c = getattr(xp, name) | ||
assert_scalar_float(name, c) | ||
floor = math.floor(n) | ||
assert c > floor, f"xp.{name}={c!r} <= {floor}" | ||
ceil = math.ceil(n) | ||
assert c < ceil, f"xp.{name}={c!r} >= {ceil}" | ||
x = xp.asarray(c) | ||
assert_0d_float("name", x) | ||
|
||
|
||
def test_inf(): | ||
# Check that inf acts as a scalar | ||
INF = full((1,), inf, dtype=float64) | ||
zero = full((1,), 0.0, dtype=float64) | ||
assert hasattr(xp, "inf") | ||
assert_scalar_float("inf", xp.inf) | ||
assert math.isinf(xp.inf) | ||
assert xp.inf > 0, "xp.inf not greater than 0" | ||
x = xp.asarray(xp.inf) | ||
assert_0d_float("inf", x) | ||
assert xp.isinf(x), "xp.isinf(xp.asarray(xp.inf))=False" | ||
|
||
assert all(isinf(INF)), "inf is not infinity" | ||
assert all(greater(INF, zero)), "inf is not positive" | ||
|
||
def test_nan(): | ||
# Check that nan acts as a scalar | ||
NAN = full((1,), nan, dtype=float64) | ||
|
||
assert all(isnan(NAN)), "nan is not Not a Number" | ||
assert not all(equal(NAN, NAN)), "nan should be unequal to itself" | ||
assert hasattr(xp, "nan") | ||
assert_scalar_float("nan", xp.nan) | ||
assert math.isnan(xp.nan) | ||
assert xp.nan != xp.nan, "xp.nan should not have equality with itself" | ||
x = xp.asarray(xp.nan) | ||
assert_0d_float("nan", x) | ||
assert xp.isnan(x), "xp.isnan(xp.asarray(xp.nan))=False" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be xp.e and xp.pi? Although why not just parameterize
name
and lookupgetattr(xp, name)
in the test?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah no, coz I'm using Python's
math
just to get the rough approximations (i.e. to test thexp
constants are at least in-between the floor and ceil of the respectivemath
constants).