From 5e1ccdc4a9f903125b44f25b1e4d45e487caa3ce Mon Sep 17 00:00:00 2001 From: Jay Cornwall Date: Wed, 8 Aug 2018 11:20:14 -0500 Subject: [PATCH] Extend SDMA disable list until firmware stability resolved Change-Id: I5e21cb761ae970ba2b68edd97b1564b36ca1f0f4 --- runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp | 3 ++- 1 file changed, 2 insertions(+), 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 6502b87750..571ad544c3 100644 --- a/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp +++ b/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp @@ -564,7 +564,8 @@ void GpuAgent::InitDma() { auto blit_lambda = [this](bool h2d, lazy_ptr& queue) { const std::string& sdma_override = core::Runtime::runtime_singleton_->flag().enable_sdma(); - bool use_sdma = (isa_->GetMajorVersion() != 8); + // Per-ASIC disables for firmware stability. + bool use_sdma = (isa_->GetMajorVersion() != 8) && (isa_->version() != core::Isa::Version(9, 0, 6)); if (sdma_override.size() != 0) use_sdma = (sdma_override == "1"); if (use_sdma && (HSA_PROFILE_BASE == profile_)) {