sxjscience opened a new issue #17839: [Numpy] Cannot mix int32 and int64 URL: https://github.com/apache/incubator-mxnet/issues/17839 Code: ```python import mxnet as mx mx.npx.set_np() a = mx.np.ones((10,), dtype=mx.np.int32) b = mx.np.ones((10,), dtype=mx.np.int64) c = a * b print(c) ``` Error: ``` MXNetError: Operator _npi_multiply does not support combination of int with long long yet... ```
---------------------------------------------------------------- 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] With regards, Apache Git Services
