Files
rdkit/Code/Bench/meta.cpp
Andrew Dirksen 2adf5211e6 add more benchmarking (#8878)
* Add many new c++ catch2 performance benchmarks.

* inline splitmix64 from boost, splitmix64 is not always available in boost. fun fact, this version is ~twice as fast

* reduce intensity of memory pressure test, target 200MB usage.

* new bench compound; accept suggestion from code review

* bench MolToCXSmiles

* Update Code/Bench/stereo.cpp

* impl first part of the suggestions from code reveiw

* impl second part of the suggestions from code reveiw
2025-11-27 14:25:57 +01:00

13 lines
248 B
C++

// benches about benches
#include <catch2/catch_all.hpp>
#include <string>
#include "bench_common.hpp"
TEST_CASE("bench_common::nth_random", "[meta]") {
BENCHMARK("bench_common::nth_random", i) {
return bench_common::nth_random(i);
};
}