Overview of benchmark suites
mainThe bumpalo benchmark directory contains two distinct suites:
allocator_api.rs: Measures the performance of bump allocators using the genericstd::alloc::AllocatorAPI. These benchmarks focus on raw allocation, growing, and shrinking operations.benches.rs: Contains miscellaneous Bumpalo-specific benchmarks, including performance when using collections likeVec<T>with a bump allocator.
Note: These are micro-benchmarks. While they show the relative performance of bumpalo against blink-alloc and std::alloc::System, application-level performance may vary based on whether the application is actually bottlenecked by allocation.