reminisce commented on issue #8029: Bug on sum
URL: 
https://github.com/apache/incubator-mxnet/issues/8029#issuecomment-332073641
 
 
   I can reproduce the issue with the following simplified script. I will try 
to debug to find out the root cause, but need a little more time to understand 
the nnvm graph related code.
   ```python
   import mxnet as mx
   
   
   def bugSum():
       data = mx.symbol.Variable('data')
       res = data + data + data + data + data + data + data + data
       #print res.debug_str()
       res.simple_bind(ctx=mx.cpu(), data=(1,))
       return
   
   
   if __name__ == '__main__':
       bugSum()
   ```
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to