-
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
remove reinterpret_cast in rhs.H #1435
remove reinterpret_cast in rhs.H #1435
Conversation
all tests pass with this change: |
networks/rhs.H
Outdated
@@ -273,19 +273,17 @@ constexpr int is_jacobian_term_used () | |||
} | |||
|
|||
AMREX_GPU_HOST_DEVICE AMREX_INLINE | |||
void dgesl (RArray2D& a1, RArray1D& b1) | |||
void dgesl (RArray2D& a, RArray1D& b) |
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.
a
can be made const here
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.
updated
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.
I went through and did the index shifts for myself, and got the same code.
No description provided.