File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -64,8 +64,6 @@ permissions: read-all
64
64
65
65
env :
66
66
PYTHON_VERSION : " 3.10"
67
- # FIXME: in the next versions of pti (most likely 0.12.3) this will not need to be done
68
- PTI_DEVICE_SYNC_DELTA : " 1"
69
67
BENCHMARKING_METHOD : ${{ inputs.benchmarking_method || 'UPSTREAM_PYTORCH_PROFILER' }}
70
68
VERIFY : ${{ (github.event_name == 'pull_request' || github.event_name == 'schedule' || inputs.verify) && '1' || '0' }}
71
69
TAG : ${{ inputs.tag || (github.event_name == 'pull_request' && format('pr-{0}', github.event.number)) || (github.event_name == 'schedule' && 'ci') || 'test' }}
@@ -128,9 +126,9 @@ jobs:
128
126
run : |
129
127
cd benchmarks
130
128
pip install .
131
- pip install intel-pti==0.12.3
129
+ pip install intel-pti==0.12.4
132
130
PTI_LIBS_DIR=$(python -c "import sysconfig; print(sysconfig.get_paths()['stdlib']+'/..')")
133
- # the output should contain: `libpti.so`, `libpti_metrics.so.0.12.3 ` and `libpti_view.so.0.12.3 `
131
+ # the output should contain: `libpti.so`, `libpti_metrics.so.0.12.4 ` and `libpti_view.so.0.12.4 `
134
132
ls $PTI_LIBS_DIR
135
133
echo "PTI_LIBS_DIR=$PTI_LIBS_DIR" >> $GITHUB_ENV
136
134
You can’t perform that action at this time.
0 commit comments