-
Notifications
You must be signed in to change notification settings - Fork 2
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
Rename kernels #9
base: main
Are you sure you want to change the base?
Conversation
Renamed to match the subroutines name (weighted mrt). Added a log message and abort for default mrt q27, as it is not existing.
Q:
My suggestion: I create a new case ( |
As I'm now working on it.... Q:
Suggestion: |
See comments above: then we should change all the other recursive, regularized ones... See code below:
Removing trailing capital letter everywhere in routine names. Q: Should it be
|
Renamed to match the subroutines name (weighted mrt incomp). Added a log message and abort for default mrt q27, as it is not existing.
@KannanMasilamani please have a look. |
|
Renamed to match the subroutines name (cumulant_d3q27_extended_fast).
Sounds good to me. |
Renamed to match the guidelines. Because routine is not generic in terms of our definition, where it means for 'fluid' and 'fluid_incomp'. I also corrected some formatting things but stopped at some point. This should be done seperatly.
Just to understand the generic, I thought we used generic keyword to compute kernels which are stencil independent. Now we have generic for d3q19 and d3q27, why? |
'Now' is good. It's like that for a while. Besides, I don't know what you once decided. |
This is about the routine name not the configuration option, right? I wouldn't call it |
Going by the other names, it would be |
write(logUnit(1),*) 'Checking admissibility of omegas for parametrized & | ||
& Cumulant scheme' |
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.
Could we avoid using strings over two lines? Instead of doing that, I'd prefer to have:
write(logUnit(1),*) 'Checking admissibility of omegas for parametrized & | |
& Cumulant scheme' | |
write(logUnit(1),*) 'Checking admissibility of omegas for parametrized' & | |
& // ' Cumulant scheme' |
Some more discussion on this is found in #10. |
Rename some of the kernels - their configure options - to match the subroutines names.