masahi commented on a change in pull request #4964: [Torch] Add initial control flow support URL: https://github.com/apache/incubator-tvm/pull/4964#discussion_r388606332
########## File path: python/tvm/relay/frontend/pytorch.py ########## @@ -842,7 +898,13 @@ def _convert_elemwise_input(data, input_type): "aten::detach" : _identity(), "aten::upsample_bilinear2d" : _upsample("bilinear"), "aten::upsample_nearest2d" : _upsample("nearest_neighbor"), - "aten::expand_as" : _expand_as() + "aten::expand_as" : _expand_as(), + 'aten::lt' : _lt(), Review comment: Added. See the last commit https://github.com/apache/incubator-tvm/pull/4964/commits/b936bfa4c46b50949ffd303e243b83b3a385106f Also updates some tests to exercise all of them. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services