DNXie opened a new issue #20064: URL: https://github.com/apache/incubator-mxnet/issues/20064
## Description `mxnet.ndarray.unravel_index` and `mxnet.ndarray.op.unravel_index` aborts with segmentation fault ### Error Message #### Input2 ~~~python import mxnet mxnet.ndarray.op.unravel_index(data=mxnet.nd.ones((4, 2, 2, 4)), shape=(10,)) ~~~ Error Message: ~~~python Segmentation fault: 11 Segmentation fault (core dumped) ~~~ #### Input2 ~~~python import mxnet mxnet.ndarray.op.unravel_index(data=mxnet.nd.ones((4, 2, 2, 2)), shape=(10,)) ~~~ Error Message: ~~~python double free or corruption (out) Aborted (core dumped) ~~~ ## Environment OS: ubuntu 18.04 Python: 3.7.6 pip: 20.0.2 numpy: 1.18.5 mxnet: 1.5.0 -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
