You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
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.
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.gitSo I just installed the master branch one and at last I could not use minpy correctly. My program wrote as
and when running, it said
W0123 14:35:58 22806 minpy.dispatch.registry:register:47] Type MXNet for name reshape has already existedCan anyone tell me what to do? Thanks.