From e60dec51da64df8fb5784412c5b28b0aed1fd402 Mon Sep 17 00:00:00 2001 From: ansurya <50609411+ansurya@users.noreply.github.com> Date: Fri, 22 Nov 2019 07:54:17 +0530 Subject: [PATCH] Fix rocBLAS compilation failure (#1677) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SWDEV-212749: o Recent changes to “add support for extended launch” require hip_runtime.h to be include in hip_ext.h o Order in which external applications include hip_hcc.h/hip_runtime.h causes compilation failure --- include/hip/hip_ext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hip/hip_ext.h b/include/hip/hip_ext.h index 5f6ba31d1e..a618462d6e 100644 --- a/include/hip/hip_ext.h +++ b/include/hip/hip_ext.h @@ -22,7 +22,7 @@ THE SOFTWARE. #ifndef HIP_INCLUDE_HIP_HIP_EXT_H #define HIP_INCLUDE_HIP_HIP_EXT_H -#include "hip/hip_runtime_api.h" +#include "hip/hip_runtime.h" #ifdef __HCC__ // Forward declarations: