diff --git a/python/tvm/relay/frontend/pytorch.py b/python/tvm/relay/frontend/pytorch.py index 00fa9f597d06..118af5a30620 100644 --- a/python/tvm/relay/frontend/pytorch.py +++ b/python/tvm/relay/frontend/pytorch.py @@ -1877,9 +1877,6 @@ def Float(self, inputs, input_types): assert len(inputs) == 1 return _op.cast(inputs[0], "float32") - def mm(self, inputs, input_types): - return _op.nn.dense(inputs[0], inputs[1]) - def bitwise_not(self, inputs, input_types): data = inputs[0] # The input tensor must be of integral or Boolean types.