Skip to content

Commit

Permalink
[TensorRT, BYOC] Handling a corner case in TRT RemoveDropout pass (ap…
Browse files Browse the repository at this point in the history
…ache#8506)

* [TensorRT, BYOC] Handling a corner case in TRT RemoveDropout pass

* changing visit logic
  • Loading branch information
rohanmukh authored and ylc committed Sep 29, 2021
1 parent c8dda98 commit ef3a37b
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 @@ -1044,6 +1045,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 ef3a37b

Please sign in to comment.