-
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
Implement io for thermodynamic force #41
base: main
Are you sure you want to change the base?
Implement io for thermodynamic force #41
Conversation
Sorry for spamming this pull request with commits, but there is problems when using the newly added function on the cluster that I'm working on. Hence, I'm trying a lot to get rid of these. |
The current state of the branch can be compiled and passes all tests on a GPU node of the cluster. |
That's not an issue. We can fix this when the PR is finished. Committing often is better than not committing. :) |
Very good. The last time I checked Github did not provided GPU runners. So, unfortunately, we cannot automatically test on GPUs. |
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.
Looks good.
mrmd/io/DumpThermoForce.hpp
Outdated
ScalarView::HostMirror forceView("forceView", numBins); | ||
auto thermoForce = Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace(), | ||
thermodynamicForce.getForce(typeId)); | ||
for (idx_t idx = 0; idx < numBins; ++idx) | ||
{ | ||
forceView(idx) = thermoForce(idx); | ||
} | ||
|
||
dumpThermoForce.dump(filename, thermodynamicForce.getForce().createGrid(), forceView); |
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.
Why the copying? Directly use thermoForce
?
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.
If I have a thermodynamicForce
with multiple species, getForce(typeId)
does, apparently, return a View
with an incompatible Layout to ScalarView
and the ThermoForce.test.cpp
fails. I haven't figured out how to solve this issue without the naive for loop, but I would be happy for further suggestions.
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.
hmm, I need to check this.
mrmd/io/DumpThermoForce.hpp
Outdated
ScalarView::HostMirror forceView("forceTest", numBins); | ||
auto thermoForce = Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace(), | ||
thermodynamicForce.getForce(typeId)); | ||
for (idx_t idx = 0; idx < numBins; ++idx) | ||
{ | ||
forceView(idx) = thermoForce(idx); | ||
} | ||
dumpThermoForce.dumpStep(forceView); |
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.
Use thermoForce
directly?
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.
If I have a
thermodynamicForce
with multiple species,getForce(typeId)
does, apparently, return aView
with an incompatible Layout toScalarView
and theThermoForce.test.cpp
fails. I haven't figured out how to solve this issue without the naive for loop, but I would be happy for further suggestions.
Here, this problem can not be ignored, since we necessarily have multiple species.
There are multiple ways to clean up the commit. One way would be.
|
Solves #40
I'm not at all sure about the use of the Kokkos structures and functions, but it seems to work fine.