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/06/23 18:40:00 UTC

[incubator-tvm] branch master updated (ef9bf7d -> aa84ee2)

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

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


    from ef9bf7d  Fix the python intrin rule (#5895)
     add aa84ee2  Rust Refactor Stage 4: Rewrite Rust graph runtime to use new APIs (#5830)

No new revisions were added by this update.

Summary of changes:
 rust/Cargo.toml                                    |  5 ++
 rust/runtime/src/graph.rs                          |  1 +
 rust/{runtime => tvm-graph-rt}/Cargo.toml          | 13 ++--
 rust/{runtime => tvm-graph-rt}/src/allocator.rs    |  0
 rust/{runtime => tvm-graph-rt}/src/array.rs        | 70 +++++++++-------------
 rust/{runtime => tvm-graph-rt}/src/errors.rs       |  2 +
 rust/{runtime => tvm-graph-rt}/src/graph.rs        | 60 +++++++++----------
 rust/{runtime => tvm-graph-rt}/src/lib.rs          | 23 ++-----
 rust/{runtime => tvm-graph-rt}/src/module/dso.rs   |  4 +-
 rust/{runtime => tvm-graph-rt}/src/module/mod.rs   | 12 ++--
 .../{runtime => tvm-graph-rt}/src/module/syslib.rs |  4 +-
 rust/{runtime => tvm-graph-rt}/src/threading.rs    |  2 +-
 rust/{runtime => tvm-graph-rt}/src/workspace.rs    |  2 +-
 rust/{runtime => tvm-graph-rt}/tests/.gitignore    |  0
 .../{runtime => tvm-graph-rt}/tests/build_model.py |  0
 .../tests/test_graph_serde.rs                      |  0
 .../tests/test_nn/Cargo.toml                       |  4 +-
 .../tests/test_nn/build.rs                         |  0
 .../tests/test_nn/src/build_test_graph.py          |  0
 .../tests/test_nn/src/main.rs                      |  0
 .../tests/test_tvm_basic/Cargo.toml                |  4 +-
 .../tests/test_tvm_basic/build.rs                  |  0
 .../tests/test_tvm_basic/src/build_test_lib.py     |  0
 .../tests/test_tvm_basic/src/main.rs               |  0
 .../tests/test_tvm_dso/Cargo.toml                  |  4 +-
 .../tests/test_tvm_dso/build.rs                    |  0
 .../tests/test_tvm_dso/src/build_test_lib.py       |  0
 .../tests/test_tvm_dso/src/main.rs                 |  0
 .../tests/test_wasm32/.cargo/config                |  0
 .../tests/test_wasm32/Cargo.toml                   |  4 +-
 .../tests/test_wasm32/build.rs                     |  0
 .../tests/test_wasm32/src/build_test_lib.py        |  0
 .../tests/test_wasm32/src/main.rs                  |  0
 rust/tvm-sys/build.rs                              |  1 +
 rust/tvm-sys/src/array.rs                          |  1 +
 rust/tvm-sys/src/datatype.rs                       | 14 ++++-
 tests/lint/check_file_type.py                      |  1 +
 37 files changed, 110 insertions(+), 121 deletions(-)
 copy rust/{runtime => tvm-graph-rt}/Cargo.toml (83%)
 copy rust/{runtime => tvm-graph-rt}/src/allocator.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/src/array.rs (86%)
 copy rust/{runtime => tvm-graph-rt}/src/errors.rs (98%)
 copy rust/{runtime => tvm-graph-rt}/src/graph.rs (93%)
 copy rust/{runtime => tvm-graph-rt}/src/lib.rs (84%)
 copy rust/{runtime => tvm-graph-rt}/src/module/dso.rs (96%)
 copy rust/{runtime => tvm-graph-rt}/src/module/mod.rs (85%)
 copy rust/{runtime => tvm-graph-rt}/src/module/syslib.rs (95%)
 copy rust/{runtime => tvm-graph-rt}/src/threading.rs (99%)
 copy rust/{runtime => tvm-graph-rt}/src/workspace.rs (99%)
 copy rust/{runtime => tvm-graph-rt}/tests/.gitignore (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/build_model.py (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_graph_serde.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_nn/Cargo.toml (94%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_nn/build.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_nn/src/build_test_graph.py (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_nn/src/main.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_basic/Cargo.toml (93%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_basic/build.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_basic/src/build_test_lib.py (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_basic/src/main.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_dso/Cargo.toml (93%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_dso/build.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_dso/src/build_test_lib.py (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_tvm_dso/src/main.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_wasm32/.cargo/config (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_wasm32/Cargo.toml (94%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_wasm32/build.rs (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_wasm32/src/build_test_lib.py (100%)
 copy rust/{runtime => tvm-graph-rt}/tests/test_wasm32/src/main.rs (100%)