You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/06/29 01:41:18 UTC

[tvm] branch last-successful updated (6c433d2309 -> 892ab13112)

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

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 6c433d2309 [Relay][VirtualDevice] Expose WithFields to Python to do proper copy in ExprMutator (#11882)
     add a17bfc05cc [Relay] CaptureIndexInSpans debugging pass (#11926)
     add 892ab13112 Move jenkins/ dir into ci/jenkins and spread docs around. (#11927)

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile                                        |   2 +-
 ci/README.md                                       |  97 +++++++++++++++
 ci/jenkins/.gitignore                              |   1 +
 {jenkins => ci/jenkins}/Build.groovy.j2            |   0
 {jenkins => ci/jenkins}/Deploy.groovy.j2           |   0
 {jenkins => ci/jenkins}/DockerBuild.groovy.j2      |   0
 {jenkins => ci/jenkins}/Jenkinsfile.j2             |  14 +--
 {jenkins => ci/jenkins}/Lint.groovy.j2             |   0
 .../ubuntu_install_dgl.sh => ci/jenkins/Makefile   |  14 ++-
 {jenkins => ci/jenkins}/Prepare.groovy.j2          |   0
 {jenkins => ci/jenkins}/README.md                  | 117 +++---------------
 {jenkins => ci/jenkins}/Test.groovy.j2             |   0
 {jenkins => ci/jenkins}/generate.py                |   8 +-
 {jenkins => ci/jenkins}/macros.j2                  |   0
 {jenkins => ci/jenkins}/requirements.txt           |   0
 docs/contribute/ci.rst                             | 119 ++++++++++++++++--
 docs/contribute/code_guide.rst                     |  17 +++
 include/tvm/relay/transform.h                      |  11 ++
 python/tvm/relay/transform/transform.py            |  19 +++
 .../transforms/capture_postdfsindex_in_spans.cc    | 134 +++++++++++++++++++++
 .../test_capture_postdfsindex_in_spans.py          |  91 ++++++++++++++
 tests/scripts/open_docker_update_pr.py             |   4 +-
 tests/scripts/task_lint.sh                         |   3 +-
 23 files changed, 525 insertions(+), 126 deletions(-)
 create mode 100644 ci/README.md
 create mode 100644 ci/jenkins/.gitignore
 rename {jenkins => ci/jenkins}/Build.groovy.j2 (100%)
 rename {jenkins => ci/jenkins}/Deploy.groovy.j2 (100%)
 rename {jenkins => ci/jenkins}/DockerBuild.groovy.j2 (100%)
 rename {jenkins => ci/jenkins}/Jenkinsfile.j2 (93%)
 rename {jenkins => ci/jenkins}/Lint.groovy.j2 (100%)
 copy docker/install/ubuntu_install_dgl.sh => ci/jenkins/Makefile (81%)
 mode change 100755 => 100644
 rename {jenkins => ci/jenkins}/Prepare.groovy.j2 (100%)
 rename {jenkins => ci/jenkins}/README.md (62%)
 rename {jenkins => ci/jenkins}/Test.groovy.j2 (100%)
 rename {jenkins => ci/jenkins}/generate.py (96%)
 rename {jenkins => ci/jenkins}/macros.j2 (100%)
 rename {jenkins => ci/jenkins}/requirements.txt (100%)
 create mode 100644 src/relay/transforms/capture_postdfsindex_in_spans.cc
 create mode 100644 tests/python/relay/transform/test_capture_postdfsindex_in_spans.py