| 6113 | } |
| 6114 | |
| 6115 | void ggml_hash_set_reset(struct ggml_hash_set * hash_set) { |
| 6116 | memset(hash_set->used, 0, sizeof(ggml_bitset_t) * ggml_bitset_size(hash_set->size)); |
| 6117 | } |
| 6118 | |
| 6119 | void ggml_hash_set_free(struct ggml_hash_set * hash_set) { |
| 6120 | GGML_FREE(hash_set->used); |
no test coverage detected