Skip to content

Commit 07ca845

Browse files
[Nightly] Fix PT2E log path issue (#1552)
1 parent f2c7ca1 commit 07ca845

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/pt2e/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ runs:
9696
run: |
9797
source activate e2e_ci
9898
source .github/scripts/env.sh ${{ inputs.pytorch }}
99-
pt2e_logs_dir="${{ github.workspace }}/../pytorch/inductor_log"
99+
pt2e_logs_dir="${{ github.workspace }}/../pytorch/inductor_log/pt2e"
100100
rm -rf "${pt2e_logs_dir}" && mkdir -p "${pt2e_logs_dir}"
101101
if [[ "${{ inputs.scenario }}" == *"accuracy"* ]];then
102102
if [[ "${{ inputs.dt }}" == *"float32"* ]];then

.github/workflows/nightly_ondemand.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ jobs:
325325
source activate e2e_ci
326326
cp -r ${{ github.workspace }}/.github/scripts/summary_pt2e.py ${{ github.workspace }}/upload_files
327327
cd ${{ github.workspace }}/upload_files
328-
python summary_pt2e.py ${{ github.workspace }}/upload_files
328+
python summary_pt2e.py ${{ github.workspace }}/upload_files/inductor_log/pt2e
329329
rm -rf summary_pt2e.py
330330
fi
331331
- name: Upload Inductor XPU E2E Data

.github/workflows/nightly_ondemand_rolling.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ jobs:
340340
source activate e2e_ci
341341
cp -r ${{ github.workspace }}/.github/scripts/summary_pt2e.py ${{ github.workspace }}/upload_files
342342
cd ${{ github.workspace }}/upload_files
343-
python summary_pt2e.py ${{ github.workspace }}/upload_files
343+
python summary_pt2e.py ${{ github.workspace }}/upload_files/inductor_log/pt2e
344344
rm -rf summary_pt2e.py
345345
fi
346346
- name: Upload Inductor XPU E2E Data

.github/workflows/nightly_ondemand_whl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ jobs:
287287
source activate e2e_ci
288288
cp -r ${{ github.workspace }}/.github/scripts/summary_pt2e.py ${{ github.workspace }}/upload_files
289289
cd ${{ github.workspace }}/upload_files
290-
python summary_pt2e.py ${{ github.workspace }}/upload_files
290+
python summary_pt2e.py ${{ github.workspace }}/upload_files/inductor_log/pt2e
291291
rm -rf summary_pt2e.py
292292
fi
293293
- name: Upload Inductor XPU E2E Data

0 commit comments

Comments
 (0)