From e1083f48443bb3abbb9c6ca205ffda2193c93a12 Mon Sep 17 00:00:00 2001 From: Avril Date: Wed, 17 Feb 2021 21:51:44 +0000 Subject: [PATCH] re-enable prealloc by default --- .gitignore | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 58983bb..26a3414 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /target *~ *.dump +*.dump.raw profiling/ diff --git a/Cargo.toml b/Cargo.toml index 7453c0e..b1f12c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ codegen-units = 1 panic = "unwind" [features] -default = ["splash", "inspect", "defer-drop", "jemalloc"] +default = ["splash", "inspect", "defer-drop", "jemalloc", "prealloc"] # Use jemalloc as global allocator instead of system allocator. # May potentially cause some speedups and better memory profile on large runs.