treat Py_Finalize() more like MPI_Finalize()
this is done by - not automatically calling Py_Finalize() when destructing a python interpreter - adding wrapper functions so that the call to Py_Finalize() is hidden and skipped if Python support is no included. - call the Python::finalize() wrapper in main.cpp (similar to the equivalent Kokkos function) - add a wrapper of that call to the C library interface
This commit is contained in:
@ -20,9 +20,8 @@
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class PythonImpl : protected Pointers, public PythonInterface {
|
||||
public:
|
||||
bool external_interpreter;
|
||||
|
||||
public:
|
||||
PythonImpl(class LAMMPS *);
|
||||
~PythonImpl();
|
||||
void command(int, char **);
|
||||
@ -33,6 +32,7 @@ class PythonImpl : protected Pointers, public PythonInterface {
|
||||
int execute_string(char *);
|
||||
int execute_file(char *);
|
||||
bool has_minimum_version(int major, int minor);
|
||||
static void finalize();
|
||||
|
||||
private:
|
||||
void *pyMain;
|
||||
|
||||
Reference in New Issue
Block a user