-
Notifications
You must be signed in to change notification settings - Fork 24
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
portable matrix file #87
Comments
Currently, the default is to write the descriptor as a plain text |
Great. So how about the binary matrix file itself? Does it contain |
The binary file containing the data is just |
Thanks for the information! |
Currently it is saved as a filebacked matrix file and the descriptor file. I assume the matrix file is written by boost interprocess, which should be portable across language as long as the language binding for interprocess lib is available. (e.g. https://github.com/ESSS/pyboost_ipc). But the descriptor file is saved as rds file, will it be more portable to save it as plain text so that the on-disk matrix can be loaded into other non-R environment?
Also, How easy (or difficult) is it to write an equivalent python package to interchange the memory-mapped matrix file from
bigmemory
?The text was updated successfully, but these errors were encountered: