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 08ea936a50..1fa48a94da 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 @@ -566,7 +566,7 @@ void GpuAgent::InitDma() { if (!blit_initialized_.load(std::memory_order_relaxed)) { // Try create SDMA blit first. // TODO: Temporarily disable SDMA on specific ISA targets until they are fully qualified. - if ((isa_->GetMajorVersion() != 9) && + if ((isa_->GetMajorVersion() != 8) && core::Runtime::runtime_singleton_->flag().enable_sdma() && (HSA_PROFILE_BASE == profile_)) { blits_[BlitHostToDev] = CreateBlitSdma();