Skip to content

Commit

Permalink
build_tools/python_deploy/build_linux_packages.sh: Disable dynamo tes…
Browse files Browse the repository at this point in the history
…ting for stable pytorch (llvm#2426)
  • Loading branch information
mgehre-amd authored Sep 4, 2023
1 parent 30510f8 commit a3ac451
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build_tools/python_deploy/build_linux_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,11 @@ function test_in_tree() {

echo ":::: Run Linalg e2e integration tests"
python -m e2e_testing.main --config=linalg -v

# Dynamo is changing a lot in nightly versions, and thus the implementation
# tends to become incompatible to the stable version.
echo ":::: Run TorchDynamo e2e integration tests"
python -m e2e_testing.main --config=torchdynamo -v
;;
stable)
echo ":::: Test with stable torch"
Expand All @@ -316,9 +321,6 @@ function test_in_tree() {
echo ":::: Run make_fx + TOSA e2e integration tests"
python -m e2e_testing.main --config=make_fx_tosa -v

echo ":::: Run TorchDynamo e2e integration tests"
python -m e2e_testing.main --config=torchdynamo -v

echo ":::: Run StableHLO e2e integration tests"
python -m e2e_testing.main --config=stablehlo -v

Expand Down

0 comments on commit a3ac451

Please sign in to comment.