From 1245d5d4a8eeca297c1b126b505c6b80ba4f7dc1 Mon Sep 17 00:00:00 2001 From: Logan Weber Date: Wed, 24 Jul 2019 22:22:51 +0000 Subject: [PATCH] Remove prints in `generic_op_impl.py` --- topi/python/topi/generic_op_impl.py | 2 -- 1 file changed, 2 deletions(-) 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)