From 863744d0f4658d87cb03ce9b924bfe24ce4b12b4 Mon Sep 17 00:00:00 2001 From: Radha Srimanthula Date: Tue, 10 Dec 2019 15:42:17 -0800 Subject: [PATCH 1/2] Changing to use hip-hcc, to accommodate the package name changes in HIP for 3.0 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c6b3bc03cf..41abb4a0da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -258,7 +258,7 @@ set(MIOPEN_USER_DB_SUFFIX "${MIOPEN_BACKEND}.${MIOpen_VERSION_MAJOR}_${MIOpen_VE set(MIOPEN_SYSTEM_FIND_DB_SUFFIX "${MIOPEN_BACKEND}" CACHE PATH "Filename suffix for the system find-db files") -set(MIOPEN_PACKAGE_REQS "rocm-utils, hip_hcc") +set(MIOPEN_PACKAGE_REQS "rocm-utils, hip-hcc") if(MIOPEN_USE_MIOPENGEMM) set(MIOPEN_PACKAGE_REQS "${MIOPEN_PACKAGE_REQS}, miopengemm") endif() @@ -270,7 +270,7 @@ rocm_create_package( DESCRIPTION "AMD's DNN Library" MAINTAINER "Paul Fultz II " LDCONFIG - # DEPENDS rocm-opencl rocm-utils hip_hcc tinygemm + # DEPENDS rocm-opencl rocm-utils hip-hcc tinygemm ) include(EnableCompilerWarnings) From f5f59cb1d939e211d30cf0512dba25c9487720c0 Mon Sep 17 00:00:00 2001 From: Daniel Lowell Date: Thu, 19 Dec 2019 17:02:35 -0600 Subject: [PATCH 2/2] Updated release notes. --- doc/src/releasenotes.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/src/releasenotes.md b/doc/src/releasenotes.md index 38ff7ff8be..9898707de3 100644 --- a/doc/src/releasenotes.md +++ b/doc/src/releasenotes.md @@ -3,11 +3,11 @@ -### 11/30/2019 [ 2.2.0 ] +### 12/19/2019 [ 2.2.0 ] - This release contains bug fixes, performance improvements, and expanded applicability for specific convolutional algorithms. - MIOpen has posted a citable paper on ArXiv [here](https://arxiv.org/abs/1910.00078). -- An SQLite database has been added to replace the test-based performance database. While the test file still exists, by default SQLite is used over the text-based performance database; see [documentation](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/perfdatabase.html) from more details. +- An SQLite database has been added to replace the text-based performance database. While the text file still exists, by default SQLite is used over the text-based performance database; see [documentation](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/perfdatabase.html) from more details. Changes: @@ -24,11 +24,12 @@ Changes: - Improved applicability of implicit GEMM convolution algorithm - Improved performance of calls to miopenConvolutionXXXGetWorkSpaceSize() functions - Improved conformance to code object version 3 -- Removed SCGEMM convolution algorithm by default; this algorithm is deprecated and will be removed in future releases +- Disabled SCGEMM convolution algorithm by default; this algorithm is deprecated and will be removed in future releases +- Changed "hip_hhc" to "hip-hcc" for the MIOpen package requirements in CMakeLists.txt -### 09/01/2019 [ 2.1.0 ] +### 09/25/2019 [2.1.0] - This release contains new layers, bug fixes, and a new convolution algorithm.