Dividing MXNet array by integer crashes the kernel

The following code using MXNet ndarray crashes. The same code with NumPy does not.

from mxnet import np, npx
npx.set_np()

np.random.multinomial(1000, [1/6.]*6) / 1000