Skip to content
Merged
Changes from all 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
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