You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SegArray is currently a client side construct that keeps track of several pdarray objects to manage its elements. This is very similar to ak.String which is currently referred to as SegString/SegArray on the server. This will eventually be transitioned to SegString on the server entirely as it will most likely inherit functionality from the SegArray module.
This issue is to serve as an overall tracking issue for the transition.
Configure SegString to inherit from SegArray to utilize the shared functionality. (EDIT: This may not be done because there are some fundamental differences between these 2 objects that could cause problems.)
The text was updated successfully, but these errors were encountered:
I wanted to link this PR where we first added SegString as a standalone object in chapel (vs two pdarrays that we logically treated as related)
I'm not sure how useful it will be but the PR description should give a good reference for our Hierarchy (CompositeSymEntry is where this would go i'm guessing). And maybe src/MultiTypeSymEntry.chpl will provide an example of sorts?
The SegArray server side implementation has been reverted to client side only due to functionality limitations due to the server side implementation. Closing issue.
SegArray is currently a client side construct that keeps track of several
pdarray
objects to manage its elements. This is very similar toak.String
which is currently referred to asSegString
/SegArray
on the server. This will eventually be transitioned toSegString
on the server entirely as it will most likely inherit functionality from theSegArray
module.This issue is to serve as an overall tracking issue for the transition.
SegArray
Object from Python to Chapel (MoveSegArray
to Chapel Module #1571)SegArray
functionality in Chapel (MoveSegArray.__init__
fully to server #1681 & MoveSegArray
functionality to server #1682)SegString
(currentlySegArray
) on the server (RenameSegmentedArray
toSegmentedString
#1574)SegString
to inherit fromSegArray
to utilize the shared functionality. (EDIT: This may not be done because there are some fundamental differences between these 2 objects that could cause problems.)The text was updated successfully, but these errors were encountered: