You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mo...@apache.org on 2021/04/20 16:25:59 UTC

[tvm] branch main updated (fbdffeb -> d0a0194)

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

moreau pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from fbdffeb  Protect child process enumeration in AutoTVM (#7887)
     add d0a0194  [VTA][OpenCL] intelfocl (#6126)

No new revisions were added by this update.

Summary of changes:
 cmake/modules/VTA.cmake                            |   8 +
 python/tvm/autotvm/task/topi_integration.py        |  11 +-
 python/tvm/relay/op/strategy/generic.py            |   9 +
 python/tvm/relay/testing/tf.py                     |   2 +-
 python/tvm/topi/x86/bitserial_dense.py             |   2 +-
 src/relay/backend/compile_engine.cc                |   4 +-
 src/runtime/workspace_pool.cc                      |   1 -
 src/tir/transforms/lower_tvm_builtin.cc            |  10 -
 vta/python/vta/autotvm.py                          |   2 +-
 vta/python/vta/environment.py                      |   4 +-
 vta/python/vta/program_bitstream.py                |  14 +-
 vta/python/vta/rpc_client.py                       |  14 +-
 vta/python/vta/testing/simulator.py                |   8 +-
 vta/python/vta/testing/utils.py                    |   2 +-
 vta/python/vta/top/graphpack.py                    |   2 +-
 vta/python/vta/top/op.py                           | 138 ++++++++-
 vta/python/vta/transform.py                        |   6 +-
 vta/runtime/runtime.cc                             | 134 ++++++++-
 vta/runtime/runtime.h                              |   2 +
 .../integration/test_benchmark_topi_conv2d.py      |   2 +-
 vta/tutorials/autotvm/tune_alu_vta.py              | 320 +++++++++++++++++++++
 vta/tutorials/frontend/deploy_classification.py    |  27 +-
 vta/tutorials/vta_get_started.py                   |   6 +-
 23 files changed, 676 insertions(+), 52 deletions(-)
 create mode 100644 vta/tutorials/autotvm/tune_alu_vta.py