jinboci commented on a change in pull request #18526: URL: https://github.com/apache/incubator-mxnet/pull/18526#discussion_r438568608
########## File path: src/c_api/c_api.cc ########## @@ -1363,7 +1363,13 @@ int MXGetVersion(int *out) { #if MXNET_USE_TVM_OP int MXLoadTVMOp(const char *libpath) { API_BEGIN(); - tvm::runtime::TVMOpModule::Get()->Load(libpath); + tvm::runtime::TVMOpModule *libpath_module = tvm::runtime::TVMOpModule::Get(); + libpath_module->Load(libpath); +#if MXNET_USE_CUDA + tvm::runtime::TVMOpModule cubin_module; + cubin_module.Load("libtvmop.cubin"); Review comment: Fixed. Thanks! ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org