We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727072f commit 23f390eCopy full SHA for 23f390e
array_api_strict/tests/test_elementwise_functions.py
@@ -134,7 +134,6 @@ def _array_vals(dtypes):
134
for func_name, types in elementwise_function_input_types.items():
135
dtypes = _dtype_categories[types]
136
func = getattr(_elementwise_functions, func_name)
137
- print(f"{func_name=} {nargs(func)=} {types=} {dtypes=}")
138
139
for x in _array_vals(dtypes):
140
if nargs(func) == 2:
@@ -144,6 +143,8 @@ def _array_vals(dtypes):
144
143
assert r.device == x.device
145
146
else:
+ # `atanh` needs a slightly different input value from
147
+ # everyone else
148
if func_name == "atanh":
149
x -= 0.1
150
r = func(x)
0 commit comments