Skip to content

Commit

Permalink
Linux && x86_64 for jemalloc
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 11, 2024
1 parent a5bdd21 commit a3e42bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyarrow/tests/test_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import contextlib
import os
import platform
import signal
import subprocess
import sys
Expand All @@ -30,7 +31,7 @@

possible_backends = ["system", "jemalloc", "mimalloc"]

should_have_jemalloc = sys.platform == "linux"
should_have_jemalloc = (sys.platform == "linux" and platform.machine() == 'x86_64')
should_have_mimalloc = sys.platform == "win32"


Expand Down

0 comments on commit a3e42bb

Please sign in to comment.