| 422 | } |
| 423 | |
| 424 | llama_kv_cache * llama_context::get_kv_self() { |
| 425 | llama_kv_cache * kv_self = static_cast<llama_kv_cache *>(memory.get()); |
| 426 | return kv_self; |
| 427 | } |
| 428 | |
| 429 | const llama_kv_cache * llama_context::get_kv_self() const { |
| 430 | llama_kv_cache * kv_self = static_cast<llama_kv_cache *>(memory.get()); |
no test coverage detected