From f1ffbc3286b1f83a9d70270a17b77be9e8eacb67 Mon Sep 17 00:00:00 2001 From: Jay Cornwall Date: Fri, 5 Oct 2018 15:11:49 -0400 Subject: [PATCH] Revert "Extend SDMA disable list until firmware stability resolved" This reverts commit 5e1ccdc4a9f903125b44f25b1e4d45e487caa3ce. Change-Id: I17b379e4d0e49a79dc8d4a60f01ea424fda24f02 --- runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp b/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp index 29a1010899..0337a183c9 100644 --- a/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp +++ b/runtime/hsa-runtime/core/runtime/amd_gpu_agent.cpp @@ -564,8 +564,7 @@ void GpuAgent::InitDma() { auto blit_lambda = [this](bool h2d, lazy_ptr& queue) { const std::string& sdma_override = core::Runtime::runtime_singleton_->flag().enable_sdma(); - // Per-ASIC disables for firmware stability. - bool use_sdma = (isa_->GetMajorVersion() != 8) && (isa_->version() != core::Isa::Version(9, 0, 6)); + bool use_sdma = (isa_->GetMajorVersion() != 8); if (sdma_override.size() != 0) use_sdma = (sdma_override == "1"); if (use_sdma && (HSA_PROFILE_BASE == profile_)) {