-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: ghstack-source-id: 7a9ae0d1d03794c5e5d85e3674fc88d2813eaf23 Pull Request resolved: #147
- Loading branch information
Showing
2 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export MODEL_REPO=meta-llama/Llama-2-7b-chat-hf | ||
|
||
# python generate.py --checkpoint_path checkpoints/$MODEL_REPO/model.pth --compile # working | ||
# echo "base" | ||
export MODEL_REPO=meta-llama/Llama-2-7b-chat-hf | ||
python quantize.py --checkpoint_path checkpoints/$MODEL_REPO/model.pth --mode int4-gptq --calibration_tasks wikitext --calibration_limit 5 | ||
python eval.py --checkpoint_path checkpoints/$MODEL_REPO/model_int4-gptq.g32.cuda.pth --tasks wikitext --limit 5 | ||
|
||
# python generate.py --checkpoint_path checkpoints/$MODEL_REPO/model_int4.g32.pth --compile | ||
# echo "quant good" | ||
|
||
# python quantize.py --checkpoint_path checkpoints/$MODEL_REPO/model.pth --mode int4 | ||
# python eval.py --checkpoint_path checkpoints/$MODEL_REPO/model_int4.g32.cuda.pth --tasks wikitext --limit 5 | ||
|
||
# export MODEL_REPO=meta-llama/Llama-2-70b-chat-hf | ||
# python quantize.py --checkpoint_path checkpoints/$MODEL_REPO/model.pth --mode int4 | ||
# python eval.py --checkpoint_path checkpoints/$MODEL_REPO/model_int4.g32.cuda.pth --tasks wikitext --limit 5 | ||
# ENABLE_INTRA_NODE_COMM=1 torchrun --standalone --nproc_per_node=8 generate.py --compile --checkpoint_path checkpoints/$MODEL_REPO/model_int4.g32.cuda.pth | ||
|
||
# python quantize.py --checkpoint_path checkpoints/$MODEL_REPO/model.pth --mode int4-gptq --calibration_tasks wikitext --calibration_limit 5 |