-
Notifications
You must be signed in to change notification settings - Fork 27
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
Update actions checkout and setup-python (fixes warning). #277
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fdmalone
force-pushed
the
update_actions
branch
from
December 10, 2023 01:18
9e7558a
to
84f8631
Compare
I found several problems:
|
linusjoonho
added a commit
that referenced
this pull request
Dec 10, 2024
1. fix msd-afqmc green's function with gpu change `walker_batch.Ga.fill(0.0 + 0.0j)` to `walker_batch.Ga = xp.zeros_like(walker_batch.Ga)` since cupy does not have cupy.ndarray.fill 2. fix initial walker of msd trial from ``` elif isinstance(trial, ParticleHole): initial_walker = numpy.hstack([trial.psi0a, trial.psi0b]) ``` to ``` elif isinstance(trial, ParticleHole): initial_walker = numpy.hstack([trial.psi0a, trial.psi0b]) random_walker = numpy.random.random(initial_walker.shape) initial_walker = initial_walker + random_walker initial_walker, _ = numpy.linalg.qr(initial_walker) ``` Otherwise cause issues. 3. fix the integration. In #277, the msd example was disabled. Now fixed with the second point mentioned above. 4. Modify the example for running msd-afqmc with MPI / GPU
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The mpi tests failing was a red herring. The examples were failing because of #278, this sent a signal to the other tests to fail but I'm guessing the error was only received on the root process so the MPI jobs would hang. I've set a timeout for these for the moment but there may be a more sensible thing to do.