You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
np.array(123, dtype='uint64') >> 0
Traceback (most recent call last):
File "", line 1, in
TypeError: ufunc 'right_shift' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
np.version.version
'1.8.0.dev-4a9d23b'
platform.architecture()
('64bit', 'ELF')
The text was updated successfully, but these errors were encountered:
On 1.26 this raises a (conceptually correct) TypeError("ufunc 'right_shift' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule 'safe'"). Closing.
#64 bit ubuntu
np.array(123, dtype='uint64') >> np.array(1, dtype='uint64')
61
np.array(123, dtype='uint64') >> 0
Traceback (most recent call last):
File "", line 1, in
TypeError: ufunc 'right_shift' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
np.version.version
'1.8.0.dev-4a9d23b'
platform.architecture()
('64bit', 'ELF')
The text was updated successfully, but these errors were encountered: