"LinuxGUI/vscode:/vscode.git/clone" did not exist on "08634fba9fd0e28a484f51a0f969bdf270b5f5e5"
config.hpp 4.91 KB
Newer Older
1
2
3
#ifndef CK_CONFIG_AMD_HPP
#define CK_CONFIG_AMD_HPP

JD's avatar
JD committed
4
#ifndef CK_DONT_USE_HIP_RUNTIME_HEADERS
5
6
#include "hip/hip_runtime.h"
#include "hip/hip_fp16.h"
Chao Liu's avatar
Chao Liu committed
7
#endif
8

9
10
11
// constant address space for kernel parameter
// https://llvm.org/docs/AMDGPUUsage.html#address-spaces
#define CK_CONSTANT_ADDRESS_SPACE __attribute__((address_space(4)))
Chao Liu's avatar
Chao Liu committed
12
13

// launch bounds
zjing14's avatar
zjing14 committed
14
#define CK_USE_LAUNCH_BOUNDS 1
Chao Liu's avatar
Chao Liu committed
15
16
17

#ifdef CK_USE_LAUNCH_BOUNDS
#define CK_MAX_THREAD_PER_BLOCK 256
Chao Liu's avatar
Chao Liu committed
18
#define CK_MIN_BLOCK_PER_CU 2
Chao Liu's avatar
Chao Liu committed
19
20
#endif

21
22
23
24
25
26
27
28
29
30
31
32
33
34
// check GPU target
#ifdef __HIP_DEVICE_COMPILE__
#if !(defined(__gfx803__) || defined(__gfx900__) || defined(__gfx906__) || defined(__gfx908__) || \
      defined(__gfx90a__) || defined(__gfx1030__))
#error Not supported target
#endif
#endif

// buffer resourse, wave size
#ifndef __HIP_DEVICE_COMPILE__ // for host code
#define CK_BUFFER_RESOURCE_3RD_DWORD -1
#define CK_GPU_WAVE_SIZE -1
#elif defined(__gfx803__) || defined(__gfx900__) || defined(__gfx906__) || defined(__gfx908__) || \
    defined(__gfx90a__) // for GPU code
Chao Liu's avatar
Chao Liu committed
35
#define CK_BUFFER_RESOURCE_3RD_DWORD 0x00020000
Chao Liu's avatar
Chao Liu committed
36
#define CK_GPU_WAVE_SIZE 64
37
#elif defined(__gfx1030__) // for GPU code
Chao Liu's avatar
Chao Liu committed
38
#define CK_BUFFER_RESOURCE_3RD_DWORD 0x31014000
Chao Liu's avatar
Chao Liu committed
39
#define CK_GPU_WAVE_SIZE 32
Chao Liu's avatar
Chao Liu committed
40
41
#endif

42
// FMA instruction
43
44
#ifndef __HIP_DEVICE_COMPILE__                   // for host code, define nothing
#elif defined(__gfx803__) || defined(__gfx900__) // for GPU code
45
#define CK_USE_AMD_V_MAC_F32
46
47
#elif defined(__gfx906__) || defined(__gfx908__) || defined(__gfx90a__) || \
    defined(__gfx1030__) // for GPU code
48
49
50
51
52
#define CK_USE_AMD_V_FMAC_F32
#define CK_USE_AMD_V_DOT2_F32_F16
#define CK_USE_AMD_V_DOT4_I32_I8
#endif

53
54
55
56
57
// MFMA instruction
#ifndef __HIP_DEVICE_COMPILE__ // for host code
#define CK_USE_AMD_MFMA
#elif defined(__gfx908__) || defined(__gfx90a__) // for GPU code
#define CK_USE_AMD_MFMA
58
59
#endif

60
61
#if defined(__gfx90a__)
#define CK_USE_AMD_MFMA_BF16_1K_OP
Chao Liu's avatar
Chao Liu committed
62
63
#endif

64
// buffer load
Jianfeng Yan's avatar
Jianfeng Yan committed
65
#define CK_USE_AMD_BUFFER_LOAD 1
66

67
// buffer store
Jianfeng Yan's avatar
Jianfeng Yan committed
68
69
#define CK_USE_AMD_BUFFER_STORE 1

70
71
// buffer atomic add: integer
#define CK_USE_AMD_BUFFER_ATOMIC_ADD_INTEGER 1
72

73
74
75
76
77
78
79
// buffer atomic add: floating point
#ifndef __HIP_DEVICE_COMPILE__ // for host code
#define CK_USE_AMD_BUFFER_ATOMIC_ADD_FLOAT 1
#elif defined(__gfx908__) || defined(__gfx90a__) // for GPU code
#define CK_USE_AMD_BUFFER_ATOMIC_ADD_FLOAT 1
#else // for GPU code
#define CK_USE_AMD_BUFFER_ATOMIC_ADD_FLOAT 0
80
81
#endif

