MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / ggml_bitset_set

Function ggml_bitset_set

external/ggml/src/ggml-impl.h:213–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213static inline void ggml_bitset_set(ggml_bitset_t * bitset, size_t i) {
214 bitset[i >> BITSET_SHR] |= (1u << (i & BITSET_MASK));
215}
216
217static inline void ggml_bitset_clear(ggml_bitset_t * bitset, size_t i) {
218 bitset[i >> BITSET_SHR] &= ~(1u << (i & BITSET_MASK));

Callers 4

ggml_visit_parents_graphFunction · 0.85
ggml_hash_insertFunction · 0.85
ggml_hash_find_or_insertFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected