Commit 11c7b6cf by eqy Committed by Tianqi Chen

register loadbinary_hip (#1151)

parent ef58f596
......@@ -229,6 +229,12 @@ TVM_REGISTER_GLOBAL("module.loadbinary_hsaco")
.set_body([](TVMArgs args, TVMRetValue* rv) {
*rv = ROCMModuleLoadBinary(args[0]);
});
TVM_REGISTER_GLOBAL("module.loadbinary_hip")
.set_body([](TVMArgs args, TVMRetValue* rv) {
*rv = ROCMModuleLoadBinary(args[0]);
});
} // namespace runtime
} // namespace tvm
#endif // TVM_ROCM_RUNTIME
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment