llama_kv_cache_view_init method

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

General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

llama_kv_cache_view llama_kv_cache_view_init(
  ffi.Pointer<llama_context> ctx,
  int n_seq_max,
) {
  return _llama_kv_cache_view_init(
    ctx,
    n_seq_max,
  );
}