-
Notifications
You must be signed in to change notification settings - Fork 77
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
feat: basic RNTuple writing #1356
Conversation
The writing functionality still needs a lot of work, but in the interest of keeping PRs reasonably sized, I will follow up with other PRs. With the changes in this PR, it is now possible to write flat arrays of native data types (except bool). The files produced are able to be correctly read by ROOT, so the most basic structure and functionality is working. Unfortunately, we are currently not able to test reading the files with ROOT in the CI, since ROOT 6.34 is still not available on conda-forge. However, I did run the tests locally and everything passes. |
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.
@ariostas - Fantastic! This PR is an essential step in moving forward! I agree with your reasoning to split further development to proceed with smaller PRs. Building docs fails, but it's unrelated to this PR. Please, go ahead and merge it when you are ready.
* Writing RNTuple with no data now works * Re-enabled existing writing tests and fixed a few things * It works now for flat arrays of native types * Fix test * Some cleanup * Added test for basic writing * Fixed utf-8 string encoding * Fixed typo
This PR adds basic RNTuple writing functionality. Currently, it can write an RNTuple with some simple fields, but no data. My plan for this PR is to get it to write flat columns of basic types, which it seems like it won't take too much work.
After this PR, there will still be a lot of work to fully implement RNTuple writing, but it will be nice to have the most basic functionality working so that we can test things and build up from there.