Skip to content

Commit 5dbec7b

Browse files
Decode LLMs generate one token at a time
1 parent 6d8c12a commit 5dbec7b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/workloads/gpt3_175B_kv_cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ workload:
22
rank_sizes:
33
{% set BATCH_SIZE = BATCH_SIZE | default(1) %}
44
{% set N_TOKENS = N_TOKENS | default(8192) %}
5-
{% set N_NEW_TOKENS = N_TOKENS | default(8) %}
5+
{% set N_NEW_TOKENS = N_TOKENS | default(1) %}
66
B: {{BATCH_SIZE}}
77
M: {{N_NEW_TOKENS}}
88
M_FULL: {{N_TOKENS}}

examples/workloads/gpt3_6.7B_kv_cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ workload:
22
rank_sizes:
33
{% set BATCH_SIZE = BATCH_SIZE | default(1) %}
44
{% set N_TOKENS = N_TOKENS | default(8192) %}
5-
{% set N_NEW_TOKENS = N_TOKENS | default(8) %}
5+
{% set N_NEW_TOKENS = N_TOKENS | default(1) %}
66
B: {{BATCH_SIZE}}
77
M: {{N_NEW_TOKENS}}
88
M_FULL: {{N_TOKENS}}

0 commit comments

Comments
 (0)