-
-
Notifications
You must be signed in to change notification settings - Fork 30
Add PyTorch to users.rst #65
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
Conversation
I've seen PRs updating this file so adding PyTorch to the list as well as we're relying on this pretty heavily now! Thanks for the hard work in maintaining this! It helps a lot to have reliable compat code!
Merged, thanks. Oh, that's cool! I'm curious, why kinds of C API functions does PyTorch use/need on old Python versions? |
We only support 3.8+ as of today. So nothing too crazy on that side. Generally, we also have quite a bit of C API calls, so we're transitioning to use this more now that we have it! I was curious so pulled our current usage with Here is the result:
|
Oh, I see, many PyCode and PyFrame functions. Good to know, thanks a lot! |
I've seen PRs updating this file so adding PyTorch to the list as well as we're relying on this pretty heavily now!
Thanks for the hard work in maintaining this! It helps a lot to have reliable compat code!