82
83
84
85
86
87
// inline asm
#define CK_USE_AMD_INLINE_ASM 1

// inner product (DLOP)
#define CK_USE_AMD_INNER_PRODUCT_INLINE_ASM 1

Chao Liu's avatar
Chao Liu committed
88
// block synchronization only s_wait lgkmcnt(0), not vmcnt(0)
89
#define CK_EXPERIMENTAL_BLOCK_SYNC_LDS_WITHOUT_SYNC_VMEM 1
Chao Liu's avatar
Chao Liu committed
90

91
92
// experimental feature: multi index implemented as array
#define CK_EXPERIMENTAL_USE_DYNAMICALLY_INDEXED_MULTI_INDEX 0
Chao Liu's avatar
Chao Liu committed
93

94
95
// experimental feature: static tensor descriptor
#define CK_EXPERIMENTAL_STATIC_TENSOR_DESCRIPTOR 0
Chao Liu's avatar
Chao Liu committed
96

97
98
99
// experimental feature: buffer load/store/atomic-add OOB trick
#define CK_EXPERIMENTAL_USE_BUFFER_LOAD_OOB_CHECK_OFFSET_TRICK 0
#define CK_EXPERIMENTAL_USE_BUFFER_STORE_OOB_CHECK_OFFSET_TRICK 1
zjing14's avatar
zjing14 committed
100
#define CK_EXPERIMENTAL_USE_BUFFER_ATOMIC_ADD_OOB_CHECK_OFFSET_TRICK 1
101

102
// experimental feature: in-regsiter sub-dword transpose
103
#define CK_EXPERIMENTAL_USE_IN_REGISTER_SUB_DWORD_TRANSPOSE 1
Chao Liu's avatar
Chao Liu committed
104

105
// experimental feature: merge transformation use magic number division
106
#define CK_EXPERIMENTAL_MERGE_USE_MAGIC_DIVISION 1
107

108
109
// experimental feature: use __builtin_memcpy instead of pointer cast to access a vector from
// pointer of scalar
110
111
#define CK_EXPERIMENTAL_USE_MEMCPY_FOR_VECTOR_ACCESS 0

112
// experimental feature: use __builtin_memcpy instead of union to do bit_cast
113
#define CK_EXPERIMENTAL_USE_MEMCPY_FOR_BIT_CAST 1
114

Chao Liu's avatar
Chao Liu committed
115
116
117
118
// hack: have underlying assumption that need to be satsified, otherwise it's a bug
// hack for forcing register to keep idx_diff_low_const in SGPR. idx_diff_low_const must be
// thread-invariant, otherwise it's a bug
// TODO: separate index calculation into "compile-time", "global", "block", "wave", "thread"
Chao Liu's avatar
rename  
Chao Liu committed
119
#define CK_HACK_MERGE_CALCULATE_IDX_DIFF_LOW_CONST_USE_AMD_GCN_READ_FIRST_LANE 0
Chao Liu's avatar
Chao Liu committed
120

121
// workaround: compiler crash when compiling recursive lambda
Chao Liu's avatar
Chao Liu committed
122
#define CK_WORKAROUND_SWDEV_275126 1
123

124
// workaround: compiler crash when using buffer load/store for i8
125
126
#define CK_WORKAROUND_SWDEV_XXXXXX_INT8_BUFFER_LOAD_STORE_ISSUE 1

127
// workaround: compiler gnerating inefficient ds_write instructions
128
#define CK_WORKAROUND_SWDEV_XXXXXX_INT8_DS_WRITE_ISSUE 1
Chao Liu's avatar
Chao Liu committed
129

130
// workaround: verifaction failure, due to compiler regression, for conv bwd-data fp16 using some
131
132
133
// tuning parameter
#define CK_WORKAROUND_SWDEV_325164 1

134
135
136
137
// workaround for verification failure ConvNd forward
// https://github.com/ROCmSoftwarePlatform/composable_kernel/issues/135
#define CK_WORKAROUND_GITHUB_135 1

138
139
namespace ck {

140
enum struct InMemoryDataOperationEnum
Chao Liu's avatar
Chao Liu committed
141
{
Chao Liu's avatar
Chao Liu committed
142
    Set,
143
144
145
146
    AtomicAdd,
    Add
};

147
148
// TODO: no longer needed, remove this
enum struct ActivTypeEnum
149
{
Chao Liu's avatar
Chao Liu committed
150
    None,
151
152
    LeakyRelu,
    Sigmoid
153
154
};

Chao Liu's avatar
Chao Liu committed
155
// index type
Jianfeng Yan's avatar
Jianfeng Yan committed
156
157
using index_t      = int32_t;
using long_index_t = int64_t;
158
159
160

} // namespace ck
#endif