| 15 | using namespace mllm::prefix_cache; // NOLINT |
| 16 | |
| 17 | static RadixTreeNodeKey makeKey(std::initializer_list<int64_t> il) { |
| 18 | return RadixTreeNodeKey(VectorView<int64_t>(std::vector<int64_t>(il))); |
| 19 | } |
| 20 | |
| 21 | static RadixTreeNodeValue makeValue(size_t len, int blocks) { |
| 22 | RadixTreeNodeValue v; |