Fixed host allocated globals address lookup for host usage

Fixed texture driver APIs failure
This commit is contained in:
Rahul Garg
2018-01-30 18:06:31 +05:30
parent 755c5a2046
commit b8c23f979b
4 changed files with 8 additions and 11 deletions
+1 -2
View File
@@ -568,7 +568,6 @@ hipError_t hipModuleGetTexRef(
const auto it = globals().find(name);
if (it == globals().end()) return ihipLogStatus(hipErrorInvalidValue);
*texRef = static_cast<textureReference*>(it->second.get());
*texRef = reinterpret_cast<textureReference*>(it->second);
return ihipLogStatus(hipSuccess);
}