PhyG0 commented on code in PR #17858:
URL: https://github.com/apache/tvm/pull/17858#discussion_r2052268619


##########
python/tvm/relax/frontend/torch/fx_translator.py:
##########
@@ -476,6 +476,11 @@ def _inplace_fill(self, node: fx.Node) -> relax.Var:
         self.env[node.args[0]] = filled
         return filled
 
+    def _inplace_copy(self, node: fx.Node) -> relax.Var:
+        dst = self.env[node.args[1]]

Review Comment:
   Thanks for pointing it out. I've changed the variable name to 'src'.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to