Class: LlamaCpp::LlamaKvCacheViewCell
- Inherits:
-
Object
- Object
- LlamaCpp::LlamaKvCacheViewCell
- 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
#pos ⇒ Integer
1856 1857 1858 1859 |
# File 'ext/llama_cpp/llama_cpp.c', line 1856
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);
}
|