Skip to content

Commit f73b04f

Browse files
committed
fix tritonbench noise issue
1 parent 91e453e commit f73b04f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/tritonbench.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,16 @@ jobs:
168168
run: |
169169
set -eux
170170
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
171175
container_name=$(docker run \
172176
${GPU_FLAG:-} \
173177
-e DEVICE_NAME \
174178
-e DEVICE_TYPE \
175179
-e CONDA_ENV \
180+
--cpuset-cpus 10 \
176181
--ipc=host \
177182
--tty \
178183
--detach \

0 commit comments

Comments
 (0)