HIP: Heterogenous-computing Interface for Portability
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
hip_common.h
1 /*
2 Copyright (c) 2015-2016 Advanced Micro Devices, Inc. All rights reserved.
3 
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
10 
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13 
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 THE SOFTWARE.
21 */
22 
23 #pragma once
24 
25 // Disable use of grid_launch feature in HCC compiler.
26 //#define DISABLE_GRID_LAUNCH
27 
28 // Common code included at start of every hip file.
29 // Auto enable __HIP_PLATFORM_HCC__ if compiling with HCC
30 // Other compiler (GCC,ICC,etc) need to set one of these macros explicitly
31 #if defined(__HCC__)
32 #define __HIP_PLATFORM_HCC__
33 #define __HIPCC__
34 
35 #if defined(__HCC_ACCELERATOR__) && (__HCC_ACCELERATOR__ != 0)
36 #define __HIP_DEVICE_COMPILE__ 1
37 #else
38 #define __HIP_DEVICE_COMPILE__ 0
39 #endif
40 #endif
41 
42 // Auto enable __HIP_PLATFORM_NVCC__ if compiling with NVCC
43 #if defined(__NVCC__)
44 #define __HIP_PLATFORM_NVCC__
45 # ifdef __CUDACC__
46 # define __HIPCC__
47 # endif
48 
49 #if defined(__CUDA_ARCH__) && (__CUDA_ARCH__ != 0)
50 #define __HIP_DEVICE_COMPILE__ 1
51 #else
52 #define __HIP_DEVICE_COMPILE__ 0
53 #endif
54 
55 #endif
56 
57 
58 
59 
60 #if __HIP_DEVICE_COMPILE__ == 0
61 // 32-bit Atomics
62 #define __HIP_ARCH_HAS_GLOBAL_INT32_ATOMICS__ (0)
63 #define __HIP_ARCH_HAS_GLOBAL_FLOAT_ATOMIC_EXCH__ (0)
64 #define __HIP_ARCH_HAS_SHARED_INT32_ATOMICS__ (0)
65 #define __HIP_ARCH_HAS_SHARED_FLOAT_ATOMIC_EXCH__ (0)
66 #define __HIP_ARCH_HAS_FLOAT_ATOMIC_ADD__ (0)
67 
68 // 64-bit Atomics
69 #define __HIP_ARCH_HAS_GLOBAL_INT64_ATOMICS__ (0)
70 #define __HIP_ARCH_HAS_SHARED_INT64_ATOMICS__ (0)
71 
72 // Doubles
73 #define __HIP_ARCH_HAS_DOUBLES__ (0)
74 
75 // Warp cross-lane operations
76 #define __HIP_ARCH_HAS_WARP_VOTE__ (0)
77 #define __HIP_ARCH_HAS_WARP_BALLOT__ (0)
78 #define __HIP_ARCH_HAS_WARP_SHUFFLE__ (0)
79 #define __HIP_ARCH_HAS_WARP_FUNNEL_SHIFT__ (0)
80 
81 // Sync
82 #define __HIP_ARCH_HAS_THREAD_FENCE_SYSTEM__ (0)
83 #define __HIP_ARCH_HAS_SYNC_THREAD_EXT__ (0)
84 
85 // Misc
86 #define __HIP_ARCH_HAS_SURFACE_FUNCS__ (0)
87 #define __HIP_ARCH_HAS_3DGRID__ (0)
88 #define __HIP_ARCH_HAS_DYNAMIC_PARALLEL__ (0)
89 #endif