Implement __ipow__ to make it compatible with the Python Array API #71984
Implement __ipow__ to make it compatible with the Python Array API #71984Dbhasin1 wants to merge 4 commits intopytorch:masterfrom
__ipow__ to make it compatible with the Python Array API #71984Conversation
CI Flow Status⚛️ CI FlowRuleset - Version:
|
🔗 Helpful links
💊 CI failures summary and remediationsAs of commit 3d77c6b (more details on the Dr. CI page): ✅ None of the CI failures appear to be your fault 💚
🚧 1 fixed upstream failure:These were probably caused by upstream breakages that were already fixed.
Please rebase on the
|
6c0eddc to
9b2c3ff
Compare
9b2c3ff to
3d77c6b
Compare
|
@Dbhasin1 I have a similar PR #76900 which is somewhat more up to date and blocking another so we are going to merge that one first. I set out on my PR to resolve an issue uncovered by the next PR in the stack (OpInfos now discover + exercise in-place operator variants and ipow was not set-up correctly leading to failures). As my goal was not Array API compliance, please take a look at my PR and let me know if I am missing anything required for that. |
|
Closing this since it has been superseded by #76900. |
Fixes a part of #58742
This PR adds the implementation for
__ipow__to make it compliant with the Python Array APIcc @kshitij12345