SWDEV-439637 - Updated to compile with clang compiler

Change-Id: Ib0a8e1cc007f083fb1d1f4363cf89ba76ad3c4f2
Этот коммит содержится в:
Anusha GodavarthySurya
2024-01-02 14:56:03 +00:00
коммит произвёл Anusha Godavarthy Surya
родитель e37aaeae09
Коммит a1b2cbe44e
6 изменённых файлов: 106 добавлений и 96 удалений
+4 -2
Просмотреть файл
@@ -131,10 +131,12 @@ hipError_t hipCreateTextureObject(hipTextureObject_t* pTexObject, const hipResou
return hip::GetHipDispatchTable()->hipCreateTextureObject_fn(pTexObject, pResDesc, pTexDesc,
pResViewDesc);
}
hipError_t hipCtxCreate(hipCtx_t* ctx, unsigned int flags, hipDevice_t device) {
extern "C" hipError_t hipCtxCreate(hipCtx_t* ctx, unsigned int flags, hipDevice_t device) {
return hip::GetHipDispatchTable()->hipCtxCreate_fn(ctx, flags, device);
}
hipError_t hipCtxDestroy(hipCtx_t ctx) { return hip::GetHipDispatchTable()->hipCtxDestroy_fn(ctx); }
extern "C" hipError_t hipCtxDestroy(hipCtx_t ctx) {
return hip::GetHipDispatchTable()->hipCtxDestroy_fn(ctx);
}
hipError_t hipCtxDisablePeerAccess(hipCtx_t peerCtx) {
return hip::GetHipDispatchTable()->hipCtxDisablePeerAccess_fn(peerCtx);
}