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 d906712 commit 1f91408Copy full SHA for 1f91408
array_api_tests/dtype_helpers.py
@@ -341,14 +341,14 @@ def result_type(*dtypes: DataType):
341
'__ge__': 'greater_equal',
342
'__gt__': 'greater',
343
'__le__': 'less_equal',
344
- '__lshift__': 'bitwise_left_shift',
345
'__lt__': 'less',
346
# '__matmul__': 'matmul', # TODO: support matmul
347
'__mod__': 'remainder',
348
'__mul__': 'multiply',
349
'__ne__': 'not_equal',
350
'__or__': 'bitwise_or',
351
'__pow__': 'pow',
+ '__lshift__': 'bitwise_left_shift',
352
'__rshift__': 'bitwise_right_shift',
353
'__sub__': 'subtract',
354
'__truediv__': 'divide',
0 commit comments