Skip to content

Commit 2ba06a2

Browse files
authored
Fix install_everything (#5)
* fix install_everything * fix install_everything
1 parent 78e4dcb commit 2ba06a2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +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-
pip install -e .
7473
python benchmarks/benchmark_serving.py --tokenizer $tokenizer_path --num-prompts 2000 --dataset-path $dataset_path --dataset sharegpt --save-request-outputs
7574
```
7675
Please look at `deps/JetStream/benchmarks/README.md` for more information.

install_everything.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ git clone https://github.com/pytorch/xla.git
1212
pushd xla/experimental/torch_xla2
1313
git checkout $TORCHXLA_TAG
1414
pip install .
15-
popd # now at the folder of jetstream-pytorch
15+
popd # now at the folder deps
1616
pushd JetStream
1717
pip install .
18-
popd
18+
popd # now at the folder deps
19+
popd # now at the folder current file
20+
pip install -e .

0 commit comments

Comments
 (0)