ndstrides: [4] Implement np_array()
#514
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: M-Labs/nac3#514
Loading…
Reference in New Issue
No description provided.
Delete Branch "ndstrides-4-nparray"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Reimplemented
np_array()
+ Proper assertions when the input is a list (e.g., raise an exception when the list has inhomogeneous dimensions).However, currently only
np_array(<input>, copy=False)
andnp_array(<input>, copy=True)
are supported.In NumPy, copy could befalse
,true
, orNone
. Right now with this PR, NAC3'snp_array(<input>, copy=False)
behaves like NumPy'snp.array(<input>, copy=None)
. Fortunately this should be easy to implement.b158ec80b4
to81e937db82
Rebased.
81e937db82
tof109c58da8
Rebased to fix some formatting issues.
f109c58da8
tod222236492
d222236492
tode732ba68e
de732ba68e
to2c3463c516
2c3463c516
to6234060e85
6234060e85
to8f0084ac8a
Step 1:
From your project repository, check out a new branch and test the changes.Step 2:
Merge the changes and update on Gitea.