llama_kv_cache_view_init method
Create an empty KV cache view. (use only for debugging purposes)
Implementation
llama_kv_cache_view llama_kv_cache_view_init(
ffi.Pointer<llama_context> ctx,
int n_max_seq,
) {
return _llama_kv_cache_view_init(
ctx,
n_max_seq,
);
}