-
Notifications
You must be signed in to change notification settings - Fork 64
feat(atenlib): add ops(resolve_conj, resolve_neg) #458
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
Codecov Report
@@ Coverage Diff @@
## main #458 +/- ##
==========================================
+ Coverage 72.02% 72.05% +0.02%
==========================================
Files 109 109
Lines 10504 10506 +2
Branches 1075 1075
==========================================
+ Hits 7566 7570 +4
+ Misses 2635 2633 -2
Partials 303 303
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -4641,16 +4641,18 @@ def aten_reshape_as(self: TensorType, other: TensorType) -> TensorType: | |||
raise NotImplementedError() | |||
|
|||
|
|||
def aten_resolve_conj(self: TensorType) -> TensorType: | |||
@torch_op("aten::resolve_conj") | |||
def aten_resolve_conj(self: TTensor) -> TensorType: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def aten_resolve_conj(self: TTensor) -> TensorType: | |
def aten_resolve_conj(self: TTensor) -> TTensor: |
|
||
|
||
def aten_resolve_neg(self: TensorType) -> TensorType: | ||
@torch_op("aten::resolve_neg") | ||
def aten_resolve_neg(self: TTensor) -> TensorType: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def aten_resolve_neg(self: TTensor) -> TensorType: | |
def aten_resolve_neg(self: TTensor) -> TTensor: |
No description provided.