-
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
Upstream your frontend? #7
Comments
@ngoldbaum thanks for contacting us, wuhu! ✨ Our plan is definitely to send the final version to upstream, absolutely. This repo is only a development repo until we have a first usable version. Unfortunately, the repo is progressing a bit slower then I hoped since the work is done by undergraduates and interns that are working at our lab(s) from time to time (readme). Our current status (#6) is that we can finally read 2D and 3D meshes of arbitrary user-defined size (regularly spaced, Cartesian) but parallel particle reading seems not to work. If you would be willing to help a bit with reviewing (advising) the code this would be fantastic! ☀️ I have to admit the yt frontent documentation is a bit rare :) I motivated our students to engage with the mailing list (Daniel in 2015) but it is also a learning progress for them. I know we have new interns starting this month and I might be able to catch some for this task. Nevertheless, I am working this and next week on openPMD related topics anyway at LBNL, so if you are available we could also meet via video chat and push the implementation a bit for a day or so. Thanks again for getting in contact! |
CCing @RemiLehe in case he is interested to participate. |
oh on your initial question:
I tried to avoid confusion by giving the repository description from the beginning as
Additionally, the main branch is called |
Thank you, it is much clearer now!
Yes, the how-to-write-a-frontend docs is on our list of things to improve. If you can open issues with suggestions for specific improvements or requests for clarification that will also help identifying concrete things to improve. As the person writing a frontend you are in a far better position to tell us how to improve the docs than we are as people who are already familar with yt. Can you share a little bit more detail about how openPMD stores particles? In principle each process in a domain-decomposed MPI-parallel yt job should only need to read the particles it needs to. You mentioned that your data are uniform resolution --- are you splitting up the data into tiles? We do a similar trick in the FITS frontend to allow reading in large PPV data cubes. |
Good point, shall I open questions directly in the main bitbucket repo?
Yes we implement tiling to allow parallel writing (e.g., via parallel HDF5) and parallel processing.
|
New issues should be opened here: https://bitbucket.org/yt_analysis/yt/issues/new I guess the key is the teach your frontend about this It would probably be a good idea to discuss this further on yt-dev, where you will get the attention of more people than just me :) |
Absolutely, maybe we can then leach a bit from your
yes, we do a spatial domain decomposition in our codes.
Nevertheless, it is not guaranteed that a file contains both particles and mesh fields. Luckily, this is also unnecessary since the final fields are "contiguously" stored in HDF5 (at least virtually it looks contiguous due to internal chunking using MPI-I/O) so that a reader can choose the new decomposition on it's own. We are also implementing the same structure in ADIOS where one can actually query the underlying chunking (in "progress groups") to remove the transparency layer. But this would be an additional implementation we can do after parallel HDF5 is up and working.
Actually we just don't understand the master concept how to tell our parallelization to yt. Performance-wise our codes scale pretty well, even with I/O (full size Titan/ORNL) :)
Okey, let us continue on the list :) |
Frontend documentation questions migrated to |
@ax3l What is the status of merging this openPMD-yt fronted to yt? |
Hi!
I'm a yt developer who stumbled on this repo via a github search.
First, can you add a note that this is not the canonical repo for yt? Since we're not on github a naive searcher might get confused.
Second, I'd like to engage with you about upstreaming your frontend. This will not only make it easier for users of openPMD to get access to your frontend, but you will also be able to take advantage of our testing infrastructure and get help maintaining the frontend and avoiding bitrot from upstream changes.
If you're interested, I'd encourage you to contact our development mailing list:
http://lists.spacepope.org/listinfo.cgi/yt-dev-spacepope.org
Or if you're not comfortable with that, feel free to contact me offline (ngoldbau@illinois.edu). I'm very happy to help out with mercurial or yt code issues.
Best,
Nathan Goldbaum
The text was updated successfully, but these errors were encountered: