barry-jin opened a new issue #20282:
URL: https://github.com/apache/incubator-mxnet/issues/20282
## Description
np.einsum bus error
### Error Message
libc++abi.dylib: terminating with uncaught exception of type dmlc::Error:
[12:34:18] ../src/initialize.cc:380: IOError: Bus error: 10
Abort trap: 6
## To Reproduce
```python
>>> import numpy as onp
>>> scale = onp.random.normal(size=(3,3))
>>> noise = onp.random.normal(size=(3,))
>>> np.einsum('...jk,...j->...k', scale, noise)
array([-1.03314727, -0.13174716, 0.36079695])
>>> from mxnet import np, npx
>>> npx.set_np()
>>> scale = np.random.normal(size=(3,3))
>>> noise = np.random.normal(size=(3,))
>>> np.einsum('...jk,...j->...k', scale, noise)
libc++abi.dylib: terminating with uncaught exception of type dmlc::Error:
[12:39:46] ../src/initialize.cc:380: IOError: Bus error: 10
Abort trap: 6
```
--
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]