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 2023/05/21 05:02:31 UTC

[tvm] branch nightly updated (52de91e366 -> 68800fa810)

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

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


    from 52de91e366 [Fix] Fix typo in error message (#14890)
     add 8ebd598fcd [bugfix] [Relay] fix broadcast in PyTorch frontend  (#14885)
     add 0dae36048e [CI] Update CPU image to install PyTorch (#14847)
     add b91c2f2e07 [Vulkan] Add cooperative matrix support (#14817)
     add f4a7eaebd6 [TIR][TVMScript] Added format/parsing of subroutine calls (#14889)
     add 68800fa810 [Contrib] Use f-strings for string formatting, NFC (#14893)

No new revisions were added by this update.

Summary of changes:
 ci/jenkins/docker-images.ini                       |  20 +--
 include/tvm/node/script_printer.h                  |   7 +
 python/tvm/contrib/clang.py                        |   6 +-
 python/tvm/contrib/cudnn.py                        |   6 +-
 python/tvm/contrib/cutlass/build.py                |  27 ++-
 python/tvm/contrib/cutlass/conv2d_operation.py     |  10 +-
 python/tvm/contrib/cutlass/gemm_operation.py       |  21 +--
 python/tvm/contrib/cutlass/gen_conv2d.py           |   2 +-
 python/tvm/contrib/cutlass/gen_gemm.py             |   9 +-
 python/tvm/contrib/cutlass/gen_tensor_op.py        |  49 ++----
 python/tvm/contrib/cutlass/library.py              |  23 +--
 python/tvm/contrib/graph_executor.py               |   2 +-
 .../contrib/hexagon/profiling/process_lwp_data.py  |   2 +-
 python/tvm/contrib/nvcc.py                         |   6 +-
 python/tvm/contrib/peak.py                         |   4 +-
 python/tvm/contrib/pickle_memoize.py               |   4 +-
 python/tvm/contrib/pipeline_executor.py            |  20 +--
 python/tvm/contrib/pipeline_executor_build.py      |  22 +--
 python/tvm/contrib/rocm.py                         |   4 +-
 python/tvm/contrib/sparse.py                       |   8 +-
 python/tvm/contrib/tar.py                          |   2 +-
 python/tvm/contrib/target/coreml.py                |  23 +--
 python/tvm/contrib/target/onnx.py                  |  79 +++------
 python/tvm/contrib/target/vitis_ai.py              |   2 +-
 python/tvm/contrib/tf_op/module.py                 |   2 +-
 python/tvm/contrib/utils.py                        |   2 +-
 python/tvm/contrib/xcode.py                        |   6 +-
 python/tvm/ir/expr.py                              |   5 +
 python/tvm/relay/frontend/pytorch.py               |   7 +-
 python/tvm/script/parser/core/parser.py            |   5 +-
 python/tvm/script/parser/core/utils.py             |  26 ++-
 python/tvm/script/parser/ir/parser.py              |  23 ++-
 python/tvm/script/parser/tir/parser.py             |   7 +-
 python/tvm/target/target.py                        |  21 +++
 python/tvm/tir/__init__.py                         |   2 +-
 python/tvm/tir/op.py                               |  12 ++
 src/runtime/vulkan/vulkan_device.cc                |   5 +-
 src/runtime/vulkan/vulkan_device.h                 |   1 +
 src/runtime/vulkan/vulkan_device_api.cc            |   4 +
 src/script/printer/ir/ir.cc                        |  15 +-
 src/script/printer/tir/expr.cc                     |   5 +-
 src/script/printer/tir/function.cc                 |  20 +++
 src/target/source/codegen_cuda.cc                  |  23 +--
 src/target/spirv/codegen_spirv.cc                  | 193 +++++++++++++++++++--
 src/target/spirv/codegen_spirv.h                   |  14 ++
 src/target/spirv/ir_builder.cc                     |  68 +++++++-
 src/target/spirv/ir_builder.h                      |  25 ++-
 src/target/spirv/spirv_support.cc                  |   4 +
 src/target/spirv/spirv_support.h                   |  14 ++
 src/target/target_kind.cc                          |   1 +
 src/tir/transforms/ir_utils.cc                     |  30 ++++
 src/tir/transforms/ir_utils.h                      |   8 +
 tests/python/driver/tvmc/test_frontends.py         |  10 +-
 .../python/unittest/test_target_codegen_vulkan.py  | 128 ++++++++++++++
 tests/python/unittest/test_tvmscript_roundtrip.py  |  17 ++
 tests/scripts/task_config_build_cpu.sh             |   2 +-
 56 files changed, 772 insertions(+), 291 deletions(-)