mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* 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
73 lines
1.8 KiB
C++
73 lines
1.8 KiB
C++
#include <catch2/catch_all.hpp>
|
|
#include <string>
|
|
|
|
#include "bench_common.hpp"
|
|
|
|
#include <GraphMol/CIPLabeler/CIPLabeler.h>
|
|
#include <GraphMol/Chirality.h>
|
|
#include <GraphMol/ROMol.h>
|
|
#include <GraphMol/SmilesParse/SmilesParse.h>
|
|
#include <GraphMol/MolOps.h>
|
|
#include <GraphMol/test_fixtures.h>
|
|
|
|
using namespace RDKit;
|
|
|
|
TEST_CASE("Chirality::findPotentialStereo", "[stereo]") {
|
|
auto samples = bench_common::load_samples();
|
|
|
|
BENCHMARK("Chirality::findPotentialStereo") {
|
|
auto total = 0;
|
|
|
|
for (auto &mol : samples) {
|
|
auto stereo_infos = Chirality::findPotentialStereo(mol);
|
|
|
|
// workaround for https://github.com/rdkit/rdkit/issues/8880
|
|
mol.clearComputedProps();
|
|
|
|
for (auto &info : stereo_infos) {
|
|
total += info.controllingAtoms.size();
|
|
}
|
|
}
|
|
|
|
return total;
|
|
};
|
|
}
|
|
|
|
TEST_CASE("CIPLabeler::assignCIPLabels", "[stereo]") {
|
|
auto samples = bench_common::load_samples();
|
|
BENCHMARK("CIPLabeler::assignCIPLabels") {
|
|
for (auto &mol : samples) {
|
|
CIPLabeler::assignCIPLabels(mol);
|
|
}
|
|
};
|
|
}
|
|
|
|
TEST_CASE("MolOps::assignStereochemistry", "[stereo]") {
|
|
const auto cleanIt = true;
|
|
const auto force = true;
|
|
const auto flagPossibleStereoCenters = true;
|
|
|
|
auto samples = bench_common::load_samples();
|
|
|
|
const auto legacy = GENERATE(true, false);
|
|
UseLegacyStereoPerceptionFixture fx(legacy);
|
|
auto str_legacy = std::string(legacy ? "true" : "false");
|
|
|
|
BENCHMARK("MolOps::assignStereochemistry legacy=" + str_legacy) {
|
|
auto total = 0;
|
|
|
|
for (auto &mol : samples) {
|
|
MolOps::assignStereochemistry(mol, cleanIt, force,
|
|
flagPossibleStereoCenters);
|
|
for (auto &atom : mol.atoms()) {
|
|
total += atom->getChiralTag();
|
|
}
|
|
|
|
// workaround for https://github.com/rdkit/rdkit/issues/8880
|
|
mol.clearComputedProps();
|
|
}
|
|
|
|
return total;
|
|
};
|
|
}
|