SWDEV-496003 - Add support for dynamic functions in hipFuncSetAttribute
Modified hipFuncSetAttribute to handle pointers to dynamic functions returned by hipModuleGetFunction. Change-Id: I54b98f9d31a79630dd7edcd363fad81f1d89219b
Esse commit está contido em:
@@ -805,6 +805,12 @@ hipError_t PlatformState::getDynFunc(hipFunction_t* hfunc, hipModule_t hmod,
|
||||
return it->second->getDynFunc(hfunc, func_name);
|
||||
}
|
||||
|
||||
bool PlatformState::isValidDynFunc(const void* hfunc) {
|
||||
amd::ScopedLock lock(lock_);
|
||||
return std::any_of(dynCO_map_.begin(), dynCO_map_.end(),
|
||||
[&](auto& it) { return it.second->isValidDynFunc(hfunc); });
|
||||
}
|
||||
|
||||
hipError_t PlatformState::getDynGlobalVar(const char* hostVar, hipModule_t hmod,
|
||||
hipDeviceptr_t* dev_ptr, size_t* size_ptr) {
|
||||
amd::ScopedLock lock(lock_);
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário