ElaineBao commented on issue #17716: [Large Tensor] linalg ops fail w/input dim 
>= 2**32
URL: 
https://github.com/apache/incubator-mxnet/issues/17716#issuecomment-597417721
 
 
   @connorgoggins The segment fault happens in [line 485 of 
src/operator/tensor/la_op-inl.h](https://github.com/apache/incubator-mxnet/blob/master/src/operator/tensor/la_op-inl.h#L485),
 when the index `j * (N + 1)` is larger than the maximum value of int32 range 
(`2**31-1`). 
   
   Since `N = 2**16` in this case, when `int j` is incremented to a value 
larger than `2**15-1`, the segment fault happens.

----------------------------------------------------------------
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

Reply via email to