Data type refactor - #2758
Draft
timfelle wants to merge 5 commits into
Draft
Data type refactor#2758timfelle wants to merge 5 commits into
timfelle wants to merge 5 commits into
Conversation
timfelle
force-pushed
the
data_parent
branch
from
September 9, 2026 13:33
b6e6d94 to
8ff3cbb
Compare
timfelle
force-pushed
the
data_parent
branch
from
September 16, 2026 13:00
8ff3cbb to
407ea9c
Compare
timfelle
marked this pull request as ready for review
September 22, 2026 17:27
timfelle
force-pushed
the
data_parent
branch
from
September 23, 2026 07:21
a5fad14 to
407ea9c
Compare
timfelle
marked this pull request as draft
September 23, 2026 07:21
This branch has not been deployed
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Work on refactoring our data types. This work extends on the tensor system and unifies our array objects under a single umbrella. The array type implements storage, while specialised types create a pointer with the appropriate shape, matrix is 2D etc.
array_t, the parent of all arrays. Linear storage and handles the common interfaces such as allocation, device synchronisation etc.array_tsystem. (vector,matrix, ... )Deferred to later work.
field_tto the same underlying structure.This PR depends on #2749 #2756