File size: 11,006 Bytes
4a28d4d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
#include "src/turbomind/models/output_processor.h"
#include <functional>
#include "src/turbomind/engine/request.h"
// #include "dbg.h"
namespace turbomind {
using std::vector;
using std::shared_ptr;
struct OutputProcessor::Impl {
static constexpr auto kAll = GenerationConfig::kAll;
const int vocab_size_;
const int max_logits_len_;
const int tp_rank_;
std::function<Tensor(const Tensor&)> lm_head_;
Impl(const ModelParam& model,
int max_logits_len,
int tp_rank,
int phases,
std::function<Tensor(const Tensor&)> lm_head):
vocab_size_{(int)model.vocab_size},
max_logits_len_{max_logits_len},
tp_rank_{tp_rank},
lm_head_{std::move(lm_head)}
{
for (int i = 0; i < phases; ++i) {
data_.emplace_back();
}
}
struct Data {
Interval full_states; // requested range for full hidden states
Interval full_logits; // requested range for full logits
vector<std::tuple<int, int, Interval, Interval>> output_states;
vector<std::tuple<int, int, Interval, Interval>> output_logits;
};
vector<Data> data_;
struct Matching {
Interval& target;
const int offset_d;
Interval src;
Interval dst;
bool operator()(const Interval& x, int offset_s, Interval& merged)
{
if (auto y = target & x; y && y.begin() == target.begin()) {
dst = {y.begin() - offset_d, y.size()};
src = {offset_s + (y.begin() - x.begin()), y.size()};
merged = merged | src;
target = -(int)y.size() | target;
return true;
}
return false;
}
};
void Add(int phase, TensorMap& env)
{
const Buffer_<RequestCache*> rc = env.at("requests").buffer();
for (int i = 0; i < rc.size(); ++i) {
auto& c = *rc[i];
auto& r = *c.req;
auto& g = r.gen_cfg;
if (g.output_logits) {
c.output_logits = g.output_logits == kAll ? Interval{c.step0} : Interval{c.prompt_len - 1};
c.logits_offset = c.output_logits.begin();
}
if (g.output_last_hidden_state) {
c.output_hidden_states =
g.output_last_hidden_state == kAll ? Interval{c.step0} : Interval{c.prompt_len - 1};
c.hidden_states_offset = c.output_hidden_states.begin();
// dbg(&c.output_hidden_states, c.hidden_states_offset);
}
}
}
void Setup(int phase, TensorMap& env)
{
auto& d = data_.at(phase);
const auto& rc = env.at("batch").data<BatchData*>()[0]->rc;
vector<Interval> all_tokens;
vector<Interval> sel_tokens;
for (int i = 0; i < rc.size(); ++i) {
using Size = Interval::Size;
auto& c = *rc[i];
all_tokens.emplace_back(c.history_len + c.alpha, Size{c.input_len});
sel_tokens.emplace_back(c.history_len + c.alpha + c.input_len - 1, Size{1});
if (!c.generating) {
sel_tokens.back() = {};
}
// dbg(&all_tokens.back(), &sel_tokens.back());
}
const int token_num = *env.at("token_num").data<int>();
d.full_logits = {INT_MAX, 0};
d.full_states = {INT_MAX, 0};
Interval select_states{INT_MAX, 0};
Interval select_logits{INT_MAX, 0};
d.output_logits = {};
d.output_states = {};
int offset = 0;
for (int i = 0; i < rc.size(); ++i) {
auto& c = *rc[i];
auto& g = c.req->gen_cfg;
if (c.output_hidden_states) {
Matching m{c.output_hidden_states, c.hidden_states_offset};
int type = 0;
if (m(sel_tokens[i], i, select_states)) {
type = 1;
}
else if (m(all_tokens[i], offset, d.full_states)) {
type = 2;
}
if (type) {
d.output_states.emplace_back(i, type, m.src, m.dst);
// dbg(type, &m.src, &m.dst);
}
}
if (c.output_logits) {
Matching m{c.output_logits, c.logits_offset};
int type = 0;
if (m(sel_tokens[i], i, select_logits)) {
type = 1;
}
else if (m(all_tokens[i], offset, d.full_logits)) {
type = 2;
}
if (type) {
d.output_logits.emplace_back(i, type, m.src, m.dst);
}
}
offset += c.input_len;
}
// logits depends on hidden states
d.full_states = d.full_states | d.full_logits;
}
void Prepare(int phase, TensorMap& env)
{
auto& d = data_.at(phase);
if (d.full_states) {
env.produce("output_hidden_states", Tensor{});
}
}
template<class Ranges>
void OutputHiddenStates(const Ranges& ranges, const Tensor& h, int type, const vector<shared_ptr<RequestCache>>& rs)
{
for (const auto& [i, t, src, dst] : ranges) {
if (t == type) {
auto& out = rs[i]->req->outputs.at("last_hidden_state");
if (tp_rank_ == 0) {
// dbg(&src, &dst);
Copy(h.slice(src.begin(), (int)src.size()), out.slice(dst.begin(), (int)dst.size()));
}
}
}
}
void ComputeAndOutputLogits(const Data& data, const Tensor& h, const vector<shared_ptr<RequestCache>>& rs)
{
const int step_size = max_logits_len_;
// Coroutine frame
int p = 0;
auto ranges = data.output_logits;
using Size = Interval::Size;
bool success = false;
// Erode the range iteratively until empty
for (auto r = data.full_logits; r; r = -step_size | r) {
// dbg(&r);
if (auto chunk = r & Interval{r.begin(), Size{step_size}}) {
// dbg(&chunk);
// Compute & output full logits by chunks
auto logits = lm_head_(h.slice(chunk.begin(), (int)chunk.size()));
success = OutputLogitsImpl(ranges, p, logits, chunk.begin(), 2, rs);
if (success) { // all requests satisfied, exit early
break;
}
}
}
TM_CHECK(success); // all requests must be satisfied at the end
}
template<class Ranges>
void OutputLogits(Ranges& ranges_, const Tensor& l, int type, const vector<shared_ptr<RequestCache>>& rs)
{
// Coroutine frame
int p = 0;
auto ranges = ranges_;
TM_CHECK(OutputLogitsImpl(ranges, p, l, /* base */ 0, type, rs));
}
template<class Ranges>
bool OutputLogitsImpl(
Ranges& ranges, int& p, const Tensor& l, int base, int type, const vector<shared_ptr<RequestCache>>& rs)
{
// dbg("OutputLogitsImpl");
const auto stream = core::Context::stream().handle();
for (; p < ranges.size(); ++p) {
if (auto& [i, t, src, dst] = ranges[p]; t == type) {
Tensor& out = rs[i]->req->outputs.at("logits");
const DataType dtype = out.dtype();
TM_CHECK_LE(base, src.begin()); // logical error
if (Interval msrc = src & Interval{base, Interval::Size{(int)l.shape(0)}}) {
const int tokens = (int)msrc.size();
Interval mdst{dst.begin(), msrc.size()};
// TODO: support strides in `DLTensor`, so that batched 1D copy can be used
if (tp_rank_ == 0) {
// dbg(&mdst, &msrc, tokens, out, base, l);
TM_CHECK_EQ(cudaMemcpy2DAsync(out.slice(mdst.begin(), tokens).raw_data(),
byte_size(dtype, out.stride(0)),
l.slice(msrc.begin() - base, tokens).raw_data(),
byte_size(dtype, l.stride(0)),
byte_size(dtype, vocab_size_),
tokens,
cudaMemcpyDefault,
stream),
0);
}
// move to next request if they are empty after the erosion
src = -(int)msrc.size() | src;
dst = -(int)mdst.size() | dst;
}
// dbg(&src, (int)src.size(), &dst, (int)dst.size());
if (src) {
// request not compeleted, suspend and wait for next chunk
return false;
}
}
}
return true;
}
void OutputHiddenStatesAndLogits(int phase, TensorMap& env, int type)
{
auto& d = data_.at(phase);
auto& b = *env.at("batch").data<BatchData*>()[0];
if (type == 2 && d.full_states) {
auto hidden_states = env.consume("full_hidden_states");
if (!d.output_states.empty()) {
OutputHiddenStates(d.output_states, hidden_states, 2, b.rc);
}
if (!d.output_logits.empty() && d.full_logits) {
ComputeAndOutputLogits(d, hidden_states, b.rc);
}
}
if (type == 1) {
if (!d.output_states.empty()) {
OutputHiddenStates(d.output_states, env.at("hidden_states"), 1, b.rc);
}
if (!d.output_logits.empty()) {
OutputLogits(d.output_logits, env.at("logits"), 1, b.rc);
}
}
}
};
OutputProcessor::~OutputProcessor() = default;
OutputProcessor::OutputProcessor(
const ModelParam& model, int max_logits_len, int tp_rank, int phases, std::function<Tensor(const Tensor&)> lm_head):
impl_{std::make_unique<Impl>(model, max_logits_len, tp_rank, phases, std::move(lm_head))}
{
}
void OutputProcessor::Run(BatchOp op, int phase, TensorMap& env)
{
switch (op) {
case BatchOp::kAdd:
return impl_->Add(phase, env);
case BatchOp::kSetup:
return impl_->Setup(phase, env);
case BatchOp::kPrepare:
return impl_->Prepare(phase, env);
default:
return;
}
}
void OutputProcessor::OutputHiddenStatesAndLogits(int phase, TensorMap& env, int type)
{
return impl_->OutputHiddenStatesAndLogits(phase, env, type);
}
} // namespace turbomind
|