Skip to content

Commit caf0734

Browse files
authored
Add Gemma 2b benchmark; fix a typo. (#85)
misc fixes
1 parent f3cf2b7 commit caf0734

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ go to the deps/JetStream folder (downloaded during `install_everything.sh`)
128128
cd deps/JetStream
129129
wget https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/resolve/main/ShareGPT_V3_unfiltered_cleaned_split.json
130130
export dataset_path=ShareGPT_V3_unfiltered_cleaned_split.json
131-
python benchmarks/benchmark_serving.py --tokenizer $tokenizer_path --num-prompts 2000 --dataset-path $dataset_path --dataset sharegpt --save-request-outputs --warm-up=True
131+
python benchmarks/benchmark_serving.py --tokenizer $tokenizer_path --num-prompts 2000 --dataset-path $dataset_path --dataset sharegpt --save-request-outputs --warmup-first=True
132132
```
133133
Please look at `deps/JetStream/benchmarks/README.md` for more information.
134134

benchmarks/summary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ go to the deps/JetStream folder (downloaded during `install_everything.sh`)
7070
cd deps/JetStream
7171
wget https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/resolve/main/ShareGPT_V3_unfiltered_cleaned_split.json
7272
export dataset_path=ShareGPT_V3_unfiltered_cleaned_split.json
73-
python benchmarks/benchmark_serving.py --tokenizer $tokenizer_path --num-prompts 2000 --dataset-path $dataset_path --dataset sharegpt --save-request-outputs --warm-up=True
73+
python benchmarks/benchmark_serving.py --tokenizer $tokenizer_path --num-prompts 2000 --dataset-path $dataset_path --dataset sharegpt --save-request-outputs --warmup-first=True
7474
```
75-
Please look at `deps/JetStream/benchmarks/README.md` for more information.
75+
Please look at `deps/JetStream/benchmarks/README.md` for more information.

convert_checkpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
_MINIMIZE_MEMORY_FOOTPRINT = flags.DEFINE_bool(
5555
"minimize_memory_footprint",
56-
True,
56+
False,
5757
"When set to true, reduce memory usage by staging in-memory data on disk",
5858
)
5959

0 commit comments

Comments
 (0)