Skip to content

Commit 8dbc4b6

Browse files
authored
Disable ASLR for benchmark (#13769)
1 parent 4bf64b5 commit 8dbc4b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,10 @@ jobs:
225225
uses: actions/checkout@v4
226226
with:
227227
fetch-depth: 0
228+
# ASLR can cause a lot of noise due to missed sse opportunities for memcpy
229+
# and other operations, so we disable it during benchmarking.
230+
- name: Disable ASLR
231+
run: echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
228232
- name: apt
229233
run: |
230234
set -x

0 commit comments

Comments
 (0)