llama-batch.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #pragma once
  2. #include "llama.h"
  3. #include "llama-cparams.h"
  4. #include <array>
  5. #include <vector>
  6. #include <set>
  7. #include <bitset>
  8. #include <unordered_map>
  9. // keep this struct lightweight
  10. // it points to data in `llama_batch_allocr`
  11. struct llama_ubatch {
  12. bool equal_seqs;
  13. // TODO: whole_seqs for embeddings?
  14. uint32_t n_tokens; // total tokens (n_seq_tokens * n_seqs)
  15. uint32_t n_seq_tokens; // tokens per sequence set
  16. uint32_t n_seqs; // sequence sets in the ubatch
  17. uint32_t n_seqs_unq; // unique sequence ids in the ubatch
  18. // seq_id_unq: unique sequence ids in the ubatch
  19. // seq_idx: indices of the unique sequence ids in the ubatch in [0, n_seqs_unq)
  20. // used for extracting sequence pooled embeddings
  21. // // size | idx | val
  22. llama_token * token; // [n_tokens] | i | id, token
  23. float * embd; // [n_embd, n_tokens] | i | embd
  24. llama_pos * pos; // [n_tokens] | i | pos
  25. int32_t * n_seq_id; // [n_tokens] | i | -
  26. llama_seq_id ** seq_id; // [n_tokens] | s | s0, s1, seq_id
  27. llama_seq_id * seq_id_unq; // [n_seqs_unq] | s | seq_id
  28. int32_t * seq_idx; // [LLAMA_MAX_SEQ] | - | seq_idx
  29. int8_t * output; // [n_tokens] | i | -
  30. };
  31. // a helper for sanitizing, fulfilling and splitting a batch
  32. class llama_batch_allocr {
  33. public:
  34. llama_batch_allocr(uint32_t n_pos_per_embd);
  35. // sanitize and auto-gen missing data in the input batch
  36. // memory is optional. if provided will be used to check for sequence continuity and to determine the positions
  37. bool init(
  38. const llama_batch & batch_inp,
  39. const llama_vocab & vocab,
  40. const llama_memory_i * memory,
  41. uint32_t n_embd,
  42. bool output_all);
  43. const llama_batch & get_batch() const;
  44. uint32_t get_n_tokens() const;
  45. uint32_t get_n_outputs() const;
  46. uint32_t get_n_used() const;
  47. // the array of output indices in the order they were encountered during the ubatch splitting
  48. std::vector<int32_t> & get_out_ids();
  49. // min/max positions of each sequence in the current ubatch
  50. llama_pos seq_pos_min(llama_seq_id seq_id) const;
  51. llama_pos seq_pos_max(llama_seq_id seq_id) const;
  52. // call once before splitting the batch to reset the internal state
  53. void split_reset();
  54. // simple split, unknown number of sequence sets of unequal lengths
  55. llama_ubatch split_simple(uint32_t n_ubatch);
  56. // make ubatches of equal-length sequences sets
  57. // if sequential == true, the tokens in the ubatch will have increasing sequential sequence ids
  58. llama_ubatch split_equal(uint32_t n_ubatch, bool sequential);
  59. // sequence-set-wise split - each ubatch contains a single sequence-set
  60. llama_ubatch split_seq(uint32_t n_ubatch);
  61. // a helper method for creating a well-defined ubatch of tokens
  62. // TODO: support embeddings if needed in the future
  63. llama_ubatch ubatch_reserve(uint32_t n_seq_tokens, uint32_t n_seqs);
  64. private:
  65. void clear();
  66. // create the next ubatch based on the provided batch indices (idxs) and the number of sequence sets (n_seqs)
  67. // return llama_ubatch.n_tokens == 0 if the entire batch was consumed
  68. llama_ubatch ubatch_add(const std::vector<int32_t> & idxs, uint32_t n_seqs, bool equal_seqs);
  69. // for debugging, start with LLAMA_BATCH_DEBUG=2
  70. void ubatch_print(const llama_ubatch & ubatch, int debug);
  71. llama_batch batch;
  72. // only for debugging purposes
  73. const llama_vocab * vocab;
  74. // TODO: this is more of a temporary solution until we have a better way to handle multiple positions per token/embd
  75. // ref: https://github.com/ggml-org/llama.cpp/issues/13694#issuecomment-2983871762
  76. const uint32_t n_pos_per_embd;
  77. uint32_t n_embd;
  78. uint32_t n_outputs;
  79. std::array<llama_seq_id, 1> seq_id_0 = { 0 }; // default sequence id
  80. std::vector<llama_pos> pos;
  81. std::vector<int32_t> n_seq_id;
  82. std::vector<llama_seq_id *> seq_id;
  83. std::vector<llama_seq_id> seq_id_unq;
  84. std::vector<int32_t> seq_idx;
  85. std::vector<int8_t> output;
  86. using pos_set_t = std::set<llama_pos>;
  87. using seq_cpl_t = std::vector<bool>;
  88. // helper flag to quickly determine if there are any coupled sequences in the batch
  89. bool has_cpl;
  90. std::vector<pos_set_t> seq_pos; // seq_pos[s]: the set of positions in sequence s
  91. std::vector<seq_cpl_t> seq_cpl; // seq_cpl[s0][s1]: if sequence s0 is coupled to sequence s1
  92. using idx_vec_t = std::vector<int32_t>;
  93. using seq_set_t = std::bitset<LLAMA_MAX_SEQ>;
  94. std::vector<seq_set_t> seq_set; // seq_set[i]: the sequence set of token i
  95. std::unordered_map<seq_set_t, idx_vec_t> seq_set_map; // the indices at which the sequence set appears
  96. // batch indices of the output
  97. std::vector<int32_t> out_ids;
  98. uint32_t n_used;
  99. // used[i] indicates if token i has already been used in a previous ubatch
  100. std::vector<bool> used;
  101. // llama_ubatch points to this data:
  102. struct ubatch {
  103. std::vector<llama_token> token;
  104. std::vector<float> embd;
  105. std::vector<llama_pos> pos;
  106. std::vector<int32_t> n_seq_id;
  107. std::vector<llama_seq_id *> seq_id;
  108. std::vector<llama_seq_id> seq_id_unq;
  109. std::vector<int32_t> seq_idx;
  110. std::vector<int8_t> output;
  111. };
  112. // current splitting state:
  113. std::vector<ubatch> ubatches;
  114. int debug;
  115. };