xidulu commented on issue #16947: [numpy] add op bitwise_not URL: https://github.com/apache/incubator-mxnet/pull/16947#issuecomment-559782444 Native numpy supports boolean array as the input of `bitwise_not` ```python >>> a = np.ones((2,2),dtype='bool') >>> np.bitwise_not(a) array([[False, False], [False, False]]) ``` I suggest you cover this case in your tests: https://github.com/apache/incubator-mxnet/pull/16947/files#diff-c46120f3f0763207179e7ff51e2f989eR1132-R1138
---------------------------------------------------------------- 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
