profile_gemm.cpp 15 KB
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
#include <iostream>
#include <numeric>
#include <initializer_list>
#include <cstdlib>
Chao Liu's avatar
Chao Liu committed
5
6

#include "profiler/include/profile_gemm_impl.hpp"
Chao Liu's avatar
Chao Liu committed
7

Chao Liu's avatar
Chao Liu committed
8
enum struct GemmMatrixLayout
Chao Liu's avatar
Chao Liu committed
9
10
11
12
13
14
15
16
17
18
19
{
    MK_KN_MN, // 0
    MK_NK_MN, // 1
    KM_KN_MN, // 2
    KM_NK_MN, // 3
    MK_KN_NM, // 4
    MK_NK_NM, // 5
    KM_KN_NM, // 6
    KM_NK_NM, // 7
};

Chao Liu's avatar
Chao Liu committed
20
enum struct GemmDataType
Chao Liu's avatar
Chao Liu committed
21
{
22
23
24
25
    F32_F32_F32,    // 0
    F16_F16_F16,    // 1
    BF16_BF16_BF16, // 2
    INT8_INT8_INT8, // 3
Chao Liu's avatar
Chao Liu committed
26
27
28
29
};

int profile_gemm(int argc, char* argv[])
{
ltqin's avatar
ltqin committed
30
    if(!(argc == 14 || argc == 15))
Chao Liu's avatar
Chao Liu committed
31
32
    {
        printf("arg1: tensor operation (gemm: GEMM)\n");
33
        printf("arg2: data type (0: fp32; 1: fp16; 2: bf16; 3: int8)\n");
Chao Liu's avatar
Chao Liu committed
34
35
        printf("arg3: matrix layout (0: A[m, k] * B[k, n] = C[m, n];\n");
        printf("                     1: A[m, k] * B[n, k] = C[m, n];\n");
ltqin's avatar
ltqin committed
36
37
        printf("                     2: A[k, m] * B[k, n] = C[m, n];\n");
        printf("                     3: A[k, m] * B[n, k] = C[m, n])\n");
Chao Liu's avatar
Chao Liu committed
38
39
        printf("arg4: verification (0: no; 1: yes)\n");
        printf("arg5: initialization (0: no init; 1: integer value; 2: decimal value)\n");
JD's avatar
JD committed
40
41
        printf("arg6: print tensor value (0: no; 1: yes)\n");
        printf("arg7: time kernel (0=n0, 1=yes)\n");
Chao Liu's avatar
Chao Liu committed
42
        printf("arg8 to 13: M, N, K, StrideA, StrideB, StrideC\n");
ltqin's avatar
ltqin committed
43
        printf("arg14: split k into  mulitiple batch\n");
Chao Liu's avatar
Chao Liu committed
44
45
46
        exit(1);
    }

Chao Liu's avatar
Chao Liu committed
47
48
    const auto data_type       = static_cast<GemmDataType>(std::stoi(argv[2]));
    const auto layout          = static_cast<GemmMatrixLayout>(std::stoi(argv[3]));
Chao Liu's avatar
Chao Liu committed
49
50
51
    const bool do_verification = std::stoi(argv[4]);
    const int init_method      = std::stoi(argv[5]);
    const bool do_log          = std::stoi(argv[6]);
JD's avatar
JD committed
52
    const bool time_kernel     = std::stoi(argv[7]);
Chao Liu's avatar
Chao Liu committed
53
54
55
56
57
58
59
60

    const int M = std::stoi(argv[8]);
    const int N = std::stoi(argv[9]);
    const int K = std::stoi(argv[10]);

    const int StrideA = std::stoi(argv[11]);
    const int StrideB = std::stoi(argv[12]);
    const int StrideC = std::stoi(argv[13]);
ltqin's avatar
ltqin committed
61
62
63
    int KBatch        = 1;
    if(argc == 15)
        KBatch = std::stoi(argv[14]);
Chao Liu's avatar
Chao Liu committed
64
65
66
67
68
69

    if(data_type == GemmDataType::F16_F16_F16 && layout == GemmMatrixLayout::MK_KN_MN)
    {
        ck::profiler::profile_gemm_impl<ck::half_t,
                                        ck::half_t,
                                        ck::half_t,
70
                                        float,
Chao Liu's avatar
Chao Liu committed
71
72
73
74
75
76
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
77
            time_kernel,
Chao Liu's avatar
Chao Liu committed
78
79
80
81
82
            M,
            N,
            K,
            (StrideA < 0) ? K : StrideA,
            (StrideB < 0) ? N : StrideB,
zjing14's avatar
zjing14 committed
83
84
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
85
86
87
88
89
90
    }
    else if(data_type == GemmDataType::F16_F16_F16 && layout == GemmMatrixLayout::MK_NK_MN)
    {
        ck::profiler::profile_gemm_impl<ck::half_t,
                                        ck::half_t,
                                        ck::half_t,
91
                                        float,
Chao Liu's avatar
Chao Liu committed
92
93
94
95
96
97
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
98
            time_kernel,
Chao Liu's avatar
Chao Liu committed
99
100
101
102
103
            M,
            N,
            K,
            (StrideA < 0) ? K : StrideA,
            (StrideB < 0) ? K : StrideB,
zjing14's avatar
zjing14 committed
104
105
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
106
107
108
109
110
111
    }
    else if(data_type == GemmDataType::F16_F16_F16 && layout == GemmMatrixLayout::KM_KN_MN)
    {
        ck::profiler::profile_gemm_impl<ck::half_t,
                                        ck::half_t,
                                        ck::half_t,
112
                                        float,
Chao Liu's avatar
Chao Liu committed
113
114
115
116
117
118
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
119
            time_kernel,
Chao Liu's avatar
Chao Liu committed
120
121
122
123
124
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? N : StrideB,
zjing14's avatar
zjing14 committed
125
126
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
127
128
129
130
131
132
    }
    else if(data_type == GemmDataType::F16_F16_F16 && layout == GemmMatrixLayout::KM_NK_MN)
    {
        ck::profiler::profile_gemm_impl<ck::half_t,
                                        ck::half_t,
                                        ck::half_t,
133
                                        float,
Chao Liu's avatar
Chao Liu committed
134
135
136
137
138
139
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
140
            time_kernel,
Chao Liu's avatar
Chao Liu committed
141
142
143
144
145
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? K : StrideB,
zjing14's avatar
zjing14 committed
146
147
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
148
149
150
151
    }
    else if(data_type == GemmDataType::F32_F32_F32 && layout == GemmMatrixLayout::MK_KN_MN)
    {
        ck::profiler::profile_gemm_impl<float,
152
                                        float,
Chao Liu's avatar
Chao Liu committed
153
154
155
156
157
158
159
160
                                        float,
                                        float,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
161
            time_kernel,
Chao Liu's avatar
Chao Liu committed
162
163
164
165
166
            M,
            N,
            K,
            (StrideA < 0) ? K : StrideA,
            (StrideB < 0) ? N : StrideB,
ltqin's avatar
ltqin committed
167
168
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
169
170
171
172
    }
    else if(data_type == GemmDataType::F32_F32_F32 && layout == GemmMatrixLayout::MK_NK_MN)
    {
        ck::profiler::profile_gemm_impl<float,
173
                                        float,
Chao Liu's avatar
Chao Liu committed
174
175
176
177
178
179
180
181
                                        float,
                                        float,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
182
            time_kernel,
Chao Liu's avatar
Chao Liu committed
183
184
185
186
187
            M,
            N,
            K,
            (StrideA < 0) ? K : StrideA,
            (StrideB < 0) ? K : StrideB,
ltqin's avatar
ltqin committed
188
189
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
190
191
192
193
    }
    else if(data_type == GemmDataType::F32_F32_F32 && layout == GemmMatrixLayout::KM_KN_MN)
    {
        ck::profiler::profile_gemm_impl<float,
194
                                        float,
Chao Liu's avatar
Chao Liu committed
195
196
197
198
199
200
201
202
                                        float,
                                        float,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
203
            time_kernel,
Chao Liu's avatar
Chao Liu committed
204
205
206
207
208
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? N : StrideB,
ltqin's avatar
ltqin committed
209
210
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
211
212
213
214
    }
    else if(data_type == GemmDataType::F32_F32_F32 && layout == GemmMatrixLayout::KM_NK_MN)
    {
        ck::profiler::profile_gemm_impl<float,
215
                                        float,
Chao Liu's avatar
Chao Liu committed
216
217
218
219
220
221
222
223
                                        float,
                                        float,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
224
            time_kernel,
Chao Liu's avatar
Chao Liu committed
225
226
227
228
229
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? K : StrideB,
ltqin's avatar
ltqin committed
230
231
            (StrideC < 0) ? N : StrideC,
            KBatch);
Chao Liu's avatar
Chao Liu committed
232
    }
