pyDive.init() can not be called twice without throwing an error.
Is there a getter method that allows us to check if pyDive is already initialized?
(E.g. MPI offers an MPI_Initialized( flag ) function)
This can be relevant for non-linear (non-script) workflow as they are common in a ipython notebook.
if not pyDive.is_initialized():
pyDive.init()
pyDive.init()can not be called twice without throwing an error.Is there a getter method that allows us to check if
pyDiveis already initialized?(E.g.
MPIoffers an MPI_Initialized( flag ) function)This can be relevant for non-linear (non-script) workflow as they are common in a ipython notebook.