Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Rust][CI] Move CI over to new Rust crates and try to fix flaky test. #6011

Merged
merged 11 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/tvm/runtime/packed_func.h
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,8 @@ class TVMRetValue : public TVMPODValue_ {
/*!
* \brief Move the value back to front-end via C API.
* This marks the current container as null.
* The managed resources is moved to front-end and
* the front end should take charge in managing them.
* The managed resources are moved to the front-end.
* The front end should take charge in managing them.
*
* \param ret_value The return value.
* \param ret_type_code The return type code.
Expand Down
14 changes: 3 additions & 11 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,13 @@

[workspace]
members = [
"common",
"macros",
"runtime",
"runtime/tests/test_tvm_basic",
"runtime/tests/test_tvm_dso",
"runtime/tests/test_wasm32",
"runtime/tests/test_nn",
"frontend",
"frontend/tests/basics",
"frontend/tests/callback",
"frontend/examples/resnet",
"tvm-sys",
"tvm-macros",
"tvm-rt",
"tvm",
"tvm/tests/basics",
"tvm/tests/callback",
"tvm/examples/resnet",
"tvm-graph-rt",
"tvm-graph-rt/tests/test_tvm_basic",
"tvm-graph-rt/tests/test_tvm_dso",
Expand Down
33 changes: 0 additions & 33 deletions rust/common/Cargo.toml

This file was deleted.

59 changes: 0 additions & 59 deletions rust/common/build.rs

This file was deleted.

148 changes: 0 additions & 148 deletions rust/common/src/array.rs

This file was deleted.

47 changes: 0 additions & 47 deletions rust/common/src/errors.rs

This file was deleted.

51 changes: 0 additions & 51 deletions rust/common/src/lib.rs

This file was deleted.

Loading