-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why do we prefer protocols in type stubs? #899
Comments
@jorenham writes:
Isn't the performance impact of an extra class in the MRO extremely minor, especially since:
But if you insist that every nanosecond counts, you can inherit without any performance impact by doing: if TYPE_CHECKING:
class SomeClientArray(..., Array)
else:
class SomeClientArray(...)
I imagine that it's possible to add a base class, but even if not, they only need to add it in their type stubs. |
from #589 (comment)
|
@rgommers writes
Doesn't having one set of stubs create more problems? At some point, you will eventually make an incompatible change to the methods on Suppose only Library 1.0 exists, and a user wants to use it. They need to import the correct Stubs 1.0, and they need to hold back Jax to the correct version 1.0. And vice versa: suppose that they want to use Jax 2.0, then they need to constrain on Stubs 2.0 and Library 2.0. In short, I think you can't sidestep that somewhere you will need to make the Array API stub version a dependency. As for why the situation is different with Numpy: Numpy gets away with not having a stub dependency because it includes the stubs itself. A library written for the Array API doesn't have this luxury because it may not even depend on any clients (Jax, etc.) nor NumPy. It can have no dependencies. But nevertheless, that library does depend on some stub version (1.0 or 2.0), and user code needs to know that in order to depend on the right versions of Jax. This argument is based on the idea that you will eventually make some change to the interface (adding a method and so on). Is it realistic to suggest that you will never change any stubs forever? |
I don't think that works since the user would have to do the check. Is every user of the Array API supposed to add a |
Are you talking about https://github.com/data-apis/array-api-typing/ here, or about the "stubs" in https://github.com/data-apis/array-api/tree/main/src/array_api_stubs, which are mostly meant for documentation? |
@ntessore wrote:
With inheritance, the inheriting class (
The user would have to do the
If it's not yet fully compliant, then the stubs will simply be invisible to them since the protocol won't match. I don't see why anyone would release (e.g., Jax) stubs before they're compliant.
You get told where you aren't compliant by type errors. And I guess I still don't see why you would want to gradually become compliant rather than just releasing stubs when you're done. |
I mean the stubs in the pull request that I linked. |
Those won't be published, and are primarily there for the generated sphinx docs (#857 (comment)), see #857 and #863 |
Oh! My mistake. I'll follow #863 with interest 😄 Shall I close this issue then, or is there anything left to say? (I'll close it in a couple days if no more discussion occurs.) |
No worries; I've also made that mistake in the past.
In case anyone wants to talk about this more, then we should probably do that at https://github.com/data-apis/array-api-typing/, so you can close this as far as I'm concerned. |
This is a continuation of a long conversation from #589.
The text was updated successfully, but these errors were encountered: