mshr-h opened a new issue, #16096:
URL: https://github.com/apache/tvm/issues/16096

   ### Steps to reproduce
   
   ```python
   from tvm import relay
   import torch
   
   def func(x):
     return torch.linalg.vector_norm(x)
   
   x = torch.rand(3, 3)
   scripted_func = torch.jit.trace(func, x)
   print(scripted_func(x))
   
   input_infos = [('x', (x.shape, 'float32'))]
   mod, params = relay.frontend.from_pytorch(scripted_func, input_infos)
   ```
   
   ### Triage
   
   Please refer to the list of label tags 
[here](https://github.com/apache/tvm/wiki/Issue-Triage-Labels) to find the 
relevant tags and add them below in a bullet format (example below).
   
   * frontend:pytorch
   


-- 
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