You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mxnet.apache.org by GitBox <gi...@apache.org> on 2021/01/25 17:14:32 UTC

[GitHub] [incubator-mxnet] DNXie opened a new issue #19784: floating point exception in mxnet.gluon.contrib.nn.PixelShuffle1D/2D/3D if factor=0

DNXie opened a new issue #19784:
URL: https://github.com/apache/incubator-mxnet/issues/19784


   ## Description
   floating point exception in mxnet.gluon.contrib.nn.PixelShuffle1D/2D/3D if factor=0
   
   
   ### Error Message
   ~~~python
   Floating point exception (core dumped)
   ~~~
   ## To Reproduce
   ~~~python
   import mxnet
   layer = mxnet.gluon.contrib.nn.PixelShuffle1D(factor=0)
   layer(mxnet.nd.ones((1,1,1,1,1)))
   ~~~
   
   ~~~python
   import mxnet
   layer = mxnet.gluon.contrib.nn.PixelShuffle2D(factor=0)
   layer(mxnet.nd.ones((1,1,1,1,1)))
   ~~~
   
   
   ~~~python
   import mxnet
   layer = mxnet.gluon.contrib.nn.PixelShuffle3D(factor=0)
   layer(mxnet.nd.ones((1,1,1,1,1)))
   ~~~
   
   
   
   
   ## Environment
   
   OS: ubuntu 18.04
   Python: 3.7.6
   pip: 20.0.2
   numpy: 1.18.5
   mxnet: 1.6.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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org