Template to use if user want to provide potential. More...
#include <GPRPotential.h>
Public Member Functions | |
| GPRPotential (const Parameters &p) | |
| void | registerGPRObject (gpr::GaussianProcessRegression *_gpr_model) |
| void | initialize (void) |
| void | cleanMemory (void) |
| void | force (long N, const double *R, const int *atomicNrs, double *F, double *U, double *variance, const double *box) |
| Public Member Functions inherited from eonc::Potential | |
| Potential (PotType a_ptype) | |
| Potential (PotType a_ptype, const Parameters &) | |
| Potential (const Parameters &a_params) | |
| virtual | ~Potential () |
| std::tuple< double, AtomMatrix > | get_ef (const AtomMatrix &pos, const VectorXi &atmnrs, const Matrix3d &box) |
| PotType | getType () const |
| virtual bool | isSurrogate () const noexcept |
| Whether this is a surrogate (GP) potential. | |
| virtual bool | requiresIsolatedMoleculeLayout () const noexcept |
| True for molecular QM / non-PBC backends (NWChem socket, ASE ORCA/NWChem, …). | |
| virtual bool | isThreadSafe () const noexcept |
| Whether this potential's force() can be called from multiple threads on the SAME instance. | |
| virtual bool | isSharedInstanceThreadSafe () const noexcept |
| Conservative gate for sharing one Potential instance across threads. | |
| virtual bool | needsPerImageInstance () const noexcept |
| Whether NEB should create separate Potential instances per image for true parallel force evaluation. | |
| virtual bool | supportsBatchEvaluation () const noexcept |
| Whether this potential supports batched evaluation of N systems in a single call. | |
| virtual void | forceBatch (long nSystems, long nAtoms, const double *const *positions, const int *const *atomicNrs, double *const *forces, double *energies, double *variances, const double *const *boxes) |
| Evaluate forces for N systems in a single call. | |
Private Attributes | |
| gpr::GaussianProcessRegression * | gpr_model |
Additional Inherited Members | |
| Public Attributes inherited from eonc::Potential | |
| std::atomic< size_t > | forceCallCounter |
| Protected Attributes inherited from eonc::Potential | |
| PotType | ptype |
Template to use if user want to provide potential.
Definition at line 18 of file GPRPotential.h.
| GPRPotential::GPRPotential | ( | const Parameters & | p | ) |
Definition at line 50 of file GPRPotential.cpp.
| void GPRPotential::cleanMemory | ( | void | ) |
Definition at line 62 of file GPRPotential.cpp.
|
virtual |
Implements eonc::Potential.
Definition at line 67 of file GPRPotential.cpp.
| void GPRPotential::initialize | ( | void | ) |
Definition at line 60 of file GPRPotential.cpp.
| void GPRPotential::registerGPRObject | ( | gpr::GaussianProcessRegression * | _gpr_model | ) |
Definition at line 55 of file GPRPotential.cpp.
|
private |
Definition at line 21 of file GPRPotential.h.