You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/01/23 23:00:26 UTC

[GitHub] mengyuest opened a new issue #9533: Cannot find engine branch for minpy package

mengyuest opened a new issue #9533: Cannot find engine branch for minpy package
URL: https://github.com/apache/incubator-mxnet/issues/9533
 
 
   I want to use GPU on numpy opers so I tried minpy. The system is ubuntu16.04 and my display card is GTX1080 (cudnn 7.0). When I installed mxnet, I could not find "engine" branch mentioned in instruction step `git clone --recursive -b engine 
   https://github.com/dmlc/mxnet.git` 
   So I just installed the master branch one and at last I could not use minpy correctly. My program wrote as
   ```
   import minpy.numpy as np
   import minpy.numpy.random as random
   import time
   x= random.rand(1024, 1024)
   y= random.rand(1024, 1024)
   st = time.time()
   for i in range(10):
       z= np.dot(x, y)
   z.asnumpy()
   print('time: {:.3f}.'.format(time.time()-st))                                                        
   ```
   and when running, it said 
   `W0123 14:35:58 22806 minpy.dispatch.registry:register:47] Type MXNet for name reshape has already existed`
   Can anyone tell me what to do? Thanks.

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services