Files
Misaki.HighPerformance/Misaki.HighPerformance.Test/Program.cs
Misaki 1e00f4eb25 Enhance memory management and data structures
Updated `CollectionBenchmark` for setup/cleanup methods,
streamlined benchmarking in `Program.cs`, and improved
documentation in `AllocationOption` and `Allocator` enums.
Made `Enumerator` structs public in several collections
and clarified constructor parameters. Introduced a new
`UnsafeStack` struct for stack operations. Enhanced
`AllocationManager` with better memory tracking and
management, ensuring proper allocation and disposal.
2025-04-03 15:47:43 +09:00

5 lines
114 B
C#

using BenchmarkDotNet.Running;
using Misaki.HighPerformance.Test;
BenchmarkRunner.Run<CollectionBenchmark>();