소스 검색

llama : update llama_decode_internal ref [no ci] (#11840)

This commit updates the comment in llama_kv_cache.h to reflect the
change of the function name from llama_decode_internal to
llama_decode_impl.
Daniel Bevenius 11 달 전
부모
커밋
3e69319772
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/llama-kv-cache.h

+ 1 - 1
src/llama-kv-cache.h

@@ -37,7 +37,7 @@ struct llama_kv_cache {
     bool can_shift = false;
     bool can_shift = false;
 
 
     // Note: The value of head isn't only used to optimize searching
     // Note: The value of head isn't only used to optimize searching
-    // for a free KV slot. llama_decode_internal also uses it, so it
+    // for a free KV slot. llama_decode_impl also uses it, so it
     // cannot be freely changed after a slot has been allocated.
     // cannot be freely changed after a slot has been allocated.
     uint32_t head = 0;
     uint32_t head = 0;
     uint32_t size = 0;
     uint32_t size = 0;