Skip to content

Commit fb49802

Browse files
authored
Merge pull request #184 from honno/fix-complex-stype
More torch fixes
2 parents 1a73804 + c76aaee commit fb49802

15 files changed

+264
-193
lines changed

array_api_tests/_array_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __repr__(self):
6262
]
6363
_constants = ["e", "inf", "nan", "pi"]
6464
_funcs = [f.__name__ for funcs in stubs.category_to_funcs.values() for f in funcs]
65-
_funcs += ["take", "isdtype"] # TODO: bump spec and update array-api-tests to new spec layout
65+
_funcs += ["take", "isdtype", "conj", "imag", "real"] # TODO: bump spec and update array-api-tests to new spec layout
6666
_top_level_attrs = _dtypes + _constants + _funcs + stubs.EXTENSIONS
6767

6868
for attr in _top_level_attrs:

0 commit comments

Comments
 (0)