MCPcopy Create free account
hub / github.com/ROCm/clr / hipModuleLoadFatBinary

Function hipModuleLoadFatBinary

hipamd/src/hip_module.cpp:51–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49 HIP_RETURN(PlatformState::instance().unloadModule(hmod));
50}
51hipError_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
57hipError_t hipModuleLoad(hipModule_t* module, const char* fname) {
58 HIP_INIT_API(hipModuleLoad, module, fname);

Callers

nothing calls this directly

Calls 1

loadModuleMethod · 0.80

Tested by

no test coverage detected