mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
12 lines
432 B
Cython
12 lines
432 B
Cython
from libc.stdint cimport uint64_t, int64_t
|
|
|
|
|
|
cdef extern from "../include/MurmurHash3.h":
|
|
void MurmurHash3_x86_32(void * key, uint64_t len, uint64_t seed, void* out)
|
|
void MurmurHash3_x86_128(void * key, uint64_t len, uint64_t seed, void* out)
|
|
|
|
|
|
cdef extern from "../include/MurmurHash2.h":
|
|
uint64_t MurmurHash64A(void * key, uint64_t len, int64_t seed)
|
|
uint64_t MurmurHash64B(void * key, uint64_t len, int64_t seed)
|