From 9e9754be8013c3d91e4ec1d33fd7b56afe72de75 Mon Sep 17 00:00:00 2001 From: kjayapra-amd Date: Fri, 12 Aug 2022 16:50:42 -0700 Subject: [PATCH] SWDEV-351508 - Change the data_kind to BC from FATBIN, since unbundling happens in runtime now. Change-Id: Iaf6e85637edaa92171edc4edc650a0b4598bf625 --- hipamd/src/hiprtc/hiprtcInternal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hipamd/src/hiprtc/hiprtcInternal.cpp b/hipamd/src/hiprtc/hiprtcInternal.cpp index 859ca83056..88b27cebac 100644 --- a/hipamd/src/hiprtc/hiprtcInternal.cpp +++ b/hipamd/src/hiprtc/hiprtcInternal.cpp @@ -485,7 +485,7 @@ amd_comgr_data_kind_t RTCLinkProgram::GetCOMGRDataKind(hiprtcJITInputType input_ data_kind = AMD_COMGR_DATA_KIND_BC; break; case HIPRTC_JIT_INPUT_LLVM_BUNDLED_BITCODE : - data_kind = AMD_COMGR_DATA_KIND_FATBIN; + data_kind = AMD_COMGR_DATA_KIND_BC; break; case HIPRTC_JIT_INPUT_LLVM_ARCHIVES_OF_BUNDLED_BITCODE : data_kind = AMD_COMGR_DATA_KIND_FATBIN;