SWDEV-268864 - Use new isa class to access isa related information (part 2)

Change-Id: If7ed535b3012aec3f2cb4eb7ab93d8f5aed9783f
此提交包含在:
Tony Tye
2021-01-19 03:36:22 +00:00
父節點 cd1117d627
當前提交 6b641fb368
共有 2 個檔案被更改,包括 5 行新增5 行删除
+3 -3
查看文件
@@ -82,9 +82,9 @@ hipError_t hipDeviceComputeCapability(int *major, int *minor, hipDevice_t device
}
auto* deviceHandle = g_devices[device]->devices()[0];
const auto& info = deviceHandle->info();
*major = info.gfxipMajor_;
*minor = info.gfxipMinor_;
const auto& isa = deviceHandle->isa();
*major = isa.versionMajor();
*minor = isa.versionMinor();
HIP_RETURN(hipSuccess);
}
+2 -2
查看文件
@@ -329,10 +329,10 @@ hipError_t ihipOccupancyMaxActiveBlocksPerMultiprocessor(
size_t GprWaves = VgprWaves;
if (wrkGrpInfo->usedSGPRs_ > 0) {
size_t maxSGPRs;
if (device.info().gfxipMajor_ < 8) {
if (device.isa().versionMajor() < 8) {
maxSGPRs = 512;
}
else if (device.info().gfxipMajor_ < 10) {
else if (device.isa().versionMajor() < 10) {
maxSGPRs = 800;
}
else {