You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2019/06/17 00:04:27 UTC

[incubator-mxnet] branch v1.5.x updated (09202f7f -> 85aaa3a)

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

zhasheng pushed a change to branch v1.5.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 09202f7f Improve static cached_op optimization (#15187)
     add b58cf0a  Updated Image Augmentation tutorial to use Gluon Transforms. (#15197)
     add b8b352d  Cleaned up profiling tutorial (#15228)
     add 41d35c4  [TUTORIAL] Add multiple GPUs training tutorial (#15158)
     add 3b663ef  [MXNET-1415]Add MXEnginePushAsyncND and MXEnginePushSyncND C APIs (#15177)
     add 13cf5db  Profiler API Enhancements (#15132)
     add 45844b2  Sort benchmark output per op name, add some validation to CLI (#15249)
     add 5b1603f  Fix nightly build warning (#15248)
     add c4ea674  [Dependency Update] Bump up cuDNN & NCCL version (#15142)
     add 85aaa3a  Fix horovod build failure when mxnet is built from source (#15213)

No new revisions were added by this update.

Summary of changes:
 .gitignore                                       |   5 +-
 Makefile                                         |   2 +-
 benchmark/opperf/opperf.py                       |  36 ++--
 benchmark/opperf/utils/common_utils.py           |   5 +-
 ci/docker/Dockerfile.build.centos7_gpu           |   2 +-
 ci/docker/Dockerfile.build.ubuntu_base_gpu       |   2 +-
 ci/docker/Dockerfile.build.ubuntu_build_cuda     |   2 +-
 ci/docker/Dockerfile.build.ubuntu_gpu_cu100      |   2 +-
 ci/docker/Dockerfile.build.ubuntu_gpu_cu90       |   2 +-
 ci/docker/Dockerfile.build.ubuntu_gpu_cu92       |   2 +-
 ci/docker/Dockerfile.build.ubuntu_nightly_gpu    |   2 +-
 docs/tutorials/gluon/data_augmentation.md        | 219 +++++++++++++++-----
 docs/tutorials/gluon/multi_gpu.md                | 193 ++++++++++++++++++
 docs/tutorials/index.md                          |   6 +-
 docs/tutorials/python/profiler.md                | 112 +++++-----
 docs/tutorials/python/profiler_nvprof.png        | Bin 235747 -> 0 bytes
 docs/tutorials/python/profiler_nvprof_zoomed.png | Bin 254663 -> 0 bytes
 docs/tutorials/python/profiler_winograd.png      | Bin 75450 -> 0 bytes
 include/mkldnn                                   |   1 -
 include/mkldnn/mkldnn.h                          |   1 +
 include/mkldnn/mkldnn_types.h                    |   1 +
 include/mxnet/c_api.h                            |  72 ++++++-
 mkldnn.mk                                        |   3 +-
 python/mxnet/profiler.py                         |  35 +++-
 src/c_api/c_api.cc                               |  40 ++++
 src/c_api/c_api_profile.cc                       |  18 +-
 src/profiler/aggregate_stats.cc                  | 249 +++++++++++++++++------
 src/profiler/aggregate_stats.h                   |  21 +-
 tests/cpp/engine/threaded_engine_test.cc         |  48 +++++
 tests/python/unittest/test_profiler.py           |  36 ++++
 tests/tutorials/test_tutorials.py                |   3 +
 tools/license_header.py                          |   3 +
 tools/setup_gpu_build_tools.sh                   |  16 +-
 33 files changed, 922 insertions(+), 217 deletions(-)
 mode change 100644 => 100755 benchmark/opperf/opperf.py
 create mode 100644 docs/tutorials/gluon/multi_gpu.md
 delete mode 100644 docs/tutorials/python/profiler_nvprof.png
 delete mode 100644 docs/tutorials/python/profiler_nvprof_zoomed.png
 delete mode 100644 docs/tutorials/python/profiler_winograd.png
 delete mode 120000 include/mkldnn
 create mode 120000 include/mkldnn/mkldnn.h
 create mode 120000 include/mkldnn/mkldnn_types.h