Class: LlamaCpp::LlamaKvCacheViewCell

Inherits:
Object
  • Object
show all
Defined in:
ext/llama_cpp/llama_cpp.c,
ext/llama_cpp/llama_cpp.c

Overview

“struct llama_kv_cache_view_cell” wrapper class

Instance Method Summary collapse

Instance Method Details

#posInteger

Returns:

  • (Integer)


1889
1890
1891
1892
# File 'ext/llama_cpp/llama_cpp.c', line 1889

static VALUE llama_kv_cache_view_cell_get_pos(VALUE self) {
  struct llama_kv_cache_view_cell* data = get_llama_kv_cache_view_cell(self);
  return INT2NUM(data->pos);
}