-
Notifications
You must be signed in to change notification settings - Fork 97
Developed zfp python wrapper for numcodecs and is ready to be used #160
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
Changes from all commits
80a571c
50cfdb5
8b40523
dbc2b64
33de949
035f90d
1adcf4b
a33e947
6acb24d
812441a
5972e09
1a7c105
161cbca
d44f308
a1674da
27676f4
785547f
f0361cb
8cfad3e
e205381
fce55da
9e224d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "c-blosc"] | ||
path = c-blosc | ||
url = https://github.com/Blosc/c-blosc.git | ||
[submodule "zfp"] | ||
path = zfp | ||
url = https://github.com/LLNL/zfp.git | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,7 @@ Contents | |
registry | ||
blosc | ||
lz4 | ||
zfp | ||
zstd | ||
zlib | ||
gzip | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Zfp | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not to bikeshed things, but are we wanting this to be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If fact, the PR #160 is not needed any more, because @lindstro has their own zfp wrapper, so I have PR #229 ready for you to approve to merge. @jakirkham There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, must have gotten turned around. Should we close this PR out then? |
||
=== | ||
.. automodule:: numcodecs.zfp | ||
|
||
.. autoclass:: Zfp | ||
|
||
.. autoattribute:: codec_id | ||
.. automethod:: encode | ||
.. automethod:: decode | ||
.. automethod:: get_config | ||
.. automethod:: from_config | ||
|
||
Helper functions | ||
---------------- | ||
|
||
.. autofunction:: compress | ||
.. autofunction:: decompress |
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.
We shouldn't need the source code here since we can go the dependency route
Also please remove the submodule as well.