Skip to content

Commit

Permalink
Add dtype runner aoti (pytorch#552)
Browse files Browse the repository at this point in the history
* add dtype tests for runner-aoti + runner-et

* typo

* add dtype test runner-aoti
  • Loading branch information
metascroy authored and malfet committed Jul 17, 2024
1 parent 46bef69 commit 49fd4b7
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
echo "::group::Install newer objcopy that supports --set-section-alignment"
yum install -y devtoolset-10-binutils
export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH
echo "::endgroup::"
echo "::endgroup::"
echo "::group::Install required packages"
pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu121
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
echo "::group::Install newer objcopy that supports --set-section-alignment"
yum install -y devtoolset-10-binutils
export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH
echo "::endgroup::"
echo "::endgroup::"
echo "::group::Install required packages"
pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu121
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
echo "::group::Install newer objcopy that supports --set-section-alignment"
yum install -y devtoolset-10-binutils
export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH
echo "::endgroup::"
echo "::endgroup::"
echo "::group::Install required packages"
pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu121
Expand Down Expand Up @@ -441,7 +441,7 @@ jobs:
export MODEL_PATH=checkpoints/stories15M/stories15M.pt
export MODEL_NAME=stories15M
export MODEL_DIR=/tmp
echo "******************************************"
echo "*** vanilla ***"
echo "******************************************"
Expand Down Expand Up @@ -909,9 +909,11 @@ jobs:
python torchchat.py generate --checkpoint-path ${MODEL_DIR}/stories15M.pt --temperature 0 --prompt "${PROMPT}"
python torchchat.py export --checkpoint-path ${MODEL_DIR}/stories15M.pt --output-dso-path /tmp/model.so
./cmake-out/aoti_run /tmp/model.so -z ${MODEL_DIR}/tokenizer.bin -i "${PROMPT}"
for dtype in fp32 fp16 bf16; do
echo "Running export + runner with dtype=$dtype"
python torchchat.py export --checkpoint-path ${MODEL_DIR}/stories15M.pt --dtype $dtype --output-dso-path /tmp/model.so
./cmake-out/aoti_run /tmp/model.so -z ${MODEL_DIR}/tokenizer.bin -i "${PROMPT}"
done
echo "Tests complete."
Expand Down

0 comments on commit 49fd4b7

Please sign in to comment.