summaryrefslogtreecommitdiff
path: root/libcxx/test/benchmarks/format/write_string_comparison.bench.cpp
AgeCommit message (Collapse)Author
2024-11-05[libc++] Make benchmarks forward-compatible with the test suite (#114502)Louis Dionne
This patch fixes warnings and errors that come up when running the benchmarks as part of the test suite. It also adds the necessary Lit annotations to make it pass in various configurations and increases the portability of the benchmarks.
2024-10-06[libc++][format][1/3] Adds more benchmarks. (#101803)Mark de Wever
This patch is the start of a series to improve the speed of std::format, std::format_to, std::format_to_n, and std::formatted_size. This is mostly achieved by changing the __output_buffer class. This new __output_buffer class also makes it easier to implement buffering for P3107R5 "Permit an efficient implementation of std::print"