summaryrefslogtreecommitdiff
path: root/libcxx/test/benchmarks/algorithms/set_intersection.bench.cpp
AgeCommit message (Collapse)Author
2025-01-30[libc++] Refactor the sequence container benchmarks (#119763)Louis Dionne
Rewrite the sequence container benchmarks to only rely on the actual operations specified in SequenceContainer requirements and add benchmarks for std::list, which is also considered a sequence container. One of the major goals of this refactoring is also to make these container benchmarks run faster so that they can be run more frequently. The existing benchmarks have the significant problem that they take so long to run that they must basically be run overnight. This patch reduces the size of inputs such that the rewritten benchmarks each take at most a minute to run. This patch doesn't touch the string benchmarks, which were not using the generic container benchmark functions previously.
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-07-31[libc++] Move the benchmarks under libcxx/test (#99371)Louis Dionne
This is an intermediate and fairly mechanical step towards unifying the benchmarks with the rest of the test suite. Moving this around requires a few changes, notably making sure we don't throw a wrench into the discovery process of the normal test suite. This won't be a problem anymore once benchmarks are taken into account by the test setup out of the box.