-
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
[Codegen] Use "target.build.$TARGET_KIND" for all codegen functions. #8071
Conversation
@Lunderberg yeah |
@areusch Awesome. In that case, removing the special case for |
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.
thanks for cleaning this up, @Lunderberg !
- Removed special case for "micro_dev" target. Instead, register BuildCHost as both "target.build.c" and "target.build.micro_dev". - Renamed "target.build.build.aocl_sw_emu" to "target.build.aocl_sw_emu". Appears to be a typo introduced in #841725cc585
device_api.micro_dev was removed in 745e542, but several references still remained.
Thank you! Rebased this morning to remove conflict with main, no other changes made from the approved version. |
…pache#8071) * [Codegen] Use "target.build.$TARGET_KIND" for all codegen functions. - Removed special case for "micro_dev" target. Instead, register BuildCHost as both "target.build.c" and "target.build.micro_dev". - Renamed "target.build.build.aocl_sw_emu" to "target.build.aocl_sw_emu". Appears to be a typo introduced in #841725cc585 * [micro_dev] Removed references to non-existent micro_dev device_api.micro_dev was removed in 745e542, but several references still remained. Co-authored-by: Eric Lunderberg <elunderberg@octoml.ai>
…pache#8071) * [Codegen] Use "target.build.$TARGET_KIND" for all codegen functions. - Removed special case for "micro_dev" target. Instead, register BuildCHost as both "target.build.c" and "target.build.micro_dev". - Renamed "target.build.build.aocl_sw_emu" to "target.build.aocl_sw_emu". Appears to be a typo introduced in #841725cc585 * [micro_dev] Removed references to non-existent micro_dev device_api.micro_dev was removed in 745e542, but several references still remained. Co-authored-by: Eric Lunderberg <elunderberg@octoml.ai>
Noticed while writing documentation that not all codegen functions
follow the same naming pattern. Made changes below for consistency,
ease of locating a codegen function.
Removed special case for "micro_dev" target. Instead, register
BuildCHost as both "target.build.c" and "target.build.micro_dev".
Renamed "target.build.build.aocl_sw_emu" to
"target.build.aocl_sw_emu". Appears to be a typo introduced in
#841725cc585