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

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


 discard 03cdd1b4ea [ci][docker] Nightly Docker image update
     add db4380cf41 [ci][docker] create Dockerfile.ci_riscv (#12230)
     add dff5c975a0 Deploy the Pretrained Model on Jetson Nano  (#11037)
     add fb87c21bf8 remove duplicated cast op when lowering qnn.requantize op 
in float mode (#12234)
     add 12dcfd70ef [AutoSchedule] Fix misusage of an already-moved object 
(#12239)
     add c0a3da84bc [Relay][VM] Fix an ICHECK which never fails in ctor of 
VMFunction (#12241)
     add e756980b41 [UX][TVMSciprt] Use HTML formatter in notebook environments 
(#12240)
     add 961a7c70d7 [ROOFLINE] Add CUDA support to roofline analysis (#12205)
     add cd40093d9e [ci][docker] Nightly Docker image update

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (03cdd1b4ea)
            \
             N -- N -- N   refs/heads/nightly-docker-update (cd40093d9e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile                                        |  16 +-
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 docker/{Dockerfile.ci_qemu => Dockerfile.ci_riscv} |  35 +--
 ...oy_model_on_rasp.py => deploy_model_on_nano.py} |  54 +++--
 include/tvm/runtime/vm/vm.h                        |   2 +-
 python/tvm/script/highlight.py                     |  24 +-
 python/tvm/utils/__init__.py                       |   2 +-
 .../utils/{roofline.py => roofline/__init__.py}    | 266 +++------------------
 python/tvm/utils/roofline/cuda.py                  | 236 ++++++++++++++++++
 python/tvm/utils/roofline/registry.py              |  83 +++++++
 python/tvm/utils/roofline/x86.py                   | 254 ++++++++++++++++++++
 src/auto_scheduler/search_policy/sketch_policy.cc  |   2 +-
 src/relay/qnn/op/requantize.cc                     |   5 +-
 src/target/source/codegen_cuda.cc                  |   2 +
 src/tir/ir/specialize.cc                           |   1 +
 src/tir/transforms/tensorcore_infer_fragment.cc    |  15 +-
 tests/python/unittest/test_roofline.py             | 121 ++++++++++
 tests/python/unittest/test_runtime_profiling.py    |  98 --------
 18 files changed, 809 insertions(+), 423 deletions(-)
 copy docker/{Dockerfile.ci_qemu => Dockerfile.ci_riscv} (75%)
 copy gallery/how_to/deploy_models/{deploy_model_on_rasp.py => 
deploy_model_on_nano.py} (84%)
 rename python/tvm/utils/{roofline.py => roofline/__init__.py} (51%)
 create mode 100644 python/tvm/utils/roofline/cuda.py
 create mode 100644 python/tvm/utils/roofline/registry.py
 create mode 100644 python/tvm/utils/roofline/x86.py
 create mode 100644 tests/python/unittest/test_roofline.py

Reply via email to