This is an automated email from the ASF dual-hosted git repository.

lausen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new e8fce62  Skip flaky test_gpu_memory_profiler_gluon on cd pipeline 
(#18565)
e8fce62 is described below

commit e8fce62b369dac627dec23d730661624ec79b957
Author: Manu Seth <22492939+mset...@users.noreply.github.com>
AuthorDate: Mon Jun 15 18:42:51 2020 -0700

    Skip flaky test_gpu_memory_profiler_gluon on cd pipeline (#18565)
---
 tests/python/unittest/test_profiler.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/python/unittest/test_profiler.py 
b/tests/python/unittest/test_profiler.py
index d307977..e026d57 100644
--- a/tests/python/unittest/test_profiler.py
+++ b/tests/python/unittest/test_profiler.py
@@ -26,6 +26,7 @@ from collections import OrderedDict
 import mxnet as mx
 from mxnet import profiler
 from mxnet.gluon import nn
+from mxnet.test_utils import is_cd_run
 from common import run_in_spawned_process
 import pytest
 
@@ -532,6 +533,7 @@ def test_gpu_memory_profiler_symbolic():
 
 
 @pytest.mark.skipif(mx.context.num_gpus() == 0, reason="GPU memory profiler 
records allocation on GPUs only")
+@pytest.mark.skipif(is_cd_run(), reason="flaky test - open issue #18564")
 def test_gpu_memory_profiler_gluon():
     enable_profiler(profile_filename='test_profiler.json',
                     run=True, continuous_dump=True)

Reply via email to