We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8d34f commit b1f04aeCopy full SHA for b1f04ae
src/native/containers/dn-simdhash-test.c
@@ -9,6 +9,7 @@
9
10
#include "dn-vector.h"
11
#include "dn-simdhash.h"
12
+#include "dn-simdhash-utils.h"
13
14
typedef struct {
15
int i;
@@ -72,6 +73,8 @@ int main () {
72
73
dn_simdhash_instance_data(instance_data_t, test).f = 3.14f;
74
dn_simdhash_instance_data(instance_data_t, test).i = 42;
75
76
+ printf("hash(test)=%u\n", MurmurHash3_32_ptr(test, 0));
77
+
78
dn_vector_t *keys = dn_vector_alloc(sizeof(DN_SIMDHASH_KEY_T)),
79
*values = dn_vector_alloc(sizeof(DN_SIMDHASH_VALUE_T));
80
// Ensure consistency between runs
0 commit comments