Skip to content

Commit

Permalink
add in-place methods used by Tacotron2 to pytorch frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
vvchernov committed Aug 9, 2021
1 parent 00bed97 commit 532c719
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/tvm/relay/frontend/pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2669,6 +2669,7 @@ def create_convert_map(self):
"aten::clone": self.clone,
"aten::log_softmax": self.log_softmax,
"aten::sigmoid": self.sigmoid,
"aten::sigmoid_": self.sigmoid,
"aten::softplus": self.softplus,
"aten::avg_pool1d": self.make_avg_pool(1),
"aten::avg_pool2d": self.make_avg_pool(2),
Expand Down Expand Up @@ -2710,6 +2711,7 @@ def create_convert_map(self):
"aten::sinh": self.make_unary("sinh"),
"aten::tan": self.make_unary("tan"),
"aten::tanh": self.make_unary("tanh"),
"aten::tanh_": self.make_unary("tanh"),
"aten::acos": self.make_unary("acos"),
"aten::asin": self.make_unary("asin"),
"aten::atan": self.make_unary("atan"),
Expand Down

0 comments on commit 532c719

Please sign in to comment.