348698ed30
- If fat binary doesn't contain code object for current gfx then inside FatBinaryInfo::ExtractFatBinary(), valid FatBinaryDeviceInfo address isn't stored in vector fatbin_dev_info_ - This raises segmentation fault during hipLaunchKernel Change-Id: I21017338d91edbd5d9cc2d37277f66558198a129
346 Zeilen
12 KiB
C++
346 Zeilen
12 KiB
C++
#include "hip_fatbin.hpp"
|
|
|
|
#include <unordered_map>
|
|
#include "hip_code_object.hpp"
|
|
|
|
namespace hip {
|
|
|
|
FatBinaryDeviceInfo::~FatBinaryDeviceInfo() {
|
|
if (program_ != nullptr) {
|
|
program_->unload();
|
|
program_->release();
|
|
program_ = nullptr;
|
|
}
|
|
}
|
|
|
|
FatBinaryInfo::FatBinaryInfo(const char* fname, const void* image) : fdesc_(amd::Os::FDescInit()),
|
|
fsize_(0), foffset_(0), image_(image), image_mapped_(false),
|
|
uri_(std::string()) {
|
|
|
|
if (fname != nullptr) {
|
|
fname_ = std::string(fname);
|
|
} else {
|
|
fname_ = std::string();
|
|
}
|
|
|
|
fatbin_dev_info_.resize(g_devices.size(), nullptr);
|
|
}
|
|
|
|
FatBinaryInfo::~FatBinaryInfo() {
|
|
|
|
for (auto* fbd: fatbin_dev_info_) {
|
|
if (fbd != nullptr) {
|
|
delete fbd;
|
|
}
|
|
}
|
|
|
|
if (fdesc_ > 0) {
|
|
if (fsize_ && image_mapped_ && !amd::Os::MemoryUnmapFile(image_, fsize_)) {
|
|
guarantee(false, "Cannot unmap file");
|
|
}
|
|
if (!amd::Os::CloseFileHandle(fdesc_)) {
|
|
guarantee(false, "Cannot close file");
|
|
}
|
|
}
|
|
|
|
fname_ = std::string();
|
|
fdesc_ = amd::Os::FDescInit();
|
|
fsize_ = 0;
|
|
image_ = nullptr;
|
|
uri_ = std::string();
|
|
}
|
|
|
|
hipError_t FatBinaryInfo::ExtractFatBinaryUsingCOMGR(const std::vector<hip::Device*>& devices) {
|
|
amd_comgr_data_t data_object;
|
|
amd_comgr_status_t comgr_status = AMD_COMGR_STATUS_SUCCESS;
|
|
hipError_t hip_status = hipSuccess;
|
|
amd_comgr_code_object_info_t* query_list_array = nullptr;
|
|
|
|
// If image was passed as a pointer to our hipMod* api, we can try to extract the file name
|
|
// if it was mapped by the app. Otherwise use the COMGR data API.
|
|
if (fname_.size() == 0) {
|
|
if (image_ == nullptr) {
|
|
LogError("Both Filename and image cannot be null");
|
|
return hipErrorInvalidValue;
|
|
}
|
|
|
|
if(!amd::Os::FindFileNameFromAddress(image_, &fname_, &foffset_)) {
|
|
fname_ = std::string("");
|
|
foffset_ = 0;
|
|
}
|
|
}
|
|
|
|
// If file name & path are available (or it is passed to you), then get the file desc to use
|
|
// COMGR file slice APIs.
|
|
if (fname_.size() > 0) {
|
|
// Get File Handle & size of the file.
|
|
if (!amd::Os::GetFileHandle(fname_.c_str(), &fdesc_, &fsize_))
|
|
return hipErrorFileNotFound;
|
|
|
|
// If the file name exists but the file size is 0, the something wrong with the file or its path
|
|
if (fsize_ == 0)
|
|
return hipErrorInvalidValue;
|
|
|
|
// If image_ is nullptr, then file path is passed via hipMod* APIs, so map the file.
|
|
if (image_ == nullptr && !amd::Os::MemoryMapFileDesc(fdesc_, fsize_, foffset_, &image_)
|
|
&& (image_mapped_ = true)) {
|
|
LogError("Cannot map the file descriptor");
|
|
amd::Os::CloseFileHandle(fdesc_);
|
|
return hipErrorInvalidValue;
|
|
}
|
|
}
|
|
|
|
// At this line, image should be a valid ptr.
|
|
guarantee(image_ != nullptr, "Image cannot be nullptr, file did not map for some reason");
|
|
|
|
do {
|
|
|
|
// If the image ptr is not clang offload bundle then just directly point the image.
|
|
if (!CodeObject::IsClangOffloadMagicBundle(image_)) {
|
|
for (size_t dev_idx=0; dev_idx < devices.size(); ++dev_idx) {
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]
|
|
= new FatBinaryDeviceInfo(image_, CodeObject::ElfSize(image_), 0);
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]->program_
|
|
= new amd::Program(*devices[dev_idx]->asContext());
|
|
if (fatbin_dev_info_[devices[dev_idx]->deviceId()]->program_ == nullptr) {
|
|
hip_status = hipErrorOutOfMemory;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
// Create a data object, if it fails return error
|
|
if ((comgr_status = amd_comgr_create_data(AMD_COMGR_DATA_KIND_FATBIN, &data_object))
|
|
!= AMD_COMGR_STATUS_SUCCESS) {
|
|
LogPrintfError("Creating data object failed with status %d ", comgr_status);
|
|
hip_status = hipErrorInvalidValue;
|
|
break;
|
|
}
|
|
|
|
#if !defined(_WIN32)
|
|
// Using the file descriptor and file size, map the data object.
|
|
if (fdesc_ > 0) {
|
|
guarantee(fsize_ > 0, "Cannot have a file size of 0");
|
|
if ((comgr_status = amd_comgr_set_data_from_file_slice(data_object, fdesc_, foffset_,
|
|
fsize_)) != AMD_COMGR_STATUS_SUCCESS) {
|
|
LogPrintfError("Setting data from file slice failed with status %d ", comgr_status);
|
|
hip_status = hipErrorInvalidValue;
|
|
break;
|
|
}
|
|
} else
|
|
#endif
|
|
if (image_ != nullptr) {
|
|
// Using the image ptr, map the data object.
|
|
if ((comgr_status = amd_comgr_set_data(data_object, 4096,
|
|
reinterpret_cast<const char*>(image_))) != AMD_COMGR_STATUS_SUCCESS) {
|
|
LogPrintfError("Setting data from file slice failed with status %d ", comgr_status);
|
|
hip_status = hipErrorInvalidValue;
|
|
break;
|
|
}
|
|
} else {
|
|
guarantee(false, "Cannot have both fname_ and image_ as nullptr");
|
|
}
|
|
|
|
// Find the unique number of ISAs needed for this COMGR query.
|
|
std::unordered_map<std::string, std::pair<size_t, size_t>> unique_isa_names;
|
|
for (size_t dev_idx = 0; dev_idx < devices.size(); ++dev_idx) {
|
|
std::string device_name = devices[dev_idx]->devices()[0]->isa().isaName();
|
|
if (unique_isa_names.cend() == unique_isa_names.find(device_name)) {
|
|
unique_isa_names.insert({device_name, std::make_pair<size_t, size_t>(0,0)});
|
|
}
|
|
}
|
|
|
|
// Create a query list using COMGR info for unique ISAs.
|
|
query_list_array = new amd_comgr_code_object_info_t[unique_isa_names.size()];
|
|
auto isa_it = unique_isa_names.begin();
|
|
for (size_t isa_idx = 0; isa_idx < unique_isa_names.size(); ++isa_idx) {
|
|
std::advance(isa_it, isa_idx);
|
|
query_list_array[isa_idx].isa = isa_it->first.c_str();
|
|
query_list_array[isa_idx].size = 0;
|
|
query_list_array[isa_idx].offset = 0;
|
|
}
|
|
|
|
// Look up the code object info passing the query list.
|
|
if ((comgr_status = amd_comgr_lookup_code_object(data_object, query_list_array,
|
|
unique_isa_names.size())) != AMD_COMGR_STATUS_SUCCESS) {
|
|
LogPrintfError("Setting data from file slice failed with status %d ", comgr_status);
|
|
hip_status = hipErrorInvalidValue;
|
|
break;
|
|
}
|
|
|
|
for (size_t isa_idx = 0; isa_idx < unique_isa_names.size(); ++isa_idx) {
|
|
auto unique_it = unique_isa_names.find(query_list_array[isa_idx].isa);
|
|
guarantee(unique_isa_names.cend() != unique_it, "Cannot find unique isa");
|
|
unique_it->second = std::pair<size_t, size_t>
|
|
(static_cast<size_t>(query_list_array[isa_idx].size),
|
|
static_cast<size_t>(query_list_array[isa_idx].offset));
|
|
}
|
|
|
|
for (size_t dev_idx = 0; dev_idx < devices.size(); ++dev_idx) {
|
|
std::string device_name = devices[dev_idx]->devices()[0]->isa().isaName();
|
|
auto dev_it = unique_isa_names.find(device_name);
|
|
guarantee(unique_isa_names.cend() != dev_it,
|
|
"Cannot find the device name in the unique device name");
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]
|
|
= new FatBinaryDeviceInfo(reinterpret_cast<address>(const_cast<void*>(image_))
|
|
+ dev_it->second.second, dev_it->second.first,
|
|
dev_it->second.second);
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]->program_
|
|
= new amd::Program(*devices[dev_idx]->asContext());
|
|
}
|
|
|
|
} while(0);
|
|
|
|
if (query_list_array) {
|
|
delete[] query_list_array;
|
|
}
|
|
|
|
// Clean up file and memory resouces if hip_status failed for some reason.
|
|
if (hip_status != hipSuccess && hip_status != hipErrorInvalidKernelFile) {
|
|
if (image_mapped_) {
|
|
if (!amd::Os::MemoryUnmapFile(image_, fsize_))
|
|
guarantee(false, "Cannot unmap the file");
|
|
|
|
image_ = nullptr;
|
|
image_mapped_ = false;
|
|
}
|
|
|
|
if (fdesc_ > 0) {
|
|
guarantee(fsize_ > 0, "Size has to greater than 0 too");
|
|
if (!amd::Os::CloseFileHandle(fdesc_))
|
|
guarantee(false, "Cannot close the file handle");
|
|
|
|
fdesc_ = 0;
|
|
fsize_ = 0;
|
|
}
|
|
|
|
if ((comgr_status = amd_comgr_release_data(data_object)) != AMD_COMGR_STATUS_SUCCESS) {
|
|
LogPrintfError("Releasing COMGR data failed with status %d ", comgr_status);
|
|
return hipErrorInvalidValue;
|
|
}
|
|
}
|
|
|
|
return hip_status;
|
|
}
|
|
|
|
hipError_t FatBinaryInfo::ExtractFatBinary(const std::vector<hip::Device*>& devices) {
|
|
if (!HIP_USE_RUNTIME_UNBUNDLER) {
|
|
return ExtractFatBinaryUsingCOMGR(devices);
|
|
}
|
|
|
|
hipError_t hip_error = hipSuccess;
|
|
std::vector<std::pair<const void*, size_t>> code_objs;
|
|
|
|
// Copy device names for Extract Code object File
|
|
std::vector<std::string> device_names;
|
|
device_names.reserve(devices.size());
|
|
for (size_t dev_idx = 0; dev_idx < devices.size(); ++dev_idx) {
|
|
device_names.push_back(devices[dev_idx]->devices()[0]->isa().isaName());
|
|
}
|
|
|
|
// We are given file name, get the file desc and file size
|
|
if (fname_.size() > 0) {
|
|
// Get File Handle & size of the file.
|
|
if (!amd::Os::GetFileHandle(fname_.c_str(), &fdesc_, &fsize_)) {
|
|
return hipErrorFileNotFound;
|
|
}
|
|
if (fsize_ == 0) {
|
|
return hipErrorInvalidImage;
|
|
}
|
|
|
|
// Extract the code object from file
|
|
hip_error = CodeObject::ExtractCodeObjectFromFile(fdesc_, fsize_, &image_,
|
|
device_names, code_objs);
|
|
|
|
} else if (image_ != nullptr) {
|
|
// We are directly given image pointer directly, try to extract file desc & file Size
|
|
hip_error = CodeObject::ExtractCodeObjectFromMemory(image_,
|
|
device_names, code_objs, uri_);
|
|
} else {
|
|
return hipErrorInvalidValue;
|
|
}
|
|
|
|
if (hip_error == hipErrorNoBinaryForGpu) {
|
|
LogPrintfError("hipErrorNoBinaryForGpu: Couldn't find binary for current devices! - %d",hip_error);
|
|
return hip_error;
|
|
}
|
|
|
|
if (hip_error == hipErrorInvalidKernelFile) {
|
|
for (size_t dev_idx = 0; dev_idx < devices.size(); ++dev_idx) {
|
|
// the image type is no CLANG_OFFLOAD_BUNDLER, image for current device directly passed
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]
|
|
= new FatBinaryDeviceInfo(image_, CodeObject::ElfSize(image_), 0);
|
|
}
|
|
} else if(hip_error == hipSuccess) {
|
|
for (size_t dev_idx = 0; dev_idx < devices.size(); ++dev_idx) {
|
|
// Calculate the offset wrt binary_image and the original image
|
|
size_t offset_l
|
|
= (reinterpret_cast<address>(const_cast<void*>(code_objs[dev_idx].first))
|
|
- reinterpret_cast<address>(const_cast<void*>(image_)));
|
|
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]
|
|
= new FatBinaryDeviceInfo(code_objs[dev_idx].first, code_objs[dev_idx].second, offset_l);
|
|
}
|
|
}
|
|
|
|
for (size_t dev_idx = 0; dev_idx < devices.size(); ++dev_idx) {
|
|
fatbin_dev_info_[devices[dev_idx]->deviceId()]->program_
|
|
= new amd::Program(*devices[dev_idx]->asContext());
|
|
if (fatbin_dev_info_[devices[dev_idx]->deviceId()]->program_ == NULL) {
|
|
return hipErrorOutOfMemory;
|
|
}
|
|
}
|
|
|
|
return hipSuccess;
|
|
}
|
|
|
|
hipError_t FatBinaryInfo::AddDevProgram(const int device_id) {
|
|
// Device Id bounds Check
|
|
DeviceIdCheck(device_id);
|
|
|
|
FatBinaryDeviceInfo* fbd_info = fatbin_dev_info_[device_id];
|
|
if (fbd_info == nullptr) {
|
|
return hipErrorInvalidKernelFile;
|
|
}
|
|
|
|
// If fat binary was already added, skip this step and return success
|
|
if (fbd_info->add_dev_prog_ == false) {
|
|
amd::Context* ctx = g_devices[device_id]->asContext();
|
|
if (CL_SUCCESS != fbd_info->program_->addDeviceProgram(*ctx->devices()[0],
|
|
fbd_info->binary_image_,
|
|
fbd_info->binary_size_, false,
|
|
nullptr, nullptr, fdesc_,
|
|
fbd_info->binary_offset_, uri_)) {
|
|
return hipErrorInvalidKernelFile;
|
|
}
|
|
fbd_info->add_dev_prog_ = true;
|
|
}
|
|
return hipSuccess;
|
|
}
|
|
|
|
hipError_t FatBinaryInfo::BuildProgram(const int device_id) {
|
|
|
|
// Device Id Check and Add DeviceProgram if not added so far
|
|
DeviceIdCheck(device_id);
|
|
IHIP_RETURN_ONFAIL(AddDevProgram(device_id));
|
|
|
|
// If Program was already built skip this step and return success
|
|
FatBinaryDeviceInfo* fbd_info = fatbin_dev_info_[device_id];
|
|
if (fbd_info->prog_built_ == false) {
|
|
if(CL_SUCCESS != fbd_info->program_->build(g_devices[device_id]->devices(),
|
|
nullptr, nullptr, nullptr,
|
|
kOptionChangeable, kNewDevProg)) {
|
|
return hipErrorSharedObjectInitFailed;
|
|
}
|
|
fbd_info->prog_built_ = true;
|
|
}
|
|
|
|
if (!fbd_info->program_->load()) {
|
|
return hipErrorSharedObjectInitFailed;
|
|
}
|
|
return hipSuccess;
|
|
}
|
|
|
|
} //namespace : hip
|