File tree 2 files changed +3
-6
lines changed
dev/archery/archery/benchmark
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -85,15 +85,10 @@ struct SupportedBackend {
85
85
86
86
const std::vector<SupportedBackend>& SupportedBackends () {
87
87
static std::vector<SupportedBackend> backends = {
88
- // ARROW-12316: Apple => mimalloc first, then jemalloc
89
- // non-Apple => jemalloc first, then mimalloc
90
- #if defined(ARROW_JEMALLOC) && !defined(__APPLE__)
91
- {" jemalloc" , MemoryPoolBackend::Jemalloc},
92
- #endif
93
88
#ifdef ARROW_MIMALLOC
94
89
{" mimalloc" , MemoryPoolBackend::Mimalloc},
95
90
#endif
96
- #if defined( ARROW_JEMALLOC) && defined(__APPLE__)
91
+ #ifdef ARROW_JEMALLOC
97
92
{" jemalloc" , MemoryPoolBackend::Jemalloc},
98
93
#endif
99
94
{" system" , MemoryPoolBackend::System}
Original file line number Diff line number Diff line change @@ -123,6 +123,8 @@ def default_configuration(**kwargs):
123
123
with_csv = True ,
124
124
with_dataset = True ,
125
125
with_json = True ,
126
+ with_mimalloc = True ,
127
+ with_jemalloc = True ,
126
128
with_parquet = True ,
127
129
with_python = False ,
128
130
with_brotli = True ,
You can’t perform that action at this time.
0 commit comments