Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Latest commit

 

History

History
History
19 lines (11 loc) · 412 Bytes

File metadata and controls

19 lines (11 loc) · 412 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from . import _sharpy as _csp
from . import ndarray
def get_slice(obj, *args):
return _csp._get_slice(obj._t, *args)
def get_locals(obj):
return _csp._get_locals(obj._t, obj)
def from_locals(objs):
arg = objs if isinstance(objs, (list, tuple)) else [objs]
return ndarray.ndarray(_csp._from_locals(arg))
def gather(obj, root=_csp._Ranks._REPLICATED):
return _csp._gather(obj._t, root)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.