-
Notifications
You must be signed in to change notification settings - Fork 13
New kernel for XL-BOMD and fix bug in response_orig #216
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
Conversation
src/prg_response_mod.F90
Outdated
|
||
kB = 8.61739e-5 ! (eV/K) | ||
|
||
ALLOCATE(FOCC(HDIM)) |
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.
Please convert Fortran keywords to lower case, i.e.
ALLOCATE(FOCC(HDIM)) | |
allocate(FOCC(HDIM)) |
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.
Ok, thanks. Just found there is new merge, need to rebase as well.
0263cb8
to
1ba8836
Compare
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.
Thanks!
X(I,I) = X(I,I) + 1.D0 | ||
enddo | ||
|
||
do I = 1, HDIM |
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 suspect that loop may become a bottleneck and this operation may need to be implemented in BML to use GPU...
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.
Right, will do it.
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.
@jeanlucf22 Are you ok with merging this PR as is or would you prefer the work on the BML to be added first?
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.
@nicolasbock go ahead! We want that function integrated ASAP. I was just commenting about what I see as a future bottleneck
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 created lanl/bml#592 to track the refactor @ares201005 |
Thank you! |
Add a new Kernel function for XL-BOMD in LATTE and fix a bug in prg_canon_response_orig.
This change is