You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

llama.native.llamakvcacheviewcell.md 592 B

12345678910111213141516171819202122
  1. # LLamaKvCacheViewCell
  2. Namespace: LLama.Native
  3. Information associated with an individual cell in the KV cache view (llama_kv_cache_view_cell)
  4. ```csharp
  5. public struct LLamaKvCacheViewCell
  6. ```
  7. Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ValueType](https://docs.microsoft.com/en-us/dotnet/api/system.valuetype) → [LLamaKvCacheViewCell](./llama.native.llamakvcacheviewcell.md)
  8. ## Fields
  9. ### **pos**
  10. The position for this cell. Takes KV cache shifts into account.
  11. May be negative if the cell is not populated.
  12. ```csharp
  13. public LLamaPos pos;
  14. ```