TaoLv commented on a change in pull request #15631: [Flaky test] Skip
test_operator_gpu.test_convolution_independent_gradients
URL: https://github.com/apache/incubator-mxnet/pull/15631#discussion_r306105422
##########
File path: tests/python/unittest/test_operator.py
##########
@@ -2002,9 +2002,10 @@ def test_depthwise_convolution():
@with_seed()
def test_convolution_independent_gradients():
ctx = default_context()
- # set a low bar for autotuned cudnn conv
- atol = 1.0e-1 if ctx.device_type == "gpu" else 1.0e-3
- rtol = 1.0e-2 if ctx.device_type == "gpu" else 1.0e-3
+ if ctx.device_type == "gpu":
Review comment:
You can set `ctx = mx.cpu()` explicitly to avoid testing it on GPU. Please
also add description or issue link so we can revisit it in the future.
----------------------------------------------------------------
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