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/05/23 03:09:20 UTC

[incubator-mxnet] branch master updated (d4e458e -> 038b9fb)

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

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


    from d4e458e  [Quantization] Support zero-size tensor input for quantization flow (#15031)
     add 038b9fb  Simplify creation of NodeEntry instances and use emplace_back (#14095)

No new revisions were added by this update.

Summary of changes:
 3rdparty/dmlc-core                                 |  2 +-
 3rdparty/tvm                                       |  2 +-
 .../clojure-package/test/good-test-ndarray-api.clj |  2 +-
 .../clojure-package/test/good-test-symbol-api.clj  |  2 +-
 docs/faq/new_op.md                                 | 22 +++++++
 include/mxnet/ndarray.h                            | 53 ++++++++++-------
 src/c_api/c_api_function.cc                        |  2 +-
 src/executor/graph_executor.cc                     | 11 ++--
 src/executor/infer_graph_attr_pass.cc              |  4 +-
 src/imperative/cached_op.cc                        | 69 ++++++++++++----------
 src/imperative/imperative.cc                       |  4 +-
 src/ndarray/ndarray.cc                             |  6 +-
 src/nnvm/gradient.cc                               | 28 +++++----
 src/nnvm/legacy_op_util.cc                         | 25 ++++----
 src/operator/custom/custom.cc                      |  4 +-
 src/operator/elemwise_op_common.h                  |  4 +-
 src/operator/nn/activation.cc                      |  2 +-
 src/operator/nn/batch_norm.cc                      | 38 ++++++------
 src/operator/nn/dropout.cc                         |  2 +-
 src/operator/nn/layer_norm.cc                      |  4 +-
 src/operator/nn/lrn.cc                             |  2 +-
 src/operator/operator_common.h                     | 19 +++---
 src/operator/quantization/quantize_graph_pass.cc   | 34 +++++------
 src/operator/regression_output-inl.h               |  2 +-
 src/operator/rnn.cc                                |  6 +-
 .../subgraph/mkldnn/mkldnn_conv_property.h         |  2 +-
 src/operator/subgraph/mkldnn/mkldnn_fc_property.h  |  2 +-
 src/operator/tensor/broadcast_reduce_op_index.cc   |  5 +-
 src/operator/tensor/broadcast_reduce_op_value.cc   | 12 ++--
 src/operator/tensor/control_flow_op.cc             |  7 +--
 src/operator/tensor/elemwise_sum.cc                | 11 ++--
 src/operator/tensor/elemwise_unary_op_basic.cc     | 19 +++---
 src/operator/tensor/indexing_op.cc                 | 12 ++--
 src/operator/tensor/ordering_op.cc                 |  4 +-
 tests/cpp/include/test_core_op.h                   |  4 +-
 35 files changed, 232 insertions(+), 195 deletions(-)