You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2021/09/23 17:59:52 UTC

[GitHub] [tvm] mbrookhart commented on a change in pull request #9095: Dynamic squeeze

mbrookhart commented on a change in pull request #9095:
URL: https://github.com/apache/tvm/pull/9095#discussion_r715030721



##########
File path: python/tvm/relay/frontend/onnx.py
##########
@@ -2806,7 +2820,9 @@ def _impl_v12(cls, inputs, attr, params):
         alpha = _op.const(attr.get("alpha", 1.0), dtype)
         zero = _op.const(0, dtype)
         one = _op.const(1, dtype)
-        return _op.maximum(zero, x) + _op.minimum(zero, alpha * (_op.exp(x / alpha) - one))
+        out = _op.maximum(zero, x) + _op.minimum(zero, alpha * (_op.exp(x / alpha) - one))
+        print(out)

Review comment:
       remove the print




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org