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 2019/10/24 12:23:08 UTC

[GitHub] [incubator-mxnet] matteosal edited a comment on issue #16555: Upgrade MKL-DNN dependency to v1.0

matteosal edited a comment on issue #16555: Upgrade MKL-DNN dependency to v1.0
URL: https://github.com/apache/incubator-mxnet/pull/16555#issuecomment-545892144
 
 
   I have some crashes, I've isolated the first one (related to `_foreach`). Attached is the related json file. Code to reproduce:
   ```
   import mxnet as mx
   
   sym = mx.symbol.load("sym.json")
   
   ex = sym.bind(mx.cpu(),
   	{
   		".Inputs.Input": mx.nd.ones([3, 1, 3]),
   		".Inputs.Key": mx.nd.ones([1, 5, 3]),
   		".Inputs.Value": mx.nd.ones([1, 5, 3]),
   		".States.Query": mx.nd.ones([1, 3]),
   	}
   )
   
   ex.forward()
   ```
   The above script produces a segfault after the forward pass
   
   [sym.zip](https://github.com/apache/incubator-mxnet/files/3767429/sym.zip)
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services