You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multiple values can be given for each parameter by separating them with ',' or by specifying the parameter multiple times.
44
49
```
45
50
46
-
llama-bench can perform two types of tests:
51
+
llama-bench can perform three types of tests:
47
52
48
53
- Prompt processing (pp): processing a prompt in batches (`-p`)
49
54
- Text generation (tg): generating a sequence of tokens (`-n`)
55
+
- Prompt processing + text generation (pg): processing a prompt followed by generating a sequence of tokens (`-pg`)
50
56
51
57
With the exception of `-r`, `-o` and `-v`, all options can be specified multiple times to run multiple tests. Each pp and tg test is run with all combinations of the specified options. To specify multiple values for an option, the values can be separated by commas (e.g. `-n 16,32`), or the option can be specified multiple times (e.g. `-n 16 -n 32`).
0 commit comments