-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
Codegen for CVODE #1493
Codegen for CVODE #1493
Conversation
`DERIVATIVE` blocks can't have array variables in NOCMODL by default, so let's go with that.
Uses finite differences
Also use a set since we don't care about the actual index for the RHS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! In terms of testing I suspect POINT_PROCESS and ARTIFICIAL_CELL might both behave in special ways, you can either include them now or fix them in separate PRs.
Must have semantics of type `cvodeieq` (see nrn/src/init.cpp)
It already exists in `CodegenCppVisitor`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicely done.
Actual codegen for CVODE. Requires #1467 (done), #1483 (done), #1484 (done)