Skip to content

Commit 5efbb69

Browse files
committed
update
1 parent 2fc532f commit 5efbb69

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/scripts/env.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

3-
source /opt/intel/oneapi/compiler/latest/env/vars.sh
3+
source /opt/intel/oneapi/compiler/2025.1/env/vars.sh
44
source /opt/intel/oneapi/pti/latest/env/vars.sh
5-
source /opt/intel/oneapi/umf/latest/env/vars.sh
6-
source /opt/intel/oneapi/ccl/latest/env/vars.sh
7-
source /opt/intel/oneapi/mpi/latest/env/vars.sh
5+
source /opt/intel/oneapi/umf/0.10/env/vars.sh
6+
source /opt/intel/oneapi/ccl/2021.15/env/vars.sh
7+
source /opt/intel/oneapi/mpi/2021.15/env/vars.sh
88
icpx --version
99
sycl-ls

.github/workflows/_linux_ut.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,11 @@ jobs:
474474
run: |
475475
set -x -e -o pipefail
476476
source activate xpu_op_${ZE_AFFINITY_MASK}
477-
pip install pytest pytest-timeout xmlrunner unittest-xml-reporting
477+
pip install pytest pytest-timeout xmlrunner unittest-xml-reporting zstandard transformers
478+
pip install hypothesis==6.131.27
478479
mkdir -p ut_log/xpu_distributed
479480
cp ../pytorch/third_party/torch-xpu-ops/.github/scripts/ut_result_check.sh ut_log/xpu_distributed/
481+
cp ../pytorch/third_party/torch-xpu-ops/.github/scripts/check-ut.py ut_log/
480482
cd ../pytorch/third_party/torch-xpu-ops/test/xpu
481483
XCCL_ENABLE=$(python -c "import torch;print(torch.distributed.is_xccl_available())")
482484
if [[ "${XCCL_ENABLE,,}" == 'false' ]] || [[ "${XCCL_ENABLE}" == '0' ]]; then
@@ -497,7 +499,8 @@ jobs:
497499
run: |
498500
source activate xpu_op_${ZE_AFFINITY_MASK}
499501
pip install junitparser
500-
python .github/scripts/check-ut.py ${{ github.workspace }}/ut_log/*.xml \
502+
cd ${{ github.workspace }}/ut_log/
503+
python check-ut.py ${{ github.workspace }}/ut_log/*.xml \
501504
2>${{ github.workspace }}/ut_log/xpu_distributed/pytorch_distributed_test_summary.log | \
502505
>> $GITHUB_STEP_SUMMARY || true
503506
- name: Upload Inductor XPU UT Log

0 commit comments

Comments
 (0)