We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91e453e commit f73b04fCopy full SHA for f73b04f
.github/workflows/tritonbench.yml
@@ -168,11 +168,16 @@ jobs:
168
run: |
169
set -eux
170
171
+ # using `--cpuset-cpus <SINGLE_CPU_CORE>` is critical for stabilizing the performance
172
+ # on this runner (using SPR CPU). This might be related to task migration/Speed Select, etc.
173
+ # here, we are just picking a random CPU core (core 10).
174
+ # see https://github.com/pytorch/pytorch-integration-testing/issues/130
175
container_name=$(docker run \
176
${GPU_FLAG:-} \
177
-e DEVICE_NAME \
178
-e DEVICE_TYPE \
179
-e CONDA_ENV \
180
+ --cpuset-cpus 10 \
181
--ipc=host \
182
--tty \
183
--detach \
0 commit comments