summaryrefslogtreecommitdiff
path: root/examples/lookahead/lookahead.cpp
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-05-22 20:04:20 +0300
committerGitHub <noreply@github.com>2024-05-22 20:04:20 +0300
commit6ff13987ad1a9519bee13dd98b6a21cd98979aab (patch)
treee085c9fbac76f57dbbef6233b42eb981352e9925 /examples/lookahead/lookahead.cpp
parent38c03478a37e460ecd3a21155b338a83bfed7f90 (diff)
common : normalize naming style (#7462)
* common : normalize naming style ggml-ci * common : match declaration / definition order * zig : try to fix build
Diffstat (limited to 'examples/lookahead/lookahead.cpp')
-rw-r--r--examples/lookahead/lookahead.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lookahead/lookahead.cpp b/examples/lookahead/lookahead.cpp
index 9c3540b2..54f060a8 100644
--- a/examples/lookahead/lookahead.cpp
+++ b/examples/lookahead/lookahead.cpp
@@ -174,7 +174,7 @@ int main(int argc, char ** argv) {
// debug
if (dump_kv_cache) {
llama_kv_cache_view_update(ctx, &kvc_view);
- dump_kv_cache_view_seqs(kvc_view, 40);
+ llama_kv_cache_dump_view_seqs(kvc_view, 40);
}
// build the mask from https://lmsys.org/blog/2023-11-21-lookahead-decoding/