Skip to content

[FRONTEND][PyTorch] NotImplementedError: The following operators are not implemented: ['aten::linalg_vector_norm'] #16096

@mshr-h

Description

@mshr-h

Steps to reproduce

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 to find the relevant tags and add them below in a bullet format (example below).

  • frontend:pytorch

cc @shingjan @yelite

Metadata

Metadata

Assignees

No one assigned

    Labels

    needs-triagePRs or issues that need to be investigated by maintainers to find the right assignees to address ittype: bug

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions