SWDEV-227909 - Add gcnArchName

Change-Id: Iea6d16b5d693dd0d900fa424d7a321c39315430e
This commit is contained in:
Jason Tang
2020-06-05 15:15:20 -04:00
والد 9261a35be9
کامیت 14c699e9de
6فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
@@ -83,8 +83,7 @@ int main()
hipDeviceProp_t props;
int device = 0;
hipGetDeviceProperties(&props, device);
std::string gfxName = "gfx" + std::to_string(props.gcnArch);
std::string sarg = "--gpu-architecture=" + gfxName;
std::string sarg = "--gpu-architecture=" + props.gcnArchName;
const char* options[] = {
sarg.c_str()
};
@@ -70,8 +70,7 @@ int main()
hipDeviceProp_t props;
int device = 0;
hipGetDeviceProperties(&props, device);
std::string gfxName = "gfx" + std::to_string(props.gcnArch);
std::string sarg = "--gpu-architecture=" + gfxName;
std::string sarg = "--gpu-architecture=" + props.gcnArchName;
const char* options[] = {
sarg.c_str()
};