Skip to content

Commit

Permalink
[PYTORCH]floor_divide support for squeezenet (apache#5702)
Browse files Browse the repository at this point in the history
  • Loading branch information
siju-samuel authored and Trevor Morris committed Jun 18, 2020
1 parent 62dab15 commit e85f712
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/tvm/relay/frontend/pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -1760,6 +1760,7 @@ def _get_convert_map(prelude):
"aten::arange" : _arange(),
"aten::div" : _elemwise("divide"),
"aten::div_" : _elemwise("divide"),
"aten::floor_divide" : _elemwise("floor_divide"),
"aten::addcdiv" : _addcdiv(),
"aten::addcmul" : _addcmul(),
"aten::ones" : _ones(),
Expand Down

0 comments on commit e85f712

Please sign in to comment.