| 55 | } |
| 56 | |
| 57 | hipError_t hipModuleLoad(hipModule_t* module, const char* fname) { |
| 58 | HIP_INIT_API(hipModuleLoad, module, fname); |
| 59 | |
| 60 | HIP_RETURN(PlatformState::instance().loadModule(module, fname)); |
| 61 | } |
| 62 | |
| 63 | hipError_t hipModuleLoadData(hipModule_t* module, const void* image) { |
| 64 | HIP_INIT_API(hipModuleLoadData, module, image); |
nothing calls this directly
no test coverage detected