Skip to content

Commit

Permalink
2.6 lts
Browse files Browse the repository at this point in the history
  • Loading branch information
mengfei25 committed Dec 6, 2024
1 parent 403582e commit 038bd29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_linux_ut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
run: |
source myvenv-ut/bin/activate
source .github/scripts/env.sh
pip install mkl-static==2025.0.1 mkl-include==2025.0.1
# pip install mkl-static==2025.0.1 mkl-include==2025.0.1
cd ../pytorch
if [[ ${{ inputs.abi }} == '0' ]]; then
export _GLIBCXX_USE_CXX11_ABI=0
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/nightly_ondemand_whl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
rm -rf myvenv-e2e
/usr/bin/python3.10 -m venv myvenv-e2e
source myvenv-e2e/bin/activate
pip install mkl-static==2025.0.1 mkl-include==2025.0.1
# pip install mkl-static==2025.0.1 mkl-include==2025.0.1
pip install pandas scipy tqdm
- name: Prepare Stock Pytorch
id: installed
Expand All @@ -108,6 +108,7 @@ jobs:
pip install --pre torch==2.6.0.dev20241202+xpu torchvision==0.20.0.dev20241202+xpu torchaudio==2.5.0.dev20241202+xpu --index-url https://download.pytorch.org/whl/nightly/xpu
echo "TORCH_BRANCH_ID=$(python -c 'import torch; print(torch.__version__)')" |tee -a "${GITHUB_OUTPUT}" >> "${GITHUB_ENV}"
echo "TORCH_COMMIT_ID=$(python -c 'import torch; print(torch.version.git_version)')" |tee -a "${GITHUB_OUTPUT}" >> "${GITHUB_ENV}"
TORCH_COMMIT_ID="$(python -c 'import torch; print(torch.version.git_version)')"
source .github/scripts/env.sh
cd ../ && rm -rf pytorch
git clone https://github.com/pytorch/pytorch pytorch
Expand All @@ -118,6 +119,7 @@ jobs:
git status && git show -s
pip install -r requirements.txt
echo "TORCH_XPU_OPS_COMMIT=$(<third_party/xpu.txt)" |tee -a "${GITHUB_OUTPUT}" >> "${GITHUB_ENV}"
TORCH_XPU_OPS_COMMIT="$(<third_party/xpu.txt)"
rm -rf third_party/torch-xpu-ops
git clone https://github.com/intel/torch-xpu-ops.git third_party/torch-xpu-ops
cd third_party/torch-xpu-ops
Expand Down

0 comments on commit 038bd29

Please sign in to comment.