Skip to content

Commit b4c9774

Browse files
committed
[Task] : Build with 2.9 stable torch.
1 parent 2366f25 commit b4c9774

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

build_tools/ci/install_python_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ case $torch_version in
1515
;;
1616
stable)
1717
echo "::group::installing stable torch"
18-
python3 -m pip install --no-cache-dir torch==2.8.0 torchvision --index-url https://download.pytorch.org/whl/cpu
18+
python3 -m pip install --no-cache-dir torch==2.9.0 torchvision --index-url https://download.pytorch.org/whl/cpu
1919
python3 -m pip install --no-cache-dir -r $repo_root/build-requirements.txt
2020
echo "::endgroup::"
2121
;;

build_tools/ci/test_posix_mw_main.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ set -eu -o errtrace
44

55
this_dir="$(cd $(dirname $0) && pwd)"
66
repo_root="$(cd $this_dir/../.. && pwd)"
7-
torch_version="${1:-unknown}"
87

98
export PYTHONPATH="$repo_root/build/tools/torch-mlir/python_packages/torch_mlir:$repo_root/projects/pt1"
109

1110
echo "::group::Run TOSA LINALG e2e integration tests"
1211
python3 -m e2e_testing.main --config=fx_importer_tosa_linalg -v
1312
echo "::endgroup::"
13+
14+
echo "::group::Run FxImporter e2e integration tests"
15+
python3 -m e2e_testing.main --config=fx_importer -s
16+
echo "::endgroup::"
17+
18+
echo "::group::Run FxImporter TOSA e2e integration tests"
19+
python3 -m e2e_testing.main --config=fx_importer_tosa -v
20+
echo "::endgroup::"

0 commit comments

Comments
 (0)