Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions numpy/core/src/common/npy_pycompat.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,20 @@

#include "numpy/npy_3kcompat.h"


/*
* In Python 3.10a7 (or b1), python started using the identity for the hash
* when a value is NaN. See https://bugs.python.org/issue43475
*/
#if PY_VERSION_HEX > 0x030a00a6
#define Npy_HashDouble _Py_HashDouble
#else
static NPY_INLINE Py_hash_t
Npy_HashDouble(PyObject *NPY_UNUSED(identity), double val)
{
return _Py_HashDouble(val);
}
#endif


#endif /* _NPY_COMPAT_H_ */
13 changes: 7 additions & 6 deletions numpy/core/src/multiarray/scalartypes.c.src
Original file line number Diff line number Diff line change
Expand Up @@ -3172,22 +3172,22 @@ static npy_hash_t
static npy_hash_t
@lname@_arrtype_hash(PyObject *obj)
{
return _Py_HashDouble((double) PyArrayScalar_VAL(obj, @name@));
return Npy_HashDouble(obj, (double)PyArrayScalar_VAL(obj, @name@));
}

/* borrowed from complex_hash */
static npy_hash_t
c@lname@_arrtype_hash(PyObject *obj)
{
npy_hash_t hashreal, hashimag, combined;
hashreal = _Py_HashDouble((double)
PyArrayScalar_VAL(obj, C@name@).real);
hashreal = Npy_HashDouble(
obj, (double)PyArrayScalar_VAL(obj, C@name@).real);

if (hashreal == -1) {
return -1;
}
hashimag = _Py_HashDouble((double)
PyArrayScalar_VAL(obj, C@name@).imag);
hashimag = Npy_HashDouble(
obj, (double)PyArrayScalar_VAL(obj, C@name@).imag);
if (hashimag == -1) {
return -1;
}
Expand All @@ -3202,7 +3202,8 @@ c@lname@_arrtype_hash(PyObject *obj)
static npy_hash_t
half_arrtype_hash(PyObject *obj)
{
return _Py_HashDouble(npy_half_to_double(PyArrayScalar_VAL(obj, Half)));
return Npy_HashDouble(
obj, npy_half_to_double(PyArrayScalar_VAL(obj, Half)));
}

static npy_hash_t
Expand Down
34 changes: 34 additions & 0 deletions numpy/core/tests/test_scalarmath.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,40 @@ def test_shift_all_bits(self, type_code, op):
assert_equal(res_arr, res_scl)


class TestHash:
@pytest.mark.parametrize("type_code", np.typecodes['AllInteger'])
def test_integer_hashes(self, type_code):
scalar = np.dtype(type_code).type
for i in range(128):
assert hash(i) == hash(scalar(i))

@pytest.mark.parametrize("type_code", np.typecodes['AllFloat'])
def test_float_and_complex_hashes(self, type_code):
scalar = np.dtype(type_code).type
for val in [np.pi, np.inf, 3, 6.]:
numpy_val = scalar(val)
# Cast back to Python, in case the NumPy scalar has less precision
if numpy_val.dtype.kind == 'c':
val = complex(numpy_val)
else:
val = float(numpy_val)
assert val == numpy_val
print(repr(numpy_val), repr(val))
assert hash(val) == hash(numpy_val)

if hash(float(np.nan)) != hash(float(np.nan)):
# If Python distinguises different NaNs we do so too (gh-18833)
assert hash(scalar(np.nan)) != hash(scalar(np.nan))

@pytest.mark.parametrize("type_code", np.typecodes['Complex'])
def test_complex_hashes(self, type_code):
# Test some complex valued hashes specifically:
scalar = np.dtype(type_code).type
for val in [np.pi+1j, np.inf-3j, 3j, 6.+1j]:
numpy_val = scalar(val)
assert hash(complex(numpy_val)) == hash(numpy_val)


@contextlib.contextmanager
def recursionlimit(n):
o = sys.getrecursionlimit()
Expand Down