-
Notifications
You must be signed in to change notification settings - Fork 30
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
Issue when running on SLURM cluster #76
Comments
Please post the entire error message and the debug.log Please also post your entire arguments: storage_backend, fitter_kwargs Perhaps there is a rounding issue, if the sampled points receive strange weights. You could try putting a print there to see what logweights and widthratio are |
Apologies, I forgot the last line of the error message:
Here are the parameters: storage_backend: Literal['hdf5', 'csv', 'tsv'] = 'hdf5'
run_kwargs={'dlogz': 1, 'dKL': 1, 'frac_remain': 0.5, 'Lepsilon': 0.01, 'min_num_live_points': 100} I am attaching two files with the values of logweights and widthratio, and the debug logger. |
That's odd, logweights is a 1-dimensional array instead of two-dimensional. |
Could you check if changing the line https://github.com/JohannesBuchner/UltraNest/blob/v3.3.3/ultranest/integrator.py#L1543
to
fixes this issue? |
Description
Running
UltraNest
on a remoteSLURM
cluster on multiple nodes usingIntel MPI 2019.9
.What I Did
Previously my code has been running without issues. There have been no changes in the fitting part of my code, but now it fails with the following message:
This is how the sampler is initialized, nothing special happening here:
This is not happening on my local machine and I suspect this may be due to a change in the cluster. Could this be the case, or could this be an issue within
UltraNest
or my code?Thank you in advance!
The text was updated successfully, but these errors were encountered: