[Hexagon] Add hexagon launcher to apps and add to TVM's build system - #9220
Merged
Merged
Conversation
hexagon launcher along with a standard TVM build.
instructions on how to build the launcher alongside TVM.
structure and group common code into cmake/HexagonLauncher.cmake.
Contributor
Author
Contributor
|
This is great! I just started testing it, and the first thing I saw was a bunch of warnings from the Android NDK cmake: I'm using cmake 3.17, the NDK bundle version in my SDK is 22.1.7171670. These warning are most likely safe to ignore, but maybe there could be a note about it somewhere? Your call, I'm fine either way. |
masahi
pushed a commit
to Laurawly/tvm-1
that referenced
this pull request
Oct 14, 2021
…pache#9220) * Add USE_HEXAGON_LAUNCHER cmake configuration to build the android hexagon launcher along with a standard TVM build. * Update hexagon launcher README.md to include instructions on how to build the launcher alongside TVM. * Move Hexagon launcher into top-level apps directory. * Refactor hexagon launcher cmake directory structure and group common code into cmake/HexagonLauncher.cmake. * Address CRs from @kparzysz-quic.
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Jan 7, 2022
…pache#9220) * Add USE_HEXAGON_LAUNCHER cmake configuration to build the android hexagon launcher along with a standard TVM build. * Update hexagon launcher README.md to include instructions on how to build the launcher alongside TVM. * Move Hexagon launcher into top-level apps directory. * Refactor hexagon launcher cmake directory structure and group common code into cmake/HexagonLauncher.cmake. * Address CRs from @kparzysz-quic.
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Jan 13, 2022
…pache#9220) * Add USE_HEXAGON_LAUNCHER cmake configuration to build the android hexagon launcher along with a standard TVM build. * Update hexagon launcher README.md to include instructions on how to build the launcher alongside TVM. * Move Hexagon launcher into top-level apps directory. * Refactor hexagon launcher cmake directory structure and group common code into cmake/HexagonLauncher.cmake. * Address CRs from @kparzysz-quic.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Goal: Simplify the build system for running models on hexagon.
This PR moves the hexagon launcher to be a tvm application (in tvm/apps). It also introduces the
USE_HEXAGON_LAUNCHERbuild flag to build the launcher and all dependencies alongside a standard TVM build which consolidates the number of manual build steps from five to one.Also added a section on Compilation with TVM to the launcher readme.