chinakook commented on issue #20301:
URL: 
https://github.com/apache/incubator-mxnet/issues/20301#issuecomment-891839194


   @bartekkuncer I've tested your flags, and it's not relevant to mkl. In my 
case, Anaconda can run ```dot``` without crash, but Miniconda cannot run it 
even if I copy all files from anaconda base env to miniconda user created env.
   My MXNet is a custom 2.0 version on windows. My test scripts: 
   ```python
   import mxnet as mx
   
   def test_dot():
       ctx= mx.cpu(0)
       # smaller ndarray can run without error
       a = mx.nd.random.uniform(shape=(536, 771, 3), ctx=ctx)
       b = mx.nd.random.uniform(shape=(3, 3), ctx=ctx)
       c = mx.nd.dot(a, b)
       mx.nd.waitall()
       print(c.shape)
   
   if __name__ == '__main__':
       test_dot()
   ```


-- 
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: [email protected]

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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to