233
234
235
236
237
    else if(data_type == GemmDataType::INT8_INT8_INT8 && layout == GemmMatrixLayout::MK_KN_MN)
    {
        ck::profiler::profile_gemm_impl<int8_t,
                                        int8_t,
                                        int8_t,
238
                                        int32_t,
239
240
241
242
243
244
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
245
            time_kernel,
246
247
248
249
250
251
252
253
            M,
            N,
            K,
            (StrideA < 0) ? K : StrideA,
            (StrideB < 0) ? N : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
254
255
256
257
258
    else if(data_type == GemmDataType::INT8_INT8_INT8 && layout == GemmMatrixLayout::MK_NK_MN)
    {
        ck::profiler::profile_gemm_impl<int8_t,
                                        int8_t,
                                        int8_t,
259
                                        int32_t,
260
261
262
263
264
265
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
266
            time_kernel,
267
268
269
270
271
272
273
274
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? K : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
275
276
277
278
279
    else if(data_type == GemmDataType::INT8_INT8_INT8 && layout == GemmMatrixLayout::KM_KN_MN)
    {
        ck::profiler::profile_gemm_impl<int8_t,
                                        int8_t,
                                        int8_t,
280
                                        int32_t,
281
282
283
284
285
286
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
287
            time_kernel,
288
289
290
291
292
293
294
295
296
297
298
299
300
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? N : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
    else if(data_type == GemmDataType::INT8_INT8_INT8 && layout == GemmMatrixLayout::KM_NK_MN)
    {
        ck::profiler::profile_gemm_impl<int8_t,
                                        int8_t,
                                        int8_t,
301
                                        int32_t,
302
303
304
305
306
307
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
308
            time_kernel,
309
310
311
312
313
314
315
316
317
318
319
320
321
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? K : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
    else if(data_type == GemmDataType::BF16_BF16_BF16 && layout == GemmMatrixLayout::MK_KN_MN)
    {
        ck::profiler::profile_gemm_impl<ck::bhalf_t,
                                        ck::bhalf_t,
                                        ck::bhalf_t,
322
                                        float,
323
324
325
326
327
328
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
329
            time_kernel,
330
331
332
333
334
335
336
337
            M,
            N,
            K,
            (StrideA < 0) ? K : StrideA,
            (StrideB < 0) ? N : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
338
339
340
341
342
    else if(data_type == GemmDataType::BF16_BF16_BF16 && layout == GemmMatrixLayout::MK_NK_MN)
    {
        ck::profiler::profile_gemm_impl<ck::bhalf_t,
                                        ck::bhalf_t,
                                        ck::bhalf_t,
343
                                        float,
344
345
346
347
348
349
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
350
            time_kernel,
351
352
353
354
355
356
357
358
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? K : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
359
360
361
362
363
    else if(data_type == GemmDataType::BF16_BF16_BF16 && layout == GemmMatrixLayout::KM_KN_MN)
    {
        ck::profiler::profile_gemm_impl<ck::bhalf_t,
                                        ck::bhalf_t,
                                        ck::bhalf_t,
364
                                        float,
365
366
367
368
369
370
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
371
            time_kernel,
372
373
374
375
376
377
378
379
380
381
382
383
384
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? N : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
    else if(data_type == GemmDataType::BF16_BF16_BF16 && layout == GemmMatrixLayout::KM_NK_MN)
    {
        ck::profiler::profile_gemm_impl<ck::bhalf_t,
                                        ck::bhalf_t,
                                        ck::bhalf_t,
385
                                        float,
386
387
388
389
390
391
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::ColumnMajor,
                                        ck::tensor_layout::gemm::RowMajor>(
            do_verification,
            init_method,
            do_log,
JD's avatar
JD committed
392
            time_kernel,
393
394
395
396
397
398
399
400
            M,
            N,
            K,
            (StrideA < 0) ? M : StrideA,
            (StrideB < 0) ? K : StrideB,
            (StrideC < 0) ? N : StrideC,
            KBatch);
    }
Chao Liu's avatar
Chao Liu committed
401
402
403
404
405
    else
    {
        throw std::runtime_error("wrong! this GEMM data_type & layout is not implemented");
    }

406
    return 0;
Chao Liu's avatar
Chao Liu committed
407
}