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/batched | |
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/batched')
-rw-r--r-- | examples/batched/batched.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/batched/batched.cpp b/examples/batched/batched.cpp index be30d20b..591bc6e5 100644 --- a/examples/batched/batched.cpp +++ b/examples/batched/batched.cpp @@ -48,7 +48,7 @@ int main(int argc, char ** argv) { params.prompt = "Hello my name is"; } - process_escapes(params.prompt); + string_process_escapes(params.prompt); // init LLM |