Skip to content

Commit

Permalink
[hexagon] Hexagon inference fix (#14533)
Browse files Browse the repository at this point in the history
* [hexagon] Hexagon infweerence fix
1. Resolves issue with kernels linking.
2. Fixes warning generated by clang-15.
  • Loading branch information
shtinsa authored Apr 8, 2023
1 parent f990c0b commit 8e92160
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/hexagon/hexagon_module.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ class HexagonModuleNode : public runtime::ModuleNode {
const char* type_key() const final { return "hexagon"; }
/*! \brief Get the property of the runtime module .*/
int GetPropertyMask() const override {
return ModulePropertyMask::kBinarySerializable | ModulePropertyMask::kRunnable;
return ModulePropertyMask::kBinarySerializable | ModulePropertyMask::kDSOExportable |
ModulePropertyMask::kRunnable;
}
void SaveToFile(const std::string& file_name, const std::string& format) override;
void SaveToBinary(dmlc::Stream* stream) override;
Expand Down

0 comments on commit 8e92160

Please sign in to comment.