You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by pa...@apache.org on 2019/10/28 02:55:47 UTC

[incubator-mxnet] branch mkldnn-v1.0 updated (dea3dd2 -> ddbe0b1)

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

patriczhao pushed a change to branch mkldnn-v1.0
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from dea3dd2  [mkldnn-1.0]Rebase to master (#16648)
     add ddbe0b1  [mkldnn-v1.0]rebase with master (#16649)

No new revisions were added by this update.

Summary of changes:
 benchmark/python/einsum/benchmark_einsum.py        |   9 +
 ci/docker/runtime_functions.sh                     |   5 +-
 docs/python_docs/environment.yml                   |  19 +-
 .../python/tutorials/extend/custom_layer.md        |   2 +-
 .../gluon_from_experiment_to_deployment.md         |   4 +-
 .../packages/gluon/training/fit_api_tutorial.md    |   2 +-
 .../tutorials/packages/ndarray/sparse/train.md     |   4 +-
 .../packages/ndarray/sparse/train_gluon.md         |  35 +-
 .../tutorials/packages/onnx/fine_tuning_gluon.md   |   2 +-
 .../python/tutorials/packages/viz/index.rst        |   2 +-
 .../backend/mkldnn/mkldnn_quantization.md          |   4 +-
 .../tutorials/performance/backend/profiler.md      |   2 +-
 .../performance/backend/tensorrt/tensorrt.md       |   4 +-
 docs/static_site/src/pages/api/api.html            |   2 +-
 .../docs/tutorials/mxnet_cpp_inference_tutorial.md |  16 +-
 docs/static_site/src/pages/api/faq/float16.md      |   2 +-
 docs/static_site/src/pages/api/faq/perf.md         |   6 +-
 .../src/pages/get_started/build_from_source.md     |   2 +-
 include/mxnet/c_api.h                              |  38 ++
 julia/docs/src/api/io.md                           |   2 +-
 julia/docs/src/tutorial/char-lstm.md               |   2 +-
 julia/docs/src/tutorial/mnist.md                   |   4 +-
 perl-package/AI-MXNet/lib/AI/MXNet/NDArray.pm      |   6 +-
 perl-package/AI-MXNet/t/test_ndarray.t             |  19 +-
 python/mxnet/_numpy_op_doc.py                      | 126 +++++
 python/mxnet/base.py                               |   3 +
 python/mxnet/gluon/block.py                        |  35 +-
 python/mxnet/gluon/parameter.py                    |   3 +-
 python/mxnet/ndarray/numpy/_op.py                  | 156 +++++-
 python/mxnet/ndarray/numpy/random.py               |  12 +-
 python/mxnet/numpy/linalg.py                       |  25 +
 python/mxnet/numpy/multiarray.py                   | 545 +++++++++++++++++++--
 python/mxnet/numpy/random.py                       |  80 ++-
 python/mxnet/numpy/stride_tricks.py                |   9 +
 python/mxnet/numpy/utils.py                        |   4 +-
 python/mxnet/numpy_dispatch_protocol.py            |   2 +
 python/mxnet/numpy_extension/random.py             |   2 +-
 python/mxnet/symbol/numpy/_symbol.py               |  55 ++-
 python/mxnet/symbol/numpy/random.py                |   8 +-
 python/mxnet/symbol/symbol.py                      | 110 +++--
 python/mxnet/util.py                               |  63 ++-
 src/c_api/c_api_executor.cc                        | 231 +++++++--
 src/ndarray/ndarray.cc                             |   2 +
 src/operator/contrib/allclose_op-inl.h             |   4 +-
 src/operator/contrib/boolean_mask.cc               |   2 +-
 src/operator/contrib/boolean_mask.cu               |   2 +-
 src/operator/mxnet_op.h                            |  12 +
 src/operator/numpy/np_broadcast_reduce_op_index.cc |  11 +
 src/operator/numpy/np_broadcast_reduce_op_index.cu |   3 +
 src/operator/numpy/np_einsum_op-inl.h              | 172 ++++---
 src/operator/numpy/np_einsum_op.cc                 |  11 +
 src/operator/numpy/np_einsum_path_op-inl.h         | 114 ++---
 src/operator/numpy/np_matrix_op-inl.h              |  54 +-
 src/operator/numpy/np_matrix_op.cc                 | 206 +++++++-
 src/operator/numpy/np_matrix_op.cu                 |   3 +
 src/operator/numpy/np_nonzero_op.cc                |   3 +-
 src/operator/numpy/np_nonzero_op.cu                |   2 +-
 src/operator/numpy/random/np_choice_op.h           |  20 +-
 src/operator/rnn-inl.h                             |   6 +-
 src/operator/subgraph/build_subgraph.cc            |   2 +-
 src/operator/tensor/indexing_op.cc                 |  59 ++-
 src/operator/tensor/indexing_op.cu                 |  61 +--
 src/operator/tensor/indexing_op.h                  |  28 +-
 tests/nightly/JenkinsfileForBinaries               |  10 +-
 tests/nightly/test_large_array.py                  |   6 +-
 tests/nightly/test_large_vector.py                 |  49 +-
 tests/python/gpu/test_operator_gpu.py              |   1 +
 tests/python/unittest/test_gluon.py                |  40 ++
 tests/python/unittest/test_numpy_gluon.py          |  23 +
 .../python/unittest/test_numpy_interoperability.py |  62 +++
 tests/python/unittest/test_numpy_op.py             | 180 +++++--
 71 files changed, 2284 insertions(+), 526 deletions(-)