Skip to content

Commit

Permalink
Remove prints in generic_op_impl.py (apache#3616)
Browse files Browse the repository at this point in the history
  • Loading branch information
weberlo authored and anijain2305 committed Aug 2, 2019
1 parent 8c8beb7 commit fd978f5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions topi/python/topi/generic_op_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ def _tensor_bop_impl(lhs, rhs):
tvm.Expr (otherwise)
The result of {op} operation.
"""
print(lhs, type(lhs))
print(rhs, type(rhs))
if not isinstance(lhs, tvm.tensor.Tensor) and not isinstance(rhs, tvm.tensor.Tensor):
return orig_bop(lhs, rhs)
return broadcast_bop(lhs, rhs)
Expand Down

0 comments on commit fd978f5

Please sign in to comment.