| 201 | } |
| 202 | |
| 203 | static inline bool ggml_bitset_get(const ggml_bitset_t * bitset, size_t i) { |
| 204 | return !!(bitset[i >> BITSET_SHR] & (1u << (i & BITSET_MASK))); |
| 205 | } |
| 206 | |
| 207 | static inline void ggml_bitset_set(ggml_bitset_t * bitset, size_t i) { |
| 208 | bitset[i >> BITSET_SHR] |= (1u << (i & BITSET_MASK)); |
no outgoing calls
no test coverage detected