vvchernov commented on code in PR #16123:
URL: https://github.com/apache/tvm/pull/16123#discussion_r1392037353
##########
python/tvm/relay/frontend/pytorch.py:
##########
@@ -3844,6 +3844,30 @@ def inplace_copy(self, inputs, input_types):
# Return
return _op.scatter_nd(source, indices, values, mode)
+ def linalg_vector_norm(self, inputs, input_types):
+ data = inputs[0]
Review Comment:
It looks like this method is based on torch.linalg.vector_norm. The latter
assums that input data type is float, double or complex one; dtype also should
be real or complex. Would you check it?
--
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]