Skip to content
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

Open
wants to merge 36 commits into
base: main
Choose a base branch
from

Conversation

J-Hizzle
Copy link
Contributor

Solves #40

I'm not at all sure about the use of the Kokkos structures and functions, but it seems to work fine.

@J-Hizzle
Copy link
Contributor Author

J-Hizzle commented Mar 18, 2025

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.

@J-Hizzle
Copy link
Contributor Author

The current state of the branch can be compiled and passes all tests on a GPU node of the cluster.

@XzzX
Copy link
Owner

XzzX commented Mar 19, 2025

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.

That's not an issue. We can fix this when the PR is finished. Committing often is better than not committing. :)

@XzzX
Copy link
Owner

XzzX commented Mar 19, 2025

The current state of the branch can be compiled and passes all tests on a GPU node of the cluster.

Very good. The last time I checked Github did not provided GPU runners. So, unfortunately, we cannot automatically test on GPUs.

Copy link
Owner

@XzzX XzzX left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good.

Comment on lines 33 to 41
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);
Copy link
Owner

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?

Copy link
Contributor Author

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.

Copy link
Owner

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.

Comment on lines 52 to 59
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);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use thermoForce directly?

Copy link
Contributor Author

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.

Here, this problem can not be ignored, since we necessarily have multiple species.

@XzzX
Copy link
Owner

XzzX commented Mar 19, 2025

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.

That's not an issue. We can fix this when the PR is finished. Committing often is better than not committing. :)

There are multiple ways to clean up the commit. One way would be.

git branch <backup_name> create a backup branch if something goes wrong
git reset --mixed main point the current branch to the state of main, files on the filesystem will not be changed.
commit the changed files as you like
git push -f origin <name>:<name> overwrite the branch on github with the current state.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants