This blog is about the code structure analysis of llama.cpp project.
Compilation
This project supports Makefile and CMakeLists.txt, while I don’t understand Makefile well, I’ll use the latter one to help understand the compilation of Make.
The source file to compile llama-cli is examples/main/main.cpp. It shows the execution file depends on common and llama libraries.
We could easily found the llama library in src/CMakeLists.txt, it is built by the most important backend source file src/llama.cpp, and the public header file include/llama.h. I may analyze the how the backend works later, while in this blog, I mainly focus the logic of llama-cli execution, and then I want to modify it. The library common is in the folder common, from the CMake code we can know it contains basic functions of the project.