We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 902877b + 8cf9196 commit 7727ad1Copy full SHA for 7727ad1
1 file changed
.github/workflows/reusable_benchmarks.yml
@@ -111,7 +111,9 @@ jobs:
111
112
- name: Install benchmarking scripts deps
113
run: |
114
- pip install --force-reinstall -r ${{github.workspace}}/sycl-repo/unified-runtime/third_party/benchmark_requirements.txt
+ python -m venv .venv
115
+ source .venv/bin/activate
116
+ pip install -r ${{github.workspace}}/sycl-repo/unified-runtime/third_party/benchmark_requirements.txt
117
118
- name: Set core range and GPU mask
119
@@ -135,6 +137,7 @@ jobs:
135
137
id: benchmarks
136
138
working-directory: ${{env.BUILD_DIR}}
139
run: >
140
+ source ${{github.workspace}}/.venv/bin/activate &&
141
taskset -c ${{ env.CORES }} ${{ github.workspace }}/sycl-repo/unified-runtime/scripts/benchmarks/main.py
142
~/bench_workdir_umf
143
--umf ${{env.BUILD_DIR}}
0 commit comments