diff --git a/topi/python/topi/generic_op_impl.py b/topi/python/topi/generic_op_impl.py index ce625bcef68f..b4b719fb35d4 100644 --- a/topi/python/topi/generic_op_impl.py +++ b/topi/python/topi/generic_op_impl.py @@ -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)