SWDEV-268864 - Use new isa class to access isa related information (part 2)
Change-Id: If7ed535b3012aec3f2cb4eb7ab93d8f5aed9783f
Этот коммит содержится в:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Ссылка в новой задаче
Block a user