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

Test explicitly that constants are Python scalars #14

Closed
pmeier opened this issue Jun 10, 2021 · 0 comments · Fixed by #52
Closed

Test explicitly that constants are Python scalars #14

pmeier opened this issue Jun 10, 2021 · 0 comments · Fixed by #52

Comments

@pmeier
Copy link
Contributor

pmeier commented Jun 10, 2021

data-apis/array-api#169 clarified that the constants e, inf, nan, and pi should be Python scalars and not just behave like one. Our current tests

def test_e():
# Check that e acts as a scalar
E = full((1,), e, dtype=float64)
# 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"

don't account for that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant