-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-854: [Format] Add tentative SparseTensor format #2546
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
Closed
Closed
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
c3bc6ed
Add tentative SparseTensor format
mrkn 1f16ffe
Fix syntax error in SparseTensor.fbs
mrkn aa9b8a4
Add SparseTensor.fbs in FBS_SRC
mrkn 866b2c1
Add header comments in SparseTensor.fbs
mrkn d7e653f
Add an example of COO format in comment
mrkn 76c56dd
Make indptr of CSR a buffer
mrkn 2b50040
Add an example of the CSR format in comment
mrkn c508db0
Write sparse tensor format in IPC.md
mrkn b24f3c3
Insert additional padding in sparse tensor format
mrkn 392a25b
Implement SparseTensor and SparseCOOIndex
mrkn 433c9b4
Change COO index matrix to column-major in a format description
mrkn 4251b4d
Add SparseCSRIndex
mrkn ed3984d
Add SparseIndex::format_type
mrkn 021b46b
Add SparseTensorBase
mrkn 93c03ad
Add SparseIndex::ToString()
mrkn 51a83bf
Add SparseTensorFormat
mrkn 1d90427
Fix format
mrkn 6bc9e29
Support IPC read and write of SparseTensor
mrkn b3a62eb
Fix format
mrkn d6a8c38
Unify Tensor.fbs and SparseTensor.fbs
mrkn 3b1db7d
Add SparseTensorBase::Equals
mrkn 9e457ac
Remove needless virtual specifiers
mrkn 401ae80
Fix SparseCSRIndex::ToString and add tests
mrkn 99b1d1d
Add missing ARROW_EXPORT specifiers
mrkn 43d8eea
Fix coding style
mrkn 357860d
Fix typo in comments
mrkn 7e814de
Put EXPERIMENTAL markn in comments
mrkn f782303
Return Status::IOError instead of DCHECK if message header type is no…
mrkn ff3ea71
Rename length to non_zero_length in SparseTensor
mrkn 6f29158
Mark APIs for sparse tensor as EXPERIMENTAL
mrkn 6ef6ad0
Apply code formatter
mrkn 3dd434c
Capitalize member function name
mrkn 97e85bd
Use std::make_shared
mrkn 37a0a14
Remove needless function declaration
mrkn 07a6518
Use substitution instead of constructor call
mrkn 90e8b31
Rename sparse tensor classes
mrkn c83ea6a
Add type aliases of sparse tensor types
mrkn 880bbc4
Rename too-verbose function name
mrkn d57e56f
Merge sparse_tensor_format.h into sparse_tensor.h
mrkn 148bff8
make format
mrkn 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
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
Oops, something went wrong.
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.
Yes