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 2020/11/11 18:04:12 UTC

[incubator-mxnet] branch master updated (1120d59 -> a52b639)

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 1120d59  Fix markdown syntax for link to community guide (#19513)
     add a52b639  Optimize graph execution in presence of dynamic shape op (#18690)

No new revisions were added by this update.

Summary of changes:
 include/mxnet/c_api.h                              |   8 +
 python/mxnet/gluon/block.py                        |  42 ++++-
 python/mxnet/symbol/symbol.py                      |   9 +
 src/c_api/c_api_symbolic.cc                        |  20 +++
 src/imperative/imperative_utils.h                  |  10 +-
 src/operator/control_flow.cc                       |   2 +-
 src/operator/subgraph/build_subgraph.cc            |  54 +++++-
 .../subgraph/static_shape_subgraph_property.cc     | 189 +++++++++++++++++++++
 src/operator/subgraph_op_common.cc                 |   4 +-
 src/operator/subgraph_op_common.h                  |  12 +-
 tests/python/unittest/test_deferred_compute.py     |  17 ++
 tests/python/unittest/test_dynamic_shape.py        |  75 ++++++++
 12 files changed, 419 insertions(+), 23 deletions(-)
 create mode 100644 src/operator/subgraph/static_shape_subgraph_property.cc