Merge pull request #562 from ROCm-Developer-Tools/fix-build-failure

Fix build failure in code_object_bundle.cpp
Этот коммит содержится в:
Maneesh Gupta
2018-07-12 07:49:41 +05:30
коммит произвёл GitHub
родитель 0cd1c06cd5 e6d155bcd5
Коммит 4702a6c86e
+2 -2
Просмотреть файл
@@ -38,7 +38,7 @@ std::string isa_name(std::string triple)
hsa_isa_from_name(triple.c_str(), &tmp) != HSA_STATUS_SUCCESS};
if (is_old_rocr) {
auto tmp{triple.substr(triple.rfind('x') + 1)};
std::string tmp{triple.substr(triple.rfind('x') + 1)};
triple.replace(0, std::string::npos, "AMD:AMDGPU");
for (auto&& x : tmp) {
@@ -51,7 +51,7 @@ std::string isa_name(std::string triple)
}
hsa_isa_t hip_impl::triple_to_hsa_isa(const std::string& triple) {
const auto isa{isa_name(std::move(triple))};
const std::string isa{isa_name(std::move(triple))};
if (isa.empty()) return hsa_isa_t({});