| 49 | HIP_RETURN(PlatformState::instance().unloadModule(hmod)); |
| 50 | } |
| 51 | hipError_t hipModuleLoadFatBinary(hipModule_t* module, const void* fatbin) { |
| 52 | HIP_INIT_API(hipModuleLoadFatBinary, module, fatbin); |
| 53 | HIP_RETURN(PlatformState::instance().loadModule(module, 0, fatbin)); |
| 54 | HIP_RETURN(hipSuccess); |
| 55 | } |
| 56 | |
| 57 | hipError_t hipModuleLoad(hipModule_t* module, const char* fname) { |
| 58 | HIP_INIT_API(hipModuleLoad, module, fname); |
nothing calls this directly
no test coverage detected