save
[cdsspec-compiler.git] / benchmark / cliffc-hashtable / cliffc_hashtable.h
index 23ba7aec46d3b6286b466acd2a12a00c71aab2ea..ff5d9c32f793c1b2e9965e3c3d9d880729be846e 100644 (file)
@@ -796,7 +796,7 @@ friend class CHM;
                        if (++reprobe_cnt >= reprobe_limit(len) ||
                                K == TOMBSTONE) { // Found a Tombstone key, no more keys
                                newkvs = chm->resize(topmap, kvs);
-                               model_print("resize1\n");
+                               //model_print("resize1\n");
                                // Help along an existing copy
                                if (expVal != NULL) topmap->help_copy(newkvs);
                                return putIfMatch(topmap, newkvs, key_slot, val_slot, expVal);
@@ -812,7 +812,7 @@ friend class CHM;
                newkvs = chm->_newkvs.load(memory_order_acquire);
                if (newkvs == NULL &&
                        ((V == NULL && chm->table_full(reprobe_cnt, len)) || is_prime(V))) {
-                       model_print("resize2\n");
+                       //model_print("resize2\n");
                        newkvs = chm->resize(topmap, kvs); // Force the copy to start
                }