We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5525c71 commit 47de1d6Copy full SHA for 47de1d6
2 files changed
.github/workflows/allocator-bench.yml
@@ -17,7 +17,9 @@ jobs:
17
- system
18
- jemalloc
19
- mimalloc_v2
20
+ - mimalloc_v2_no_thp
21
- mimalloc_v3
22
+ - mimalloc_v3_no_thp
23
tokio_multi_thread: [true, false]
24
platform:
25
- ubuntu-24.04-arm
Cargo.toml
@@ -82,11 +82,13 @@ url = "=2.5.8"
82
[features]
83
# default = ["auto-allocator"]
84
__mimalloc = ["dep:mimalloc"]
85
-auto-allocator = ["mimalloc_v3"]
+auto-allocator = ["dep:mimalloc"]
86
dhat = ["dep:dhat"]
87
jemalloc = ["dep:tikv-jemallocator"]
88
mimalloc_v2 = ["__mimalloc", "mimalloc/v2"]
89
+mimalloc_v2_no_thp = ["mimalloc_v2", "mimalloc/no_thp"]
90
mimalloc_v3 = ["__mimalloc"]
91
+mimalloc_v3_no_thp = ["mimalloc_v3", "mimalloc/no_thp"]
92
tokio-multi-thread = []
93
tui = [
94
"dep:crossterm",
0 commit comments