| 66 | } |
| 67 | |
| 68 | hipError_t hipModuleLoadDataEx(hipModule_t* module, const void* image, unsigned int numOptions, |
| 69 | hipJitOption* options, void** optionsValues) { |
| 70 | /* TODO: Pass options to Program */ |
| 71 | HIP_INIT_API(hipModuleLoadDataEx, module, image); |
| 72 | HIP_RETURN(PlatformState::instance().loadModule(module, 0, image)); |
| 73 | } |
| 74 | |
| 75 | extern hipError_t __hipExtractCodeObjectFromFatBinary( |
| 76 | const void* data, const std::vector<std::string>& devices, |
nothing calls this directly
no test coverage detected