From a09ba8bcc87b2f068d82f874d592d3f4acf2bb96 Mon Sep 17 00:00:00 2001 From: Sean Keely Date: Tue, 20 Oct 2020 17:06:30 -0500 Subject: [PATCH] Diable sram ecc reporting. Temporary workaround while language and compiler teams sort out handling both modes. Change-Id: I5d676cd546382dba05ec0b62bb885baa854614f6 --- runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp b/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp index 468d1142d7..a41890467f 100644 --- a/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp +++ b/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp @@ -104,7 +104,7 @@ GpuAgent::GpuAgent(HSAuint32 node, const HsaNodeProperties& node_props) isa_ = (core::Isa*)core::IsaRegistry::GetIsa( core::Isa::Version(node_props.EngineId.ui32.Major, node_props.EngineId.ui32.Minor, node_props.EngineId.ui32.Stepping), - profile_ == HSA_PROFILE_FULL, node_props.Capability.ui32.SRAM_EDCSupport == 1); + profile_ == HSA_PROFILE_FULL, false);//node_props.Capability.ui32.SRAM_EDCSupport == 1); // Check if the device is Kaveri, only on GPU device. if (isa_->GetMajorVersion() == 7 && isa_->GetMinorVersion() == 0 &&