Commit e0df6e12 by Logan Weber Committed by Tianqi Chen

Remove prints in `generic_op_impl.py` (#3616)

parent 023fc6b4
......@@ -79,8 +79,6 @@ def _make_bop(broadcast_bop, orig_bop):
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment