-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RecordArray (and Record) to Numba. (#26)
RecordArray and Record objects can be used in Numba and `FillableArray.beginrecord`, `field`, `endrecord` has been extended to Numba. * Start adding RecordArray (and Record) to Numba. * Stub files for RecordArray in Numba. * Access a RecordArray's 'lookup' dict in Python. * Adding accessors to C++ that support Numba. * Record's first attribute should be named 'array', not 'recordarray'. * Record* made a round-trip to Numba. * Compute 'length' once in iteration. * Stubs for StringLiteral in slices. * RecordArray.getitem_range. * Finished 'getitem_str' for all array types. * Record.getitem_str. * Bring signatures up to date. * Finished Record getitems. * [skip ci] Started implementing getitem_tuple; broke everything. * Fixed it: RecordArray.getitem_next(anything but field) should work. * Finished RecordArray.getitem_next(*), need to do *.getitem_next(string). * Finished *.getitem_next(str). Moving on to FillableArray. * FillableArray.begintuple/index/endtuple works. * FillableArray.beginrecord/field/endrecord works. Probably done with this PR.
- Loading branch information
Showing
32 changed files
with
1,672 additions
and
236 deletions.
There are no files selected for viewing
This file contains 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 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 +1 @@ | ||
0.1.25 | ||
0.1.26 |
This file contains 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 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 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 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 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.