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

[incubator-mxnet] branch ib/bump-jl-ver updated (873f2ad -> 897682e)

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

iblis pushed a change to branch ib/bump-jl-ver
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


 discard 873f2ad  julia: bump binding version to v1.6.0
     add 6bdcef2  Deprecate USE_PROFILER flag (#15595)
     add 076b2f3  Softmax with length (#15169)
     add eab6da6  Fix warnings in CLang: (#15270)
     add da71324  Fix dumps for Constant initializer (#15150)
     add 7e632c9  add myself to interested modules (#15590)
     add d14fa69  Update profiler.md (#15477)
     add cc861f0  Tensor Inspector Tutorial (#15517)
     add 897682e  julia: bump binding version to v1.6.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (873f2ad)
            \
             N -- N -- N   refs/heads/ib/bump-jl-ver (897682e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                         |   1 -
 CODEOWNERS                             |  18 +-
 benchmark/opperf/README.md             |   2 -
 docs/faq/add_op_in_backend.md          |   3 +
 docs/faq/develop_and_hack.md           |   1 +
 docs/faq/env_var.md                    |   2 +-
 docs/faq/perf.md                       |   4 +-
 docs/faq/tensor_inspector_tutorial.md  | 168 +++++++++++++
 docs/install/osx_setup.md              |   1 -
 docs/tutorials/mkldnn/MKLDNN_README.md |   2 +-
 docs/tutorials/python/profiler.md      |   2 +
 example/profiler/README.md             |   3 +-
 make/maven/maven_darwin_mkl.mk         |   2 -
 make/maven/maven_linux_cu90mkl.mk      |   3 -
 make/maven/maven_linux_cu92mkl.mk      |   3 -
 make/maven/maven_linux_mkl.mk          |   3 -
 make/pip/pip_darwin_cpu.mk             |   3 -
 make/pip/pip_darwin_mkl.mk             |   3 -
 make/pip/pip_linux_cpu.mk              |   3 -
 make/pip/pip_linux_cu100.mk            |   3 -
 make/pip/pip_linux_cu100mkl.mk         |   3 -
 make/pip/pip_linux_cu101.mk            |   3 -
 make/pip/pip_linux_cu101mkl.mk         |   3 -
 make/pip/pip_linux_cu75.mk             |   3 -
 make/pip/pip_linux_cu75mkl.mk          |   3 -
 make/pip/pip_linux_cu80.mk             |   3 -
 make/pip/pip_linux_cu80mkl.mk          |   3 -
 make/pip/pip_linux_cu90.mk             |   3 -
 make/pip/pip_linux_cu90mkl.mk          |   3 -
 make/pip/pip_linux_cu91.mk             |   3 -
 make/pip/pip_linux_cu91mkl.mk          |   3 -
 make/pip/pip_linux_cu92.mk             |   3 -
 make/pip/pip_linux_cu92mkl.mk          |   3 -
 make/pip/pip_linux_mkl.mk              |   3 -
 python/mxnet/initializer.py            |   6 +
 src/engine/naive_engine.cc             |   6 +-
 src/engine/threaded_engine.h           |   2 +-
 src/kvstore/kvstore_local.h            |   4 +-
 src/operator/mxnet_op.h                |  51 ++++
 src/operator/nn/softmax-inl.h          | 428 ++++++++++++++++++++++++++++-----
 src/operator/nn/softmax.cc             |  33 ++-
 src/profiler/profiler.h                |   4 +-
 tests/jenkins/run_test.sh              |   1 -
 tests/jenkins/run_test_ubuntu.sh       |   1 -
 tests/python/unittest/test_init.py     |  19 +-
 tests/python/unittest/test_operator.py |  39 ++-
 46 files changed, 706 insertions(+), 160 deletions(-)
 create mode 100644 docs/faq/tensor_inspector_tutorial.md