-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[microTVM][CRT]Separate CRT template project from standalone CRT build #13812
[microTVM][CRT]Separate CRT template project from standalone CRT build #13812
Conversation
Thanks for contributing to TVM! Please refer to the contributing guidelines https://tvm.apache.org/docs/contribute/ for useful information and tips. Please request code reviews from Reviewers by @-ing them in a comment.
Generated by tvm-bot |
@tvm-bot rerun |
cc @alanmacd for review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…mplate.c (#13885) This PR refactors all the necessary functions for a CRT project into platform-template.c file In addition, these templates files are also added along with crt_config-template.h (which was accidentally removed in #13812) to generated model library format (MLF). Here is the updated structure of a MLF file: . ├── codegen │ └── host ├── metadata.json ├── parameters │ └── default.params ├── runtime │ ├── include │ ├── Makefile │ └── src ├── src │ └── default.relay └── templates ├── crt_config-template.h ├── platform-template.c
apache#13812) This PR separates the CRT template project for microTVM from CRT standalone library build. The CRT template project would move to build/microtvm_template_projects. It also adds uploading microtvm_template_projects to S3 in few images that were missing this previously.
This PR separates the CRT template project for microTVM from CRT standalone library build. The CRT template project would move to
build/microtvm_template_projects
.It also adds uploading microtvm_template_projects to S3 in few images that were missing this previously.