apivovarov commented on pull request #7513: URL: https://github.com/apache/tvm/pull/7513#issuecomment-785505452
I think we already have 16 in-place operators ending with `_` in Pytorch frontend. e.g. `add_` ``` a=torch.tensor([1,2,3,4]) b=torch.tensor([1,1,2,2]) a.add_(b) a tensor([2, 3, 5, 6]) ``` Is `copy_` different from them? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
