pioy commented on pull request #19185: URL: https://github.com/apache/incubator-mxnet/pull/19185#issuecomment-697995138
I was able to reduce number of tests case in the reproduction sequence to to cases: ``` OMP_NUM_THREADS=1 pytest --maxfail=1 -s -m 'not serial' -n 0 --durations=50 --verbose \ 'tests/python/unittest/test_contrib_intgemm.py::test_contrib_intgemm_multiply[api1-16-192-4]'\ tests/python/unittest/test_deferred_compute.py::test_dc_hybridblock_deferred_init ``` Interesting thing is that the introduction of another test in the middle causes the sequence passes: ``` OMP_NUM_THREADS=1 pytest --maxfail=1 -s -m 'not serial' -n 0 --durations=50 --verbose \ 'tests/python/unittest/test_contrib_intgemm.py::test_contrib_intgemm_multiply[api1-16-192-4]'\ 'tests/python/unittest/test_contrib_intgemm.py::test_contrib_intgemm_multiply[api1-16-192-2]'\ tests/python/unittest/test_deferred_compute.py::test_dc_hybridblock_deferred_init ``` I edited the test test_contrib_intgemm_multiply eliminating calls to test_contrib_intgemm_multiply, what fixed the issue. It looks like it may be something wrong with contrib_intgemm_fully_connected op. ---------------------------------------------------------------- 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]
