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/29 03:45:14 UTC

[GitHub] zheng-da opened a new issue #13451: Gluon dense layer gets segfault on large arrays when MKLDNN is built in MXNet.

zheng-da opened a new issue #13451: Gluon dense layer gets segfault on large arrays when MKLDNN is built in MXNet.
URL: https://github.com/apache/incubator-mxnet/issues/13451
 
 
   The code below gets segfault when MKLDNN is built in MXNet.
   
   ```python
   import mxnet as mx
   from mxnet import gluon
   def run_linear():
       data = mx.nd.ones(shape=(50*1000*1000, 100))
       linear = gluon.nn.Dense(100)
       linear.initialize(ctx=mx.cpu(0))
       res = linear(data)
       res.wait_to_read()
   
   run_linear()
   ```

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