Skip to content

Commit

Permalink
Revert "add dtype tests for runner-aoti + runner-et (pytorch#539)" (p…
Browse files Browse the repository at this point in the history
…ytorch#548)

This reverts commit a7a24577a65be67ac9ae4dc05452f35d9c49e5d1.
  • Loading branch information
malfet committed Jul 17, 2024
1 parent 863f2cf commit afe6b0f
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 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 @@ -858,12 +858,8 @@ jobs:
python torchchat.py generate stories15M --temperature 0 --prompt "${PRMT}"
for dtype in fp32 fp16 bf16; do
echo "Testing export + runner with dtype=$dtype"
python torchchat.py export stories15M --dtype $dtype --output-pte-path ./model.pte
./cmake-out/et_run ./model.pte -z ./tokenizer.bin -t 0 -i "${PRMT}"
done
python torchchat.py export stories15M --output-pte-path ./model.pte
./cmake-out/et_run ./model.pte -z ./tokenizer.bin -t 0 -i "${PRMT}"
echo "Tests complete."
runner-aoti:
Expand Down Expand Up @@ -913,12 +909,9 @@ 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
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
./cmake-out/aoti_run /tmp/model.so -z ${MODEL_DIR}/tokenizer.bin -i "${PROMPT}"
echo "Tests complete."
Expand Down

0 comments on commit afe6b0f

Please sign in to comment.