-
Notifications
You must be signed in to change notification settings - Fork 98
Introduce a flat option to ensure_contiguous_ndarray to switch off flatten for ZFPY codec #307
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
ec1058f
Optional flatten the encode array
halehawk 80cf195
Remove skipping Python 3.9 and later for Zfp
halehawk 7038e96
Updated docs/release.rst about ZFPY
halehawk 9d5d7bd
Merge branch 'master' into master
halehawk 39a58ef
Removed the trailing whitespace
halehawk 54e2529
Merge branch 'master' of https://github.com/pangeo-data/numcodecs
halehawk 7e27429
Add pip install zfpy to start test_zfpy
halehawk 0f68801
Add raise valueerror
halehawk 9bdc0c3
Shorten the raise error lines
halehawk d5d32a0
Merge branch 'master' into master
halehawk 18184d7
Modified ci-osx clang to 12.0.1
halehawk 1824166
Revert the change in ci-osx.yaml
halehawk cbd2d0c
Merge branch 'master' into master
halehawk 91640cd
Update release.rst
halehawk 11ba699
Merge branch 'master' of https://github.com/pangeo-data/numcodecs
halehawk 2a79fd6
Change flat to flatten
halehawk cb978d8
Missed one flat, changed to flatten
halehawk 894324d
Change flat to flatten in zfpy.py
halehawk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ cython | |
numpy | ||
msgpack | ||
pytest | ||
zfpy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
Cython==0.29.21 | ||
msgpack==1.0.2 | ||
numpy==1.21.0 | ||
zfpy==0.5.5; python_version < '3.9' | ||
zfpy==0.5.5 | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ numpydoc | |
mock | ||
numpy | ||
cython | ||
zfpy==0.5.5; python_version < '3.9' | ||
zfpy==0.5.5 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What other type would you expect here? I thought all Zarr array data would come into numcodecs as numpy arrays?
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.
I would like to repeat my answers here, I added test_err_encode_list, which caused buf.flags not raise a correct error. So I added check the instance first. Do you have any different recommendation?