Add __hip_pinned_shadow__ for hip-clang and fix texture reference tests (#1200)

[ROCm/clr commit: 3169f3a881]
이 커밋은 다음에 포함됨:
Yaxun (Sam) Liu
2019-07-03 04:51:59 -04:00
커밋한 사람 Maneesh Gupta
부모 154b861905
커밋 2c8502f1db
3개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
+1
파일 보기
@@ -72,6 +72,7 @@ THE SOFTWARE.
#define __noinline__ __attribute__((noinline))
#define __forceinline__ inline __attribute__((always_inline))
#define __hip_pinned_shadow__ __attribute__((hip_pinned_shadow))
#else
+3
파일 보기
@@ -32,6 +32,9 @@ THE SOFTWARE.
#define N 512
#if __HIP__
__hip_pinned_shadow__
#endif
texture<float, 1, hipReadModeElementType> tex;
__global__ void kernel(float *out) {
+3
파일 보기
@@ -9,6 +9,9 @@
#include <hip/hip_runtime.h>
#include "test_common.h"
#if __HIP__
__hip_pinned_shadow__
#endif
texture<float, 2, hipReadModeElementType> tex;
__global__ void tex2DKernel(float* outputData,