DamonDeng commented on issue #7653: ipython, The kernel appears to have died. 
It will restart automatically.
URL: 
https://github.com/apache/incubator-mxnet/issues/7653#issuecomment-326203364
 
 
   Dear, 
   Would you please share more information of the code you run?
   
   I have tested the following code in Jupyter notebook environment, and it 
works well:
   
        import mxnet as mx
        
        x = mx.nd.ones((2,3))
        y = mx.nd.ones((2,3))*2
        
        z = mx.nd.dot(x, y.T)
        
        z.asnumpy()
   
   the output is:
   
   `array([[ 6.,  6.],
          [ 6.,  6.]], dtype=float32)`
 
----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to