mathephysicist opened a new issue #19023:
URL: https://github.com/apache/incubator-mxnet/issues/19023


   ## Description
   Given that numpy properly performs type promotion when performing basic 
tasks. I think we should do the same when we perform our operations.
   
   ## To Reproduce
   This works
   `import numpy as npa
   
   x = npa.ones((2,2),dtype=int)
   y = npa.ones((2,2),dtype=float)
   
   z = npa.matmul(x,y)`
   
   This doesn't
   `from mxnet import np
   
   x = np.ones((2,2),dtype=int)
   y = np.ones((2,2),dtype=float)
   
   z = np.matmul(x,y)`
   
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to