diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-22 20:04:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 20:04:20 +0300 |
commit | 6ff13987ad1a9519bee13dd98b6a21cd98979aab (patch) | |
tree | e085c9fbac76f57dbbef6233b42eb981352e9925 /examples/lookahead/lookahead.cpp | |
parent | 38c03478a37e460ecd3a21155b338a83bfed7f90 (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.cpp | 2 |
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/ |