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

Change-Id: If7ed535b3012aec3f2cb4eb7ab93d8f5aed9783f


[ROCm/hip commit: 040bc455d4]
This commit is contained in:
Tony Tye
2021-01-19 03:36:22 +00:00
parent 03867f738e
commit 8da2326f6f
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -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
View File
@@ -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 {