Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Cannot find engine branch for minpy package #9533

@mengyuest

Description

@mengyuest

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions