Skip to content

Commit f05e0a8

Browse files
committed
TST: add numpy/lib/tests/test_type_check.py
NumPy commit 2aa0bf6973b709724624db8e8a51d8efbdeb5d22 (Feb 2023)
1 parent c063e33 commit f05e0a8

File tree

2 files changed

+511
-0
lines changed

2 files changed

+511
-0
lines changed

torch_np/_wrapper.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,6 +1190,20 @@ def array_equiv(a1, a2):
11901190
return _impl.tensor_equal(a1_t, a2_t)
11911191

11921192

1193+
def common_type():
1194+
raise NotImplementedError
1195+
1196+
def mintypecode():
1197+
raise NotImplementedError
1198+
1199+
def nan_to_num():
1200+
raise NotImplementedError
1201+
1202+
def asfarray():
1203+
raise NotImplementedError
1204+
1205+
1206+
11931207
###### mapping from numpy API objects to wrappers from this module ######
11941208

11951209
# All is in the mapping dict in _mapping.py

0 commit comments

Comments
 (0)