llama_kv_cache_view_init method

llama_kv_cache_view llama_kv_cache_view_init(
  1. Pointer<llama_context> ctx,
  2. int n_max_seq
)

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,
  );
}