You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by jr...@apache.org on 2020/11/05 19:58:07 UTC

[incubator-tvm] branch main updated (7291a92 -> a4bd5f8)

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

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


    from 7291a92  [µTVM] Add virtual machine, test zephyr runtime on real hardware (#6703)
     add a4bd5f8  [Rust][IRModule] Flesh out IRModule methods (#6741)

No new revisions were added by this update.

Summary of changes:
 rust/Cargo.toml                                |   1 -
 rust/tvm-graph-rt/tests/test_wasm32/Cargo.toml |   2 +-
 rust/tvm-macros/Cargo.toml                     |   2 +-
 rust/tvm-macros/src/external.rs                |  51 +++-
 rust/tvm-macros/src/lib.rs                     |   5 +-
 rust/tvm-macros/src/object.rs                  |  32 ++-
 rust/tvm-rt/src/array.rs                       |  15 +-
 rust/tvm-rt/src/map.rs                         |   2 -
 rust/tvm-rt/src/ndarray.rs                     |   2 +-
 rust/tvm-rt/src/object/mod.rs                  |  12 +-
 rust/tvm-rt/src/object/object_ptr.rs           |  40 ++-
 rust/tvm-rt/src/string.rs                      |   3 +-
 rust/tvm-rt/src/value.rs                       |   1 -
 rust/tvm-sys/src/datatype.rs                   |   4 +
 rust/tvm/src/ir/arith.rs                       |   2 +-
 rust/tvm/src/ir/attrs.rs                       |   2 +-
 rust/tvm/src/ir/diagnostics/mod.rs             |   7 +-
 rust/tvm/src/ir/expr.rs                        |  14 +-
 rust/tvm/src/ir/function.rs                    |   2 +-
 rust/tvm/src/ir/module.rs                      | 322 ++++++++++++++++++++-----
 rust/tvm/src/ir/op.rs                          |   2 +-
 rust/tvm/src/ir/relay/attrs/nn.rs              |  14 +-
 rust/tvm/src/ir/relay/attrs/transform.rs       |   2 +-
 rust/tvm/src/ir/relay/mod.rs                   |  97 ++++----
 rust/tvm/src/ir/source_map.rs                  |   4 +-
 rust/tvm/src/ir/span.rs                        |   4 +-
 rust/tvm/src/ir/tir.rs                         |  16 +-
 rust/tvm/src/ir/ty.rs                          | 125 +++++++---
 rust/tvm/src/transform.rs                      |   2 +-
 src/ir/module.cc                               |   3 +
 tests/scripts/task_rust.sh                     |   2 +-
 31 files changed, 599 insertions(+), 193 deletions(-)