From 2c15bcac9debb57f08b1759dadb5d92e15f48ea4 Mon Sep 17 00:00:00 2001 From: Chris Freehill Date: Tue, 25 Jun 2019 18:04:05 -0500 Subject: [PATCH] Add ISAREG entry for gfx908 for ECC not supported * Also, re-enable rocrtst Change-Id: I70106c5a1788818387e46f240d577cbe59bc89f4 --- rocrtst/suites/test_common/CMakeLists.txt | 2 +- runtime/hsa-runtime/core/runtime/isa.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 runtime/hsa-runtime/core/runtime/isa.cpp diff --git a/rocrtst/suites/test_common/CMakeLists.txt b/rocrtst/suites/test_common/CMakeLists.txt index b751de95da..f51d0a4f05 100755 --- a/rocrtst/suites/test_common/CMakeLists.txt +++ b/rocrtst/suites/test_common/CMakeLists.txt @@ -32,7 +32,7 @@ cmake_minimum_required(VERSION 2.8.0) # 4) Run "make" # -set(DEFAULT_TARGETS "gfx803;gfx701;gfx801;gfx802;gfx900;gfx902;gfx906") +set(DEFAULT_TARGETS "gfx803;gfx701;gfx801;gfx802;gfx900;gfx902;gfx906;gfx908") # # Currently support for Windows platform is not present diff --git a/runtime/hsa-runtime/core/runtime/isa.cpp b/runtime/hsa-runtime/core/runtime/isa.cpp old mode 100644 new mode 100755 index b181615f76..77631a8fee --- a/runtime/hsa-runtime/core/runtime/isa.cpp +++ b/runtime/hsa-runtime/core/runtime/isa.cpp @@ -217,6 +217,7 @@ const IsaRegistry::IsaMap IsaRegistry::GetSupportedIsas() { ISAREG_ENTRY_GEN(9, 0, 6, false, false) ISAREG_ENTRY_GEN(9, 0, 6, false, true ) ISAREG_ENTRY_GEN(9, 0, 8, false, true ) + ISAREG_ENTRY_GEN(9, 0, 8, false, false) return supported_isas; }