apeforest edited a comment on issue #11495: Bug for matrices of multiple dimension, with one dimension much larger URL: https://github.com/apache/incubator-mxnet/issues/11495#issuecomment-402855774 It is due to integer overflow. The return type of the first value`nnvm::TShape shape_->Size()` is int64_t. The return type of the second value `mshadow::Shape shape->Size()` is size_t. The value 700000x128x128 exceeds the `unsigned int` range. Therefore, it caused CHECK_EQUAL failure.
---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
