PRs and feature requests: avoid shallow contributions; what do we include? #1493
Replies: 2 comments 1 reply
-
I agree with what you wrote, notably with "guideline" and "probably" because it's kinda impossible to provide a precise rule for this. Moreover, I would add "It must help the average user of ndarray". Some features should go in ndarray-stats. Some PR (like this one, imo) should go in another project (sometimes there's no other project). In brief, some features should be offered in the ndarray ecosystem, but not directly by ndarray. |
Beta Was this translation helpful? Give feedback.
-
I'd agree with both of you. I also think there's a difference between ndarray and packages like NumPy or PyTorch, one that creates a tension that I've been wondering about. In the Python frameworks, speed comes from implementations in C(++); so if you want a new function to be fast, it has to be implemented in the framework. Rust and My answer right now is that there's a lot of foundational work (shape/stride refactoring and a lazy API) that take precedence. But down the line, I am partial to the idea of an |
Beta Was this translation helpful? Give feedback.
-
This issue discusses which contributions and feature requests should be considered worth adding to
ndarray
and which changes should be avoided.Note that this discussion evolves around adding new functionality and does not apply to changes such as "fixed typo", "bump version of dependency XYZ", bugfixes etc.
Background
I have recently opened a PR #1482 to add a new function which produces a view with swapped axes. This addition replaces two lines by one for users but will harm discoverability if more methods like this should be added in the future.
In order to avoid such PRs and feature requests in the future, we should discuss possible guidelines as to what is considered a "shallow" addition and should be omitted.
Ideas for Guidelines
Replaced Lines of Code
My own PR replaces
with
which is a very minor change. In my opinion, most changes which reduce
N<=3 -> 1
line without adding any new functionality should be flagged as "probably too shallow".Impact
Even if the number of lines replaced is small, the impact could be very large for frequent uses.
What do you think?
Beta Was this translation helpful? Give feedback.
All reactions