mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 22:03:07 +00:00
* Do not export allocator * Make sure to use jemalloc in all downstream tests * Update readme * Remove test jemalloc boilerplate * One more * Fix clippies * One more * Clippy Co-authored-by: Daniel Lubarov <daniel@lubarov.com>
8 lines
170 B
Rust
8 lines
170 B
Rust
// Set up Jemalloc
|
|
#[cfg(not(target_env = "msvc"))]
|
|
use jemallocator::Jemalloc;
|
|
|
|
#[cfg(not(target_env = "msvc"))]
|
|
#[global_allocator]
|
|
static GLOBAL: Jemalloc = Jemalloc;
|