grammar: nit (layout)

This commit is contained in:
ochafik 2024-04-28 15:28:58 +01:00
parent 49f0faaa0e
commit d3425f5cf1

View file

@ -2326,9 +2326,9 @@ struct llama_context {
struct llama_control_vector cvec; struct llama_control_vector cvec;
// caching token pieces & their decoded codepoints. // caching token pieces & their decoded codepoints.
std::vector<std::string> token_pieces; std::vector<std::string> token_pieces;
std::vector<std::pair<std::vector<uint32_t>, std::vector<std::pair<std::vector<uint32_t>, llama_partial_utf8>>
llama_partial_utf8>> token_codepoints_without_partial_utf8_prefix; token_codepoints_without_partial_utf8_prefix;
#ifdef GGML_USE_MPI #ifdef GGML_USE_MPI
ggml_mpi_context * ctx_mpi = NULL; ggml_mpi_context * ctx_mpi = NULL;