You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by wk...@apache.org on 2020/01/09 00:02:57 UTC

[incubator-mxnet] branch master updated (c1f6d64 -> ddeac2e)

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

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


    from c1f6d64  Enhancements for MXTensor for custom operators (#17204)
     add ddeac2e  Dynamic subgraph property (#17034)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   5 +
 Makefile                                           |   8 +-
 ci/jenkins/Jenkins_steps.groovy                    |  14 +-
 example/extensions/lib_custom_op/Makefile          |   7 +-
 example/extensions/lib_custom_op/subgraph_lib.cc   |  98 --------
 .../{lib_custom_op => lib_subgraph}/Makefile       |   7 +-
 example/extensions/lib_subgraph/subgraph_lib.cc    | 250 +++++++++++++++++++++
 .../test_subgraph.py                               |  46 ++--
 include/mxnet/lib_api.h                            | 185 ++++++++++++++-
 src/c_api/c_api.cc                                 |  77 ++++++-
 src/operator/subgraph/build_subgraph.cc            |  20 ++
 .../partitioner/custom_subgraph_property.h         | 235 +++++++++++++++++++
 src/operator/subgraph/subgraph_property.h          |   9 +
 tests/python/unittest/test_extensions.py           |  64 ++++++
 14 files changed, 881 insertions(+), 144 deletions(-)
 delete mode 100644 example/extensions/lib_custom_op/subgraph_lib.cc
 copy example/extensions/{lib_custom_op => lib_subgraph}/Makefile (84%)
 create mode 100644 example/extensions/lib_subgraph/subgraph_lib.cc
 rename example/extensions/{lib_custom_op => lib_subgraph}/test_subgraph.py (52%)
 create mode 100644 src/operator/subgraph/partitioner/custom_subgraph_property.h