-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathmain.cpp
More file actions
500 lines (447 loc) · 17 KB
/
Copy pathmain.cpp
File metadata and controls
500 lines (447 loc) · 17 KB
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
// Gemma 4 31B-IT runner for ExecuTorch. Supports two backends:
// CUDA — exports ``prefill`` (T>=2, dynamic) + ``decode`` (T=1, static)
// methods sharing KV-cache buffers; on-device Gumbel-max sampling
// with temperature passed as a third input; returns a scalar
// float token id.
// MLX — exports a single ``forward`` method with dynamic seq_len;
// returns last-token logits; the runner samples on the host via
// ``llm::logits_to_token`` with the same temperature semantics.
#include <gflags/gflags.h>
#include <executorch/extension/llm/runner/llm_runner_helper.h>
#include <executorch/extension/llm/runner/stats.h>
#include <executorch/extension/llm/runner/util.h>
#include <executorch/extension/llm/sampler/util.h>
#include <executorch/extension/module/module.h>
#include <executorch/extension/tensor/tensor.h>
#include <executorch/extension/tensor/tensor_ptr.h>
#include <executorch/runtime/backend/interface.h>
#include <executorch/runtime/backend/options.h>
#include <executorch/runtime/core/portable_type/device.h>
#include <executorch/runtime/platform/assert.h>
#include <executorch/runtime/platform/log.h>
#include <pytorch/tokenizers/hf_tokenizer.h>
#include <cinttypes>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <fstream>
#include <string>
#include <vector>
#include <executorch/runtime/platform/platform.h>
#include <executorch/runtime/platform/types.h>
extern "C" void et_pal_emit_log_message(
ET_UNUSED et_timestamp_t timestamp,
et_pal_log_level_t level,
const char* filename,
ET_UNUSED const char* function,
size_t line,
const char* message,
ET_UNUSED size_t length) {
if (level == 'D' || level == 'I') {
return;
}
fprintf(stderr, "%c [%s:%zu] %s\n", (char)level, filename, line, message);
}
#ifdef EXECUTORCH_BUILD_CUDA
#include <cuda_runtime.h>
#endif
DEFINE_string(model_path, "", "Model .pte file path.");
DEFINE_string(data_path, "", "Data file (.ptd) for CUDA backend.");
DEFINE_string(tokenizer_path, "", "HuggingFace tokenizer.json path.");
DEFINE_string(prompt, "Hello", "Prompt text.");
DEFINE_string(
prompt_file,
"",
"Path to file containing prompt text (overrides --prompt).");
DEFINE_double(temperature, 0.8, "Sampling temperature (0 = near-greedy).");
DEFINE_int32(max_new_tokens, 128, "Maximum tokens to generate.");
DEFINE_int32(bos_id, 2, "BOS token id to prepend (Gemma convention: 2).");
DEFINE_int32(eos_id, 1, "EOS token id (Gemma convention: 1).");
DEFINE_bool(
raw_prompt,
false,
"Skip chat-template wrapping (use if the prompt is already formatted).");
DEFINE_bool(
cuda_graph,
false,
"Enable CUDA graph capture for the decode method. CUDA only.");
namespace llm = ::executorch::extension::llm;
using ::executorch::extension::from_blob;
using ::executorch::extension::make_tensor_ptr;
using ::executorch::extension::Module;
using ::executorch::extension::TensorPtr;
using ::executorch::runtime::Error;
using ::executorch::runtime::EValue;
#ifdef EXECUTORCH_BUILD_CUDA
using ::executorch::extension::clone_tensor_ptr_to;
#endif
using SizesType = executorch::aten::SizesType;
// Read a sampled token ID from a scalar int64 output (CUDA path).
//
// The model now emits the sampled token as int64 (see sampler.py), matching
// the decode method's int64 token input so the on-device output buffer can be
// aliased directly as the next step's input. We still copy the 8-byte scalar
// back to the host here for EOS detection and detokenization.
static uint64_t read_token(const executorch::aten::Tensor& output) {
const void* ptr = output.const_data_ptr();
int64_t val = 0;
#ifdef EXECUTORCH_BUILD_CUDA
cudaPointerAttributes attrs{};
bool on_device = cudaPointerGetAttributes(&attrs, ptr) == cudaSuccess &&
attrs.type == cudaMemoryTypeDevice;
if (on_device) {
cudaError_t err =
cudaMemcpy(&val, ptr, sizeof(int64_t), cudaMemcpyDeviceToHost);
if (err != cudaSuccess) {
ET_LOG(
Error,
"read_token: cudaMemcpy D2H failed: %s",
cudaGetErrorString(err));
return 0;
}
} else {
memcpy(&val, ptr, sizeof(int64_t));
}
#else
memcpy(&val, ptr, sizeof(int64_t));
#endif
return static_cast<uint64_t>(val);
}
int main(int argc, char** argv) {
gflags::ParseCommandLineFlags(&argc, &argv, true);
if (FLAGS_model_path.empty()) {
ET_LOG(Error, "Must specify --model_path");
return 1;
}
if (FLAGS_tokenizer_path.empty()) {
ET_LOG(Error, "Must specify --tokenizer_path");
return 1;
}
llm::Stats stats;
#ifdef EXECUTORCH_BUILD_CUDA
size_t gpu_free_bytes = 0, gpu_total_bytes = 0;
cudaMemGetInfo(&gpu_free_bytes, &gpu_total_bytes);
stats.gpu_total_bytes = gpu_total_bytes;
stats.gpu_free_before_load_bytes = gpu_free_bytes;
#endif
stats.model_load_start_ms = llm::time_in_ms();
// Tokenizer
auto tokenizer = std::make_unique<tokenizers::HFTokenizer>();
if (tokenizer->load(FLAGS_tokenizer_path) != tokenizers::Error::Ok) {
ET_LOG(
Error,
"Failed to load tokenizer from %s",
FLAGS_tokenizer_path.c_str());
return 1;
}
// Module
std::vector<std::string> data_files;
if (!FLAGS_data_path.empty()) {
data_files.push_back(FLAGS_data_path);
}
auto module = std::make_unique<Module>(
FLAGS_model_path,
data_files,
Module::LoadMode::MmapUseMlockIgnoreErrors,
/*event_tracer=*/nullptr,
/*memory_allocator=*/nullptr,
/*temp_allocator=*/nullptr);
// Get metadata
auto metadata_result = llm::get_llm_metadata(tokenizer.get(), module.get());
if (metadata_result.error() != Error::Ok) {
ET_LOG(Error, "Failed to read model metadata");
return 1;
}
int64_t max_prefill_chunk = (*metadata_result)[llm::kMaxSeqLen] - 1;
{
auto get_result = module->get("get_max_prefill_chunk");
if (get_result.ok()) {
max_prefill_chunk = get_result->toScalar().to<int64_t>();
}
}
auto S = [](int64_t v) -> SizesType { return static_cast<SizesType>(v); };
float temp_val =
FLAGS_temperature <= 0.0 ? 1e-6f : static_cast<float>(FLAGS_temperature);
#ifdef EXECUTORCH_BUILD_CUDA
const auto cuda_device =
executorch::aten::Device(executorch::aten::DeviceType::CUDA, 0);
if (FLAGS_cuda_graph) {
executorch::runtime::BackendOptions<2> cuda_opts;
cuda_opts.set_option("enable_cuda_graph_for_method", "decode");
executorch::runtime::set_option("CudaBackend", cuda_opts.view());
printf("CUDA graph enabled for decode method\n");
}
{
executorch::runtime::BackendOptions<1> backend_options;
auto set_err =
backend_options.set_option("weight_sharing_across_methods", true);
if (set_err != Error::Ok) {
ET_LOG(
Error,
"Failed to set weight_sharing_across_methods: %d",
static_cast<int>(set_err));
return 1;
}
auto opt_err =
executorch::runtime::set_option("CudaBackend", backend_options.view());
if (opt_err != Error::Ok) {
ET_LOG(
Error,
"Failed to enable weight_sharing_across_methods: %d",
static_cast<int>(opt_err));
return 1;
}
}
printf("Loading methods...\n");
if (module->load_method("prefill") != Error::Ok) {
ET_LOG(Error, "Failed to load prefill method");
return 1;
}
if (module->load_method("decode") != Error::Ok) {
ET_LOG(Error, "Failed to load decode method");
return 1;
}
auto temp_tensor = clone_tensor_ptr_to(
from_blob(&temp_val, {1}, executorch::aten::ScalarType::Float),
cuda_device);
#else
if (FLAGS_cuda_graph) {
ET_LOG(Info, "--cuda_graph ignored on non-CUDA build");
}
printf("Loading model...\n");
if (module->load_method("forward") != Error::Ok) {
ET_LOG(Error, "Failed to load forward method");
return 1;
}
#endif
stats.model_load_end_ms = llm::time_in_ms();
#ifdef EXECUTORCH_BUILD_CUDA
cudaMemGetInfo(&gpu_free_bytes, &gpu_total_bytes);
stats.gpu_free_after_load_bytes = gpu_free_bytes;
#endif
auto eos_ids = llm::get_eos_ids(tokenizer.get(), module.get());
eos_ids.insert(static_cast<uint64_t>(FLAGS_eos_id));
auto turn_ids = tokenizer->encode("<turn|>", /*bos=*/0, /*eos=*/0);
if (turn_ids.ok() && turn_ids->size() == 1) {
eos_ids.insert(turn_ids.get()[0]);
}
// Read prompt
std::string prompt_text = FLAGS_prompt;
if (!FLAGS_prompt_file.empty()) {
std::ifstream f(FLAGS_prompt_file);
if (!f.is_open()) {
ET_LOG(
Error, "Failed to open prompt file: %s", FLAGS_prompt_file.c_str());
return 1;
}
prompt_text = std::string(
(std::istreambuf_iterator<char>(f)), std::istreambuf_iterator<char>());
}
// Wrap with Gemma 4 IT chat template unless --raw_prompt is set.
// BOS is prepended separately below; this adds the turn structure and the
// empty thought block required by the instruction-tuned model.
if (!FLAGS_raw_prompt) {
prompt_text = "<|turn>user\n" + prompt_text +
"<turn|>\n<|turn>model\n<|channel>thought\n<channel|>";
}
// Encode prompt
auto encode_result = tokenizer->encode(prompt_text);
if (!encode_result.ok()) {
ET_LOG(Error, "Failed to encode prompt");
return 1;
}
auto prompt_tokens = std::move(*encode_result);
// Gemma models require BOS at the start of the sequence.
prompt_tokens.insert(
prompt_tokens.begin(), static_cast<uint64_t>(FLAGS_bos_id));
int64_t num_prompt_tokens = static_cast<int64_t>(prompt_tokens.size());
printf("Prompt tokens: %" PRId64 "\n", num_prompt_tokens);
stats.num_prompt_tokens = num_prompt_tokens;
stats.inference_start_ms = llm::time_in_ms();
// ---------------------------------------------------------------
// Prefill (chunked to respect ring-buffer KV cache limit)
// ---------------------------------------------------------------
uint64_t cur_token = 0;
int64_t prefill_pos = 0;
#ifdef EXECUTORCH_BUILD_CUDA
// Alias of the most recent forward's on-device int64 output token. The last
// prefill chunk's output seeds the first decode step (no token H2D); each
// decode step then re-aliases its own output for the next step.
TensorPtr device_out_token;
#endif
while (prefill_pos < num_prompt_tokens) {
int64_t chunk_len =
std::min(num_prompt_tokens - prefill_pos, max_prefill_chunk);
std::vector<int64_t> token_data(
prompt_tokens.begin() + prefill_pos,
prompt_tokens.begin() + prefill_pos + chunk_len);
std::vector<int64_t> pos_data(chunk_len);
for (int64_t i = 0; i < chunk_len; i++) {
pos_data[i] = prefill_pos + i;
}
auto tokens_tensor = from_blob(
token_data.data(),
{1, S(chunk_len)},
executorch::aten::ScalarType::Long);
auto pos_tensor = from_blob(
pos_data.data(), {S(chunk_len)}, executorch::aten::ScalarType::Long);
#ifdef EXECUTORCH_BUILD_CUDA
// skip_h2d: prefill/decode method inputs must already live in CUDA memory.
tokens_tensor = clone_tensor_ptr_to(tokens_tensor, cuda_device);
pos_tensor = clone_tensor_ptr_to(pos_tensor, cuda_device);
#endif
std::vector<EValue> inputs;
inputs.push_back(EValue(tokens_tensor));
inputs.push_back(EValue(pos_tensor));
#ifdef EXECUTORCH_BUILD_CUDA
inputs.push_back(EValue(temp_tensor));
std::string method = (chunk_len == 1) ? "decode" : "prefill";
#else
std::string method = "forward";
#endif
auto result = module->execute(method, inputs);
if (result.error() != Error::Ok) {
ET_LOG(Error, "%s failed at pos %" PRId64, method.c_str(), prefill_pos);
return 1;
}
#ifdef EXECUTORCH_BUILD_CUDA
const auto& out_tensor = result.get()[0].toTensor();
cur_token = read_token(out_tensor);
// Keep the sampled token on device: alias the output buffer so it feeds
// straight into the next forward as the int64 token input (zero copy).
device_out_token = make_tensor_ptr(out_tensor);
#else
cur_token = static_cast<uint64_t>(
llm::logits_to_token(result.get()[0].toTensor(), temp_val));
#endif
prefill_pos += chunk_len;
}
stats.prompt_eval_end_ms = llm::time_in_ms();
// First generated token came from the last prefill chunk; TTFT is prefill.
stats.first_token_ms = stats.prompt_eval_end_ms;
#ifdef EXECUTORCH_BUILD_CUDA
cudaDeviceSynchronize();
#endif
// Print the first generated token (from the last prefill chunk).
// Use the last prompt token as the streaming-decode prefix so any BPE
// partial-character handling stays correct.
{
auto first_str = tokenizer->decode(prompt_tokens.back(), cur_token);
if (first_str.ok()) {
printf("%s", first_str->c_str());
fflush(stdout);
}
}
// ---------------------------------------------------------------
// Decode loop
// ---------------------------------------------------------------
int64_t pos = num_prompt_tokens;
std::vector<int64_t> decode_pos_data = {pos};
auto decode_pos_cpu = from_blob(
decode_pos_data.data(), {1}, executorch::aten::ScalarType::Long);
#ifdef EXECUTORCH_BUILD_CUDA
// Fixed device-resident position input slot: the decode method always reads
// the position from this same address every step (cuda-graph-safe). Seeded
// once here with a one-time H2D; refreshed each step by an on-device D2D.
auto decode_pos = clone_tensor_ptr_to(decode_pos_cpu, cuda_device);
// Upload the FULL decode position array to device ONCE (a single H2D - the
// one-time copy we keep). Each step copies its position from here into the
// fixed slot with a device-to-device copy, so there is NO per-round pos H2D.
std::vector<int64_t> pos_seq_data(FLAGS_max_new_tokens);
for (int32_t i = 0; i < FLAGS_max_new_tokens; i++) {
pos_seq_data[i] = num_prompt_tokens + i;
}
auto pos_seq_dev = clone_tensor_ptr_to(
from_blob(
pos_seq_data.data(),
{S(FLAGS_max_new_tokens)},
executorch::aten::ScalarType::Long),
cuda_device);
auto* pos_seq_dev_ptr =
static_cast<int64_t*>(pos_seq_dev->mutable_data_ptr());
auto* decode_pos_slot_ptr =
static_cast<int64_t*>(decode_pos->mutable_data_ptr());
#else
// Non-CUDA (MLX) path: keep host token/pos buffers; the backend stages them
// and the host samples from the returned logits.
std::vector<int64_t> decode_token_data = {static_cast<int64_t>(cur_token)};
auto decode_tokens = from_blob(
decode_token_data.data(), {1, 1}, executorch::aten::ScalarType::Long);
auto decode_pos = decode_pos_cpu;
#endif
uint64_t prev_token = cur_token;
bool hit_eos = eos_ids.find(cur_token) != eos_ids.end();
for (int32_t step = 0; step < FLAGS_max_new_tokens && !hit_eos; step++) {
#ifdef EXECUTORCH_BUILD_CUDA
// No per-round H2D: copy this step's position from the pre-uploaded device
// position array into the fixed position slot with an on-device D2D. With
// the token aliased on device (Option A) and the position staged via D2D,
// the per-round HtoD count is zero (independent of decode length).
// cudaMemcpy D2D is host-synchronous, so the slot is updated before the
// decode kernels read it; with cuda graph enabled this becomes a captured
// cudaMemcpyAsync on the decode stream into this same fixed slot.
ET_CHECK_MSG(
cudaMemcpy(
decode_pos_slot_ptr,
pos_seq_dev_ptr + step,
sizeof(int64_t),
cudaMemcpyDeviceToDevice) == cudaSuccess,
"Failed to copy decode position D2D");
#else
decode_pos_data[0] = pos;
decode_token_data[0] = static_cast<int64_t>(cur_token);
#endif
std::vector<EValue> inputs;
#ifdef EXECUTORCH_BUILD_CUDA
inputs.push_back(EValue(device_out_token));
#else
inputs.push_back(EValue(decode_tokens));
#endif
inputs.push_back(EValue(decode_pos));
#ifdef EXECUTORCH_BUILD_CUDA
inputs.push_back(EValue(temp_tensor));
auto result = module->execute("decode", inputs);
#else
auto result = module->execute("forward", inputs);
#endif
if (result.error() != Error::Ok) {
ET_LOG(Error, "Decode step %d failed", step);
return 1;
}
prev_token = cur_token;
#ifdef EXECUTORCH_BUILD_CUDA
const auto& out_tensor = result.get()[0].toTensor();
cur_token = read_token(out_tensor);
// Alias this step's on-device output token as the next step's token input.
device_out_token = make_tensor_ptr(out_tensor);
#else
cur_token = static_cast<uint64_t>(
llm::logits_to_token(result.get()[0].toTensor(), temp_val));
#endif
pos++;
auto decode_str = tokenizer->decode(prev_token, cur_token);
if (decode_str.ok()) {
printf("%s", decode_str->c_str());
fflush(stdout);
}
hit_eos = eos_ids.find(cur_token) != eos_ids.end();
}
printf("\n");
stats.inference_end_ms = llm::time_in_ms();
stats.num_generated_tokens = pos - num_prompt_tokens;
#ifdef EXECUTORCH_BUILD_CUDA
cudaMemGetInfo(&gpu_free_bytes, &gpu_total_bytes);
stats.gpu_free_after_generate_bytes = gpu_free_bytes;
stats.gpu_peak_usage_mb =
(stats.gpu_total_bytes - gpu_free_bytes) / 1024.0 / 1024.0;
#endif
llm::print_report(stats);
return 0;
}