Add TVM application extension with WASM runtime (#5892)
authorLeon Wang <wanghui71leon@gmail.com>
Tue, 28 Jul 2020 03:34:19 +0000 (11:34 +0800)
committerGitHub <noreply@github.com>
Tue, 28 Jul 2020 03:34:19 +0000 (20:34 -0700)
commit969a9d9186cf7f886437448f94fe349818011ef2
tree88b4bd7ab9f3e2e21fa344e7d4dfda989048a419
parent5a31251aa21293fb9cff8132cdeaea364a99adcd
Add TVM application extension with WASM runtime (#5892)

* Refactor wasm runtime module and resovle conflict errors

Signed-off-by: leonwanghui <wanghui71leon@gmail.com>
* Fix some cargo clippy warnings

Signed-off-by: leonwanghui <wanghui71leon@gmail.com>
19 files changed:
apps/README.md
apps/wasm-standalone/.gitignore [new file with mode: 0644]
apps/wasm-standalone/README.md [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/.cargo/config [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/Cargo.toml [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/build.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/src/lib.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/src/types.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/src/utils.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-graph/tools/build_graph_lib.py [new file with mode: 0644]
apps/wasm-standalone/wasm-runtime/Cargo.toml [new file with mode: 0644]
apps/wasm-standalone/wasm-runtime/src/graph.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-runtime/src/lib.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-runtime/src/types.rs [new file with mode: 0644]
apps/wasm-standalone/wasm-runtime/tests/test_graph_resnet50/Cargo.toml [new file with mode: 0644]
apps/wasm-standalone/wasm-runtime/tests/test_graph_resnet50/src/main.rs [new file with mode: 0644]
rust/tvm-graph-rt/src/array.rs
rust/tvm-macros/src/external.rs
tests/lint/check_file_type.py