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/11/06 14:53:18 UTC

[GitHub] vuvko commented on issue #13074: Bug in bipartite_matching

vuvko commented on issue #13074: Bug in bipartite_matching
URL: https://github.com/apache/incubator-mxnet/issues/13074#issuecomment-436279988
 
 
   Can confirm this problem on CPU. On GPU everything is fine.
   ```
   import mxnet as mx
   from mxnet import nd
   
   for _ in range(10):
       x = nd.random.uniform(0, 1, (10, 10))
       output = nd.contrib.bipartite_matching(data=x, threshold=1e-12, is_ascend=False)
   ```
   results in `free(): invalid pointer`. While
   ```
   import mxnet as mx
   from mxnet import nd
   
   for _ in range(10):
       x = nd.random.uniform(0, 1, (10, 10), ctx=mx.gpu(0))
       output = nd.contrib.bipartite_matching(data=x, threshold=1e-12, is_ascend=False)
   ```
   seems to works just fine

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