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

lausen pushed a change to branch leezu-patch-2
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 06a8252  Test
     add dc3ce08  Fix test
     add a9b16f7  change bn test (#18688)
     add 19e373d  Fix scipy dependency in probability module (#18689)
     add 9c5b95a  Partition API adding and deleting new params to Block and 
Symbol (#18405)
     add 8ebb537  add 'needs triage' label to new bug reports (#18696)
     add 9d62392  Fix python micro-site table of content bugs (#18664)
     add 7f7e1c5  Add better partial args/aux handling in symbol optimize_for 
(#18350)
     add 7c9c4fc  Merge content from numpy.mxnet.io into mxnet official website 
(#18691)
     add f125f5f  Fix all anchor shifts on website (#18674)
     add d8430b6  Set CMAKE_CUDA_COMPILER in aarch64-linux-gnu-toolchain.cmake 
(#18713)
     add d512814  Disable test coverage in MKL builds (#18443)
     add 0dc30a2  Enable GPU Memory profiler tests (#18701)
     add f5631d5  Merge remote-tracking branch 'origin/master' into 
leezu-patch-2

No new revisions were added by this update.

Summary of changes:
 .github/ISSUE_TEMPLATE/bug_report.md               |   2 +-
 ci/docker/runtime_functions.sh                     |  70 +--
 .../toolchains/aarch64-linux-gnu-toolchain.cmake   |   1 +
 ci/jenkins/Jenkins_steps.groovy                    |  16 +-
 .../getting-started/crash-course/1-ndarray.md      |  70 ++-
 .../tutorials/getting-started/crash-course/2-nn.md |  48 +-
 .../getting-started/crash-course/3-autograd.md     |  47 +-
 .../getting-started/crash-course/4-train.md        |  58 +-
 .../getting-started/crash-course/5-predict.md      |  88 ++-
 .../getting-started/crash-course/6-use_gpus.md     |  93 +--
 .../getting-started/crash-course/index.rst         |  42 +-
 .../getting-started/deepnumpy/cheat-sheet.md       | 463 +++++++++++++++
 .../deepnumpy/deepnumpy-vs-numpy.md                | 113 ++++
 .../mkldnn => getting-started/deepnumpy}/index.rst |  26 +-
 .../python/tutorials/getting-started/index.rst     |   7 +
 .../packages/ndarray/deepnumpy/arrays.indexing.rst | 356 ++++++++++++
 .../packages/ndarray/deepnumpy/arrays.ndarray.rst  | 631 +++++++++++++++++++++
 .../packages/ndarray/deepnumpy/arrays.rst          |  42 ++
 .../tutorials/packages/ndarray/deepnumpy/index.rst |  30 +
 .../tutorials/packages/ndarray/deepnumpy/npx.rst   |  85 +++
 .../packages/ndarray/deepnumpy/random/index.rst    |  90 +++
 .../ndarray/deepnumpy/routines.array-creation.rst  | 124 ++++
 .../deepnumpy/routines.array-manipulation.rst      | 143 +++++
 .../packages/ndarray/deepnumpy/routines.io.rst     | 114 ++++
 .../packages/ndarray/deepnumpy/routines.linalg.rst | 106 ++++
 .../packages/ndarray/deepnumpy/routines.math.rst   | 213 +++++++
 .../packages/ndarray/deepnumpy/routines.rst        |  47 ++
 .../packages/ndarray/deepnumpy/routines.sort.rst   |  49 ++
 .../ndarray/deepnumpy/routines.statistics.rst      |  74 +++
 .../python/tutorials/packages/ndarray/index.rst    |   8 +-
 .../mxtheme/static/sphinx_materialdesign_theme.css |   2 +-
 .../static/sphinx_materialdesign_theme.css.map     |   2 +-
 .../mxtheme/static/sphinx_materialdesign_theme.js  | 452 ++++++++-------
 .../static/sphinx_materialdesign_theme.js.map      |   2 +-
 .../themes/mx-theme/src/js/scrollspy.js            |  25 +-
 .../themes/mx-theme/src/scss/footer/_footer.scss   |   4 +
 docs/static_site/src/_sass/minima/_layout.scss     |  12 +-
 include/mxnet/c_api.h                              |  30 +
 python/mxnet/gluon/block.py                        | 105 +++-
 .../mxnet/gluon/probability/distributions/utils.py |  25 +-
 python/mxnet/symbol/symbol.py                      | 130 ++++-
 src/c_api/c_api_symbolic.cc                        | 120 ++--
 src/common/exec_utils.h                            |  72 ---
 tests/python/gpu/test_profiler_gpu.py              | 145 +++++
 tests/python/unittest/test_numpy_op.py             |   4 +-
 tests/python/unittest/test_operator.py             |   4 +-
 tests/python/unittest/test_profiler.py             | 120 +---
 tests/python/unittest/test_symbol.py               |   2 +-
 48 files changed, 3691 insertions(+), 821 deletions(-)
 create mode 100644 
docs/python_docs/python/tutorials/getting-started/deepnumpy/cheat-sheet.md
 create mode 100644 
docs/python_docs/python/tutorials/getting-started/deepnumpy/deepnumpy-vs-numpy.md
 copy docs/python_docs/python/tutorials/{performance/backend/mkldnn => 
getting-started/deepnumpy}/index.rst (66%)
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/arrays.indexing.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/arrays.ndarray.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/arrays.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/index.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/npx.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/random/index.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.array-creation.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.array-manipulation.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.io.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.linalg.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.math.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.sort.rst
 create mode 100644 
docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.statistics.rst
 create mode 100644 tests/python/gpu/test_profiler_gpu.py

Reply via email to