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

taolv pushed a change to branch mkldnn-v1.0
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from d109033  re-enable unit tests (#16565)
     add 93ec1f2  [Doc] Use mirror link in the download page (#16501)
     add 06ce371  checking broken link fixes work (#16538)
     add 91bb398  [CD] Adds python docker pipeline (#16547)
     add 1fb6f00  Build dmlc-core with old thread_local implementation (#16526)
     add 261d09d  pickler override for np ndarrays (#16561)
     add 62b0638  Added large tensor support and test for gather_nd (#16371)
     add dcf5fc8  fix doc for topk (#16571)
     add 0ba1ce2  [numpy]op test in new pattern (#16556)
     add ca4af0e  Enforce adding documentation for builtin numpy operators 
(#16575)
     add 34e4f71  Move imagenet inference to nightly (#16577)
     add 06b86da  detect number of procs during sphinx build (#16512)
     add 1ffdd47  Make mrcnn_mask_target arg mask_size a 2d tuple (#16567)
     add 20aa10c  split issue templates (#16558)
     add 10941ab  Dgl ops 2 (#16416)
     add b05d72a  RNNOp to call cudaEventCreate lazily (#16584)
     add 5296ddc  add encoding to the stub files for potential utf8 char in doc 
strings (#16580)
     add ca240b2  Merge remote-tracking branch 'origin/master' into mkldnn-v1.0

No new revisions were added by this update.

Summary of changes:
 .github/ISSUE_TEMPLATE.md                          |  52 ---
 .github/ISSUE_TEMPLATE/bug_report.md               |  36 ++
 .github/ISSUE_TEMPLATE/feature_request.md          |  17 +
 .github/ISSUE_TEMPLATE/flaky_test.md               |  18 +
 3rdparty/dmlc-core                                 |   2 +-
 CMakeLists.txt                                     |   3 +
 Makefile                                           |   2 +
 cd/Jenkinsfile_cd_pipeline                         |  14 +-
 cd/Jenkinsfile_release_job                         |   3 +-
 cd/Jenkinsfile_utils.groovy                        |  12 +
 .../python/docker/Dockerfile                       |  23 +-
 .../python/docker/Dockerfile.test                  |  26 +-
 cd/python/{pypi => docker}/Jenkins_pipeline.groovy |  54 ++-
 cd/python/docker/python_images.sh                  | 128 ++++++
 .../python/docker/test_python_image.sh             |  38 +-
 cd/python/pypi/Jenkins_pipeline.groovy             |   2 +-
 cd/utils/docker_tag.sh                             |  59 +++
 .../utils/mxnet_base_image.sh                      |  42 +-
 ci/build.py                                        | 179 +--------
 ci/docker/runtime_functions.sh                     |   8 +
 ci/docker_cache.py                                 |  87 +----
 ci/docker_login.py                                 | 137 +++++++
 .../scripts/get_cifar_data.sh => ci/logging.conf   |  35 +-
 ci/safe_docker_run.py                              | 247 ++++++++++++
 ci/test_docker_cache.py                            |  40 +-
 ci/test_docker_login.py                            | 234 +++++++++++
 ci/test_safe_docker_run.py                         | 427 +++++++++++++++++++++
 ci/util.py                                         |  17 +
 cpp-package/tests/ci_test.sh                       |   2 -
 docs/python_docs/python/Makefile_sphinx            |  20 +-
 .../python/tutorials/deploy/export/onnx.md         |   2 +-
 .../performance/backend/mkldnn/mkldnn_readme.md    |   2 +-
 .../themes/mx-theme/mxtheme/footer.html            |   4 +-
 .../src/_includes/get_started/linux/cpp/cpp.md     |   2 +-
 .../src/_includes/get_started/macos/cpp/cpp.md     |   2 +-
 .../src/_includes/get_started/macos/scala/cpu.md   |   2 +-
 .../src/_includes/get_started/windows/cpp/cpp.md   |   4 +-
 docs/static_site/src/pages/api/faq/env_var.md      |   2 +-
 docs/static_site/src/pages/features.html           |   2 +-
 docs/static_site/src/pages/get_started/download.md |  18 +-
 .../src/pages/get_started/windows_setup.md         |   4 +-
 example/gluon/word_language_model/README.md        |   2 +-
 python/mxnet/base.py                               |   1 +
 python/mxnet/gluon/block.py                        |   4 +-
 python/mxnet/gluon/contrib/data/text.py            |   4 +-
 python/mxnet/gluon/data/dataloader.py              |  32 ++
 python/mxnet/gluon/trainer.py                      |   2 +-
 python/mxnet/ndarray/ndarray.py                    |   5 +-
 python/mxnet/numpy_dispatch_protocol.py            |   8 +
 python/mxnet/test_utils.py                         |   3 +
 src/operator/contrib/mrcnn_mask_target-inl.h       |   8 +-
 src/operator/contrib/mrcnn_mask_target.cu          |  10 +-
 src/operator/numpy/np_elemwise_broadcast_op.cu     |   3 -
 src/operator/rnn-inl.h                             |   9 +-
 src/operator/tensor/indexing_op.h                  |  10 +-
 src/operator/tensor/ordering_op.cc                 |   5 +-
 tests/cpp/engine/thread_local_test.cc              |  80 ++++
 tests/nightly/JenkinsfileForBinaries               |  11 +-
 tests/nightly/test_large_array.py                  | 179 +++++++--
 tests/nightly/test_large_vector.py                 |  13 +
 tests/python/unittest/test_contrib_operator.py     |   2 +-
 .../python/unittest/test_numpy_interoperability.py | 102 +++++
 tests/python/unittest/test_numpy_ndarray.py        |  12 +
 tests/python/unittest/test_numpy_op.py             |  12 +-
 64 files changed, 2050 insertions(+), 475 deletions(-)
 delete mode 100644 .github/ISSUE_TEMPLATE.md
 create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md
 create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md
 create mode 100644 .github/ISSUE_TEMPLATE/flaky_test.md
 copy docker/docker-python/Dockerfile.mxnet.python.cpu => 
cd/python/docker/Dockerfile (66%)
 copy ci/docker/Dockerfile.publish.test.ubuntu1404_cpu => 
cd/python/docker/Dockerfile.test (69%)
 copy cd/python/{pypi => docker}/Jenkins_pipeline.groovy (52%)
 create mode 100755 cd/python/docker/python_images.sh
 copy perl-package/AI-MXNet/lib/AI/MXNet/Contrib/NDArray.pm => 
cd/python/docker/test_python_image.sh (51%)
 mode change 100644 => 100755
 create mode 100755 cd/utils/docker_tag.sh
 copy ci/docker/install/centos7_base.sh => cd/utils/mxnet_base_image.sh (54%)
 create mode 100755 ci/docker_login.py
 copy contrib/clojure-package/examples/scripts/get_cifar_data.sh => 
ci/logging.conf (68%)
 mode change 100755 => 100644
 create mode 100755 ci/safe_docker_run.py
 create mode 100644 ci/test_docker_login.py
 create mode 100644 ci/test_safe_docker_run.py
 create mode 100644 tests/cpp/engine/thread_local_test.cc

Reply via email to