Loading...
Searching...
No Matches
XTBEngineLoader.cpp
Go to the documentation of this file.
2#include <cstdlib>
3#include <stdexcept>
4#include <string>
5#include <vector>
6#ifndef _WIN32
7#include <dlfcn.h>
8#endif
9
10namespace {
11void *open_lib(const char *path) {
12#ifndef _WIN32
13 return dlopen(path, RTLD_NOW | RTLD_LOCAL);
14#else
15 (void)path;
16 return nullptr;
17#endif
18}
19void close_lib(void *h) {
20#ifndef _WIN32
21 if (h)
22 dlclose(h);
23#else
24 (void)h;
25#endif
26}
27void *load_sym(void *h, const char *n) {
28#ifndef _WIN32
29 return dlsym(h, n);
30#else
31 (void)h;
32 (void)n;
33 return nullptr;
34#endif
35}
36} // namespace
37
39 std::vector<std::string> paths;
40 if (!opt.engine_path.empty())
41 paths.push_back(opt.engine_path);
42 if (const char *e = std::getenv("RGPOT_XTB_ENGINE"))
43 if (e && *e)
44 paths.emplace_back(e);
45 if (const char *e = std::getenv("XTB_ENGINE"))
46 if (e && *e)
47 paths.emplace_back(e);
48 paths.emplace_back("libxtb_engine.so");
49 auto add_dirs = [&](const char *env) {
50 if (!env)
51 return;
52 std::string s(env);
53 size_t i = 0;
54 while (i < s.size()) {
55 auto j = s.find(':', i);
56 if (j == std::string::npos)
57 j = s.size();
58 if (j > i) {
59 std::string d = s.substr(i, j - i);
60 if (!d.empty() && d.back() != '/')
61 d += '/';
62 paths.push_back(d + "libxtb_engine.so");
63 }
64 i = j + 1;
65 }
66 };
67 add_dirs(std::getenv("EON_POTENTIALS_PATH"));
68 add_dirs(std::getenv("RGPOT_ENGINE_PATH"));
69
70 std::string last_dlerr;
71 for (const auto &p : paths) {
72 m_lib = open_lib(p.c_str());
73 if (m_lib)
74 break;
75#ifndef _WIN32
76 if (const char *e = dlerror())
77 last_dlerr = e;
78#endif
79 }
80 if (!m_lib) {
81 std::string msg = "RGPOT(xtb): libxtb_engine.so not found "
82 "(set RGPOT_XTB_ENGINE or [RgpotPot] engine_path)";
83 if (!last_dlerr.empty())
84 msg += std::string("; last dlerror: ") + last_dlerr;
85 throw std::runtime_error(msg);
86 }
87
88 auto abi =
89 reinterpret_cast<int (*)()>(load_sym(m_lib, "rgpot_xtb_abi_version"));
90 m_create = reinterpret_cast<create_fn>(load_sym(m_lib, "rgpot_xtb_create"));
91 m_destroy =
92 reinterpret_cast<destroy_fn>(load_sym(m_lib, "rgpot_xtb_destroy"));
93 m_force = reinterpret_cast<force_fn>(load_sym(m_lib, "rgpot_xtb_force"));
94 if (!abi || !m_create || !m_destroy || !m_force ||
95 abi() != RGPOT_XTB_ABI_VERSION) {
96 close_lib(m_lib);
97 m_lib = nullptr;
98 throw std::runtime_error("RGPOT(xtb): engine C ABI missing/mismatch");
99 }
100 char err[1024]{};
101 RgpotXtbConfig cfg{};
102 cfg.method = opt.method;
103 cfg.accuracy = opt.accuracy;
106 cfg.charge = opt.charge;
107 cfg.uhf = opt.uhf;
108 m_pot = m_create(&cfg, err, sizeof err);
109 if (!m_pot) {
110 close_lib(m_lib);
111 m_lib = nullptr;
112 throw std::runtime_error(std::string("RGPOT(xtb): create failed: ") + err);
113 }
114}
115
117 if (m_pot && m_destroy)
119 m_pot = nullptr;
120 // Safe to close: xtb has no torch-style static teardown hazard.
121 if (m_lib)
122 close_lib(m_lib);
123 m_lib = nullptr;
124}
125
126void XTBEngineLoader::force(long N, const double *R, const int *atomicNrs,
127 double *F, double *U, double *variance,
128 const double *box) const {
129 if (!m_pot || !m_force)
130 throw std::runtime_error("RGPOT(xtb): engine not available");
131 double var = 0.0;
132 const int rc =
133 m_force(m_pot, N, R, atomicNrs, F, U, variance ? variance : &var, box);
134 if (rc != 0)
135 throw std::runtime_error("RGPOT(xtb): force failed");
136}
void(*)(RgpotXtbPot *) destroy_fn
destroy_fn m_destroy
void force(long N, const double *R, const int *atomicNrs, double *F, double *U, double *variance, const double *box) const
RgpotXtbPot *(*)(const RgpotXtbConfig *, char *, size_t) create_fn
RgpotXtbPot * m_pot
XTBEngineLoader(const XTBEngineOptions &opt)
int(*)(RgpotXtbPot *, long, const double *, const int *, double *, double *, double *, const double *) force_fn
double accuracy
Definition xtb_c_abi.h:40
int method
RGPOT_XTB_METHOD_*.
Definition xtb_c_abi.h:39
double charge
Definition xtb_c_abi.h:43
double electronic_temperature
Kelvin.
Definition xtb_c_abi.h:41
std::string engine_path
double electronic_temperature
#define RGPOT_XTB_ABI_VERSION
Definition xtb_c_abi.h:47