disabled compiler flag hcc 4.0 for half support

Change-Id: I32175113f4c05d43310b3a05c2a14e12f6d48b09


[ROCm/hip commit: ed39a7f43b]
Этот коммит содержится в:
Aditya Atluri
2016-12-13 20:06:56 -06:00
родитель 1a7ecbcd04
Коммит 0b445d68de
2 изменённых файлов: 10 добавлений и 15 удалений
+10 -12
Просмотреть файл
@@ -27,7 +27,16 @@ THE SOFTWARE.
#define __CLANG_VERSION__ __clang_major__ * 10 + __clang_minor__
#if __CLANG_VERSION__ == 35
#ifdef HIP_HALF_HW_SUPPORT
typedef __fp16 __half;
extern "C" __half __hip_hadd_clang40_gfx803(__half a, __half b);
__device__ inline __half __hadd(__half a, __half b){
return __hip_hadd_clang40_gfx803(a, b);
}
#else
typedef struct{
unsigned x: 16;
@@ -178,16 +187,5 @@ __device__ __half2 __lowhigh2highlow(const __half2 a);
__device__ __half2 __low2half2(const __half2 a, const __half2 b);
#endif
#if __CLANG_VERSION__ == 40
typedef __fp16 __half;
extern "C" __half __hip_hadd_clang40_gfx803(__half a, __half b);
__device__ inline __half __hadd(__half a, __half b){
return __hip_hadd_clang40_gfx803(a, b);
}
#endif
#endif
-3
Просмотреть файл
@@ -22,7 +22,6 @@ THE SOFTWARE.
#include"hip/hip_fp16.h"
#if __CLANG_VERSION__ == 35
static const unsigned sign_val = 0x8000;
static const __half __half_value_one_float = {0x3C00};
@@ -375,5 +374,3 @@ __device__ __half2 __low2half2(const __half2 a, const __half2 b){
return {a.q, b.q};
}
#endif