diff --git a/projects/rocr-runtime/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp b/projects/rocr-runtime/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp index 77ec0362dd..05ac39ef7d 100644 --- a/projects/rocr-runtime/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp +++ b/projects/rocr-runtime/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp @@ -469,8 +469,10 @@ void GpuAgent::InitRegionList() { regions_.push_back(region); if (region->IsLocalMemory()) { - regions_.push_back( - new MemoryRegion(false, false, false, true, true, this, mem_props[mem_idx])); + // Extended Fine-Grain memory + if (!(isa_->GetMajorVersion() == 12 && isa_->GetMinorVersion() == 0)) + regions_.push_back( + new MemoryRegion(false, false, false, true, true, this, mem_props[mem_idx])); // Expose VRAM as uncached/fine grain over PCIe (if enabled) or XGMI. bool user_visible = (properties_.HiveID != 0) ||