Replies: 2 comments 2 replies
-
Related, why is order being tracked as a separate property? I think we should just use the numpy facilities for these (shape and order) rather than duplicating. |
Beta Was this translation helpful? Give feedback.
0 replies
-
There are a few questions here spanning design choices and implementations. Design Decisions:
Implementation details:
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It seems that having shape as a separate member in the tensor class is redundant. I could only imagine that it might be for tracking 0-dimensional shapes, but this doesn't seem to be checked for or happening in any consistent way.
For example:
Produces:
Is it possible to remove this and instead make shape a function that returns the shape of the data?
Also, is there a reason to allow for empty tensors?
Beta Was this translation helpful? Give feedback.
All reactions