llama_kv_cache_view_update method

void llama_kv_cache_view_update(
  1. Pointer<llama_context> ctx,
  2. Pointer<llama_kv_cache_view> view
)

Update the KV cache view structure with the current state of the KV cache. (use only for debugging purposes)

Implementation

void llama_kv_cache_view_update(
  ffi.Pointer<llama_context> ctx,
  ffi.Pointer<llama_kv_cache_view> view,
) {
  return _llama_kv_cache_view_update(
    ctx,
    view,
  );
}