We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running NMODL on multiple mod files (such as nmodl file1.mod file2.mod ...) with SymPy enabled, a cryptic warning appears:
nmodl file1.mod file2.mod ...
context.c:56: warning: mpd_setminalloc: ignoring request to set MPD_MINALLOC a second time
From this SO answer it seems the culprit is this line in cPython.
Possible solutions:
Py_IsInitialized
Python.h
The text was updated successfully, but these errors were encountered:
Third option, only allow one MOD file at a time.
Sorry, something went wrong.
No branches or pull requests
When running NMODL on multiple mod files (such as
nmodl file1.mod file2.mod ...
) with SymPy enabled, a cryptic warning appears:From this SO answer it seems the culprit is this line in cPython.
Possible solutions:
Py_IsInitialized
to check if the interpreter is running (part of stable ABI). This also needs thePython.h
headerThe text was updated successfully, but these errors were encountered: