-
Notifications
You must be signed in to change notification settings - Fork 35
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
add docs on Jacobian caching #1561
add docs on Jacobian caching #1561
Conversation
blocked by #1559 |
can be disabled at runtime by setting ``integrator.use_jacobian_caching = 0``. | ||
|
||
On GPUs, we disable Jacobian caching due to the increased memory needs. This | ||
is disabled at compile-time via the build parameter ``USE_JACOBIAN_CACHING``. |
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.
Its currently only disabled by default for CUDA
I think? Should we change that?
Also I think you mean "disabled by default but can be enabled at compile-time via USE_JACOBIAN_CACHING=TRUE
"
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.
you're right. I've fixed that.
that's a good point -- maybe that explains why HIP performance is not as good as CUDA? |
addressing the CUDA-specific part in #1564 |
No description provided.