Skip to content

Commit 78e9cc8

Browse files
Gasoonjiafacebook-github-bot
authored andcommitted
add dynamic export into llm manual (#3202)
Summary: This diff adds dynamic export into llm manual, including code and related comments. Also update other documentations for better understanding. Differential Revision: D56365041
1 parent 910348b commit 78e9cc8

File tree

1 file changed

+85
-17
lines changed

1 file changed

+85
-17
lines changed

docs/source/llm/getting-started.md

Lines changed: 85 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Getting Started with LLMs via ExecuTorch
22

3+
Welcome to LLM Manual! This manual is designed to provide a practical example to leverage
4+
ExecuTorch in onboarding your own Large Language Models (LLMs). Our primary goal is to offer
5+
a clear and concise guideline on how to integrate our system with your own LLMs.
6+
7+
Please note that this project is intended as a demonstration and not as a fully functional
8+
example with optimal performance. As such, certain components such as the sampler, tokenizer,
9+
and others are provided in their bare minimum versions solely for demonstration purposes.
10+
Consequently, the results produced by the model may vary and might not always be optimal.
11+
12+
We encourage users to use this project as a starting point and adapt it to their specific needs,
13+
which includes creating your own versions of the tokenizer, sampler, acceleration backends, and
14+
other components. We hope this project serves as a useful guide in your journey with LLMs and ExecuTorch.
15+
316
### Table Of Contents
417

518

@@ -141,13 +154,23 @@ model = GPT.from_pretrained('gpt2')
141154

142155
# Create example inputs. This is used in the export process to provide
143156
# hints on the expected shape of the model input.
144-
example_inputs = (torch.randint(0, 100, (1, 8), dtype=torch.long), )
157+
example_inputs = (torch.randint(0, 100, (1, model.config.block_size), dtype=torch.long), )
158+
159+
# Set up dynamic shape configuration. This allows the sizes of the input tensors during
160+
# runtime to differ from the sizes of the tensors in `example_inputs`. Instead, they will
161+
# adhere to the rules specified in the dynamic shape configuration.
162+
# Here we set the range of 0th model input's 1st dimension as [0, model.config.block_size].
163+
# See [ExecuTorch Concept](../concepts.md#dynamic-shapes)
164+
# for details about creating dynamic shapes.
165+
dynamic_shape = (
166+
{1: torch.export.Dim("token_dim", max=model.config.block_size)},
167+
)
145168

146169
# Trace the model, converting it to a portable intermediate representation.
147170
# The torch.no_grad() call tells PyTorch to exclude training-specific logic.
148171
with torch.nn.attention.sdpa_kernel([SDPBackend.MATH]), torch.no_grad():
149-
m = capture_pre_autograd_graph(model, example_inputs)
150-
traced_model = export(m, example_inputs)
172+
m = capture_pre_autograd_graph(model, example_inputs, dynamic_shapes=dynamic_shape)
173+
traced_model = export(m, example_inputs, dynamic_shapes=dynamic_shape)
151174

152175
# Convert the model into a runnable ExecuTorch program.
153176
edge_config = EdgeCompileConfig(_check_ir_validity=False)
@@ -204,11 +227,15 @@ output token by token. Each generated token is passed as input for the next run.
204227
```cpp
205228
// main.cpp
206229
230+
// The token gpt2 used to identify end of sentence.
231+
#define ENDOFTEXT_TOKEN 50256
232+
207233
std::string generate(
208234
Module& llm_model,
209235
std::string& prompt,
210236
BasicTokenizer& tokenizer,
211237
BasicSampler& sampler,
238+
size_t max_input_length,
212239
size_t max_output_length) {
213240
214241
// Convert the input text into a list of integers (tokens) that represents
@@ -237,14 +264,23 @@ std::string generate(
237264
238265
// Sample the next token from the logits.
239266
int64_t next_token = sampler.sample(logits);
267+
268+
// Break if we reached the end of the text.
269+
if (next_token == ENDOFTEXT) {
270+
break;
271+
}
272+
273+
// Add the next token to the output.
240274
output_tokens.push_back(next_token);
241275
242276
std::cout << tokenizer.decode({ next_token });
243277
std::cout.flush();
244278
245279
// Update next input.
246-
input_tokens.erase(input_tokens.begin());
247280
input_tokens.push_back(next_token);
281+
if (input_tokens.size() > max_input_length) {
282+
input_tokens.erase(input_tokens.begin());
283+
}
248284
}
249285
250286
std::cout << std::endl;
@@ -278,7 +314,9 @@ penalties for repeated tokens, and biases to prioritize or de-prioritize specifi
278314

279315
int main() {
280316
// Set up the prompt. This provides the seed text for the model to elaborate.
281-
std::string prompt = "Once upon a time, there was a";
317+
std::cout << "Enter model prompt: ";
318+
std::string prompt;
319+
std::getline(std::cin, prompt);
282320

283321
// The tokenizer is used to convert between tokens (used by the model) and
284322
// human-readable strings.
@@ -290,19 +328,19 @@ int main() {
290328
// Load the exported nanoGPT program, which was generated via the previous steps.
291329
Module model("nanogpt.pte", torch::executor::Module::MlockConfig::UseMlockIgnoreErrors);
292330

331+
const auto max_input_tokens = 1024;
293332
const auto max_output_tokens = 30;
294333
std::cout << prompt;
295-
generate(model, prompt, tokenizer, sampler, max_output_tokens);
334+
generate(model, prompt, tokenizer, sampler, max_input_tokens, max_output_tokens);
296335
}
297336
```
298337

299338
Finally, download the following files into the same directory as main.h:
300339

301-
TODO: This is a placeholder.
302340
```
303-
curl -O https://raw.githubusercontent.com/GregoryComer/et-tutorials/quantization/nanogpt/managed_tensor.h
304-
curl -O https://raw.githubusercontent.com/GregoryComer/et-tutorials/quantization/nanogpt/basic_tokenizer.h
305-
curl -O https://raw.githubusercontent.com/GregoryComer/et-tutorials/quantization/nanogpt/basic_sampler.h
341+
curl -O https://raw.githubusercontent.com/pytorch/executorch/main/examples/llm_manual/basic_sampler.h
342+
curl -O https://raw.githubusercontent.com/pytorch/executorch/main/examples/llm_manual/basic_tokenizer.h
343+
curl -O https://raw.githubusercontent.com/pytorch/executorch/main/examples/llm_manual/managed_tensor.h
306344
```
307345

308346
To learn more, see [Running an ExecuTorch Model in C++](https://pytorch.org/executorch/main/running-a-model-cpp-tutorial.html)
@@ -363,10 +401,19 @@ cmake --build cmake-out -j10
363401
./cmake-out/nanogpt_runner
364402
```
365403

366-
You should see something like the following:
404+
You should see the instruction like the following to make you input the initial prompt:
405+
406+
```
407+
Enter model prompt:
408+
```
409+
410+
Here we use "Hello world!" as example prompt. After you input your prompt and press enter:
367411

368412
```
369-
Once upon a time, there was a man who was a member of the military...
413+
Enter model prompt: Hello world!
414+
Hello world!
415+
416+
I'm not sure if you've heard of the "Curse of the Dragon" or not, but it's a very popular game in
370417
```
371418

372419
At this point, it is likely to run very slowly. This is because ExecuTorch hasn't been told to optimize for
@@ -423,14 +470,24 @@ model = GPT.from_pretrained('gpt2')
423470
# Create example inputs. This is used in the export process to provide
424471
# hints on the expected shape of the model input.
425472
example_inputs = (
426-
torch.randint(0, 100, (1, 8), dtype=torch.long),
473+
torch.randint(0, 100, (1, model.config.block_size - 1), dtype=torch.long),
427474
)
428475

476+
# Set up dynamic shape configuration. This allows the sizes of the input tensors during
477+
# runtime to differ from the sizes of the tensors in `example_inputs`. Instead, they will
478+
# adhere to the rules specified in the dynamic shape configuration.
479+
# Here we set the range of 0th model input's 1st dimension as [0, model.config.block_size].
480+
# See [ExecuTorch Concept](../concepts.md#dynamic-shapes)
481+
# for details about creating dynamic shapes.
482+
dynamic_shape = (
483+
{1: torch.export.Dim("token_dim", max=model.config.block_size - 1)},
484+
)
485+
429486
# Trace the model, converting it to a portable intermediate representation.
430487
# The torch.no_grad() call tells PyTorch to exclude training-specific logic.
431488
with torch.nn.attention.sdpa_kernel([SDPBackend.MATH]), torch.no_grad():
432-
m = capture_pre_autograd_graph(model, example_inputs)
433-
traced_model = export(m, example_inputs)
489+
m = capture_pre_autograd_graph(model, example_inputs, dynamic_shapes=dynamic_shape)
490+
traced_model = export(m, example_inputs, dynamic_shapes=dynamic_shape)
434491

435492
# Convert the model into a runnable ExecuTorch program.
436493
# To be further lowered to Xnnpack backend, `traced_model` needs xnnpack-specific edge compile config
@@ -512,12 +569,23 @@ cmake --build cmake-out -j10
512569
./cmake-out/nanogpt_runner
513570
```
514571

515-
You should see something like the following:
572+
573+
You should see the instruction like the following to make you input the initial prompt:
574+
575+
```
576+
Enter model prompt:
577+
```
578+
579+
Here we use "Hello world!" as example prompt. After you input your prompt and press enter:
516580

517581
```
518-
Once upon a time, there was a man who was a member of the military...
582+
Enter model prompt: Hello world!
583+
Hello world!
584+
585+
I'm not sure if you've heard of the "Curse of the Dragon" or not, but it's a very popular game in
519586
```
520587

588+
The delegated model should be noticeably faster compared to the non-delegated model.
521589

522590
For more information regarding backend delegateion, see the ExecuTorch guides
523591
for the

0 commit comments

Comments
 (0)