Skip to content

Commit

Permalink
Duplicate PR of apache#8506 (#223)
Browse files Browse the repository at this point in the history
* [TensorRT, BYOC] Handling a corner case in TRT RemoveDropout pass

* refactor the logic
  • Loading branch information
rohanmukh authored Jul 26, 2021
1 parent 599bb66 commit 1b83419
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/tvm/relay/op/contrib/tensorrt.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
from tvm.relay import transform
from tvm.relay.build_module import bind_params_by_name
from tvm.relay.expr import Call, Constant, Tuple, GlobalVar, Var, TupleGetItem
from tvm.ir import Op
from tvm.relay.expr_functor import ExprMutator, ExprVisitor

logger = logging.getLogger("TensorRT")
Expand Down Expand Up @@ -1035,6 +1036,7 @@ def visit_tuple_getitem(self, op):
return visit
if (
isinstance(visit.tuple_value, Call)
and isinstance(visit.tuple_value.op, Op)
and visit.tuple_value.op.name == "nn.dropout"
and visit.index == 0
):
Expand Down

0 comments on commit 1b83419

Please sign in to comment.