We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34fe62 commit d08ca2fCopy full SHA for d08ca2f
pandas/_libs/src/klib/khash_python.h
@@ -16,6 +16,11 @@
16
// GH 13436 showed that _Py_HashDouble doesn't work well with khash
17
// GH 28303 showed, that the simple xoring-version isn't good enough
18
// See GH 36729 for evaluation of the currently used murmur2-hash version
19
+// An interesting alternative to expensive murmur2-hash would be to change
20
+// the probing strategy and use e.g. the probing strategy from CPython's
21
+// implementation of dicts, which shines for smaller sizes but is more
22
+// predisposed to superlinear running times (see GH 36729 for comparison)
23
+
24
25
khint64_t PANDAS_INLINE asint64(double key) {
26
khint64_t val;
0 commit comments