File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- source /opt/intel/oneapi/compiler/latest /env/vars.sh
3
+ source /opt/intel/oneapi/compiler/2025.1 /env/vars.sh
4
4
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
8
8
icpx --version
9
9
sycl-ls
Original file line number Diff line number Diff line change @@ -474,9 +474,11 @@ jobs:
474
474
run : |
475
475
set -x -e -o pipefail
476
476
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
478
479
mkdir -p ut_log/xpu_distributed
479
480
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/
480
482
cd ../pytorch/third_party/torch-xpu-ops/test/xpu
481
483
XCCL_ENABLE=$(python -c "import torch;print(torch.distributed.is_xccl_available())")
482
484
if [[ "${XCCL_ENABLE,,}" == 'false' ]] || [[ "${XCCL_ENABLE}" == '0' ]]; then
@@ -497,7 +499,8 @@ jobs:
497
499
run : |
498
500
source activate xpu_op_${ZE_AFFINITY_MASK}
499
501
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 \
501
504
2>${{ github.workspace }}/ut_log/xpu_distributed/pytorch_distributed_test_summary.log | \
502
505
>> $GITHUB_STEP_SUMMARY || true
503
506
- name : Upload Inductor XPU UT Log
You can’t perform that action at this time.
0 commit comments