Remove explicit address spaces declarations

此提交包含在:
Wen-Heng (Jack) Chung
2017-07-07 12:46:29 -05:00
父節點 16ba11c9c8
當前提交 30ee797dd4
共有 3 個檔案被更改,包括 2 行新增18 行删除
-8
查看文件
@@ -31,16 +31,8 @@ THE SOFTWARE.
#define NUM 1024
#define SIZE 1024*4
// TODO - collapse:
#ifdef __HIP_PLATFORM_HCC__
__device__ ADDRESS_SPACE_1 int globalIn[NUM];
__device__ ADDRESS_SPACE_1 int globalOut[NUM];
#endif
#ifdef __HIP_PLATFORM_NVCC__
__device__ int globalIn[NUM];
__device__ int globalOut[NUM];
#endif
__global__ void Assign(hipLaunchParm lp, int* Out)
{