direct_convolution_2.cuh 16.9 KB
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#pragma once
#include "constant_tensor_descriptor.cuh"
#include "blockwise_tensor_op.cuh"
#include "threadwise_tensor_op.cuh"
#include "threadwise_convolution.cuh"

template <class TFloat,
          class InDesc,
          class WeiDesc,
          class OutDesc,
          unsigned OutTileSizeH,
          unsigned OutTileSizeW,
          unsigned BlockSize>
__device__ void blockwise_convolution(InDesc,
                                      TFloat* const __restrict__ p_in,
                                      WeiDesc,
                                      TFloat* const __restrict__ p_wei,
                                      OutDesc,
                                      TFloat* __restrict__ p_out)
{
    constexpr auto I0 = Index<0>{};
    constexpr auto I1 = Index<1>{};
    constexpr auto I2 = Index<2>{};
    constexpr auto I3 = Index<3>{};

    constexpr auto in_desc  = InDesc{};
    constexpr auto wei_desc = WeiDesc{};
    constexpr auto out_desc = OutDesc{};

    constexpr unsigned S = wei_desc.GetLength(I2);
    constexpr unsigned R = wei_desc.GetLength(I3);

    constexpr unsigned NPerBlock = out_desc.GetLength(I0);
    constexpr unsigned KPerBlock = out_desc.GetLength(I1);
    constexpr unsigned YPerBlock = (out_desc.GetLength(I2) + OutTileSizeH - 1) / OutTileSizeH;
    constexpr unsigned XPerBlock = (out_desc.GetLength(I3) + OutTileSizeW - 1) / OutTileSizeW;

Chao Liu's avatar
faster  
Chao Liu committed
38
    constexpr unsigned CPerBlock = in_desc.GetLength(I1);
Chao Liu's avatar
Chao Liu committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52

    constexpr unsigned InTileSizeH = OutTileSizeH + S - 1;
    constexpr unsigned InTileSizeW = OutTileSizeW + R - 1;

#if 0
    if(threadIdx.x == 0)
    {
        print_ConstantTensorDescriptor(in_desc);
        print_ConstantTensorDescriptor(wei_desc);
        print_ConstantTensorDescriptor(out_desc);
    }
#endif

    constexpr auto in_thread_src_desc = make_ConstantTensorDescriptor(
Chao Liu's avatar
faster  
Chao Liu committed
53
        Sequence<1, CPerBlock, InTileSizeH, InTileSizeW>{}, in_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
54
55

    constexpr auto wei_thread_src_desc =
Chao Liu's avatar
faster  
Chao Liu committed
56
        make_ConstantTensorDescriptor(Sequence<1, CPerBlock, S, R>{}, wei_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71

    constexpr auto out_thread_src_desc = make_ConstantTensorDescriptor(
        Sequence<1, 1, OutTileSizeH, OutTileSizeW>{}, out_desc.GetStrides());

    constexpr auto in_thread_dst_desc =
        make_ConstantTensorDescriptor(in_thread_src_desc.GetLengths());

    constexpr auto wei_thread_dst_desc =
        make_ConstantTensorDescriptor(wei_thread_src_desc.GetLengths());

    constexpr auto out_thread_dst_desc =
        make_ConstantTensorDescriptor(out_thread_src_desc.GetLengths());

    const unsigned thread_id = threadIdx.x;

Chao Liu's avatar
faster  
Chao Liu committed
72
    for(unsigned thread_work_id = thread_id; thread_work_id < NPerBlock * YPerBlock * XPerBlock;
Chao Liu's avatar
Chao Liu committed
73
74
75
        thread_work_id += BlockSize)
    {
        unsigned itmp             = thread_work_id;
Chao Liu's avatar
faster  
Chao Liu committed
76
77
        unsigned n_thread_work_id = itmp / (YPerBlock * XPerBlock);
        itmp -= n_thread_work_id * (YPerBlock * XPerBlock);
Chao Liu's avatar
Chao Liu committed
78
79
80
81
82
83
84
85
86
87
        unsigned y_thread_work_id = itmp / XPerBlock;
        unsigned x_thread_work_id = itmp - y_thread_work_id * XPerBlock;

        unsigned n_thread_work_begin  = n_thread_work_id * 1;
        unsigned ho_thread_work_begin = y_thread_work_id * OutTileSizeH;
        unsigned wo_thread_work_begin = x_thread_work_id * OutTileSizeW;

        unsigned hi_thread_work_begin = ho_thread_work_begin; // minus padding
        unsigned wi_thread_work_begin = wo_thread_work_begin; // minus padding

Chao Liu's avatar
faster  
Chao Liu committed
88
89
90
        TFloat p_in_thread[in_thread_src_desc.GetElementSpace()];
        TFloat p_wei_thread[wei_thread_src_desc.GetElementSpace()];
        TFloat p_out_thread[out_thread_src_desc.GetElementSpace()];
Chao Liu's avatar
Chao Liu committed
91
92
93
94

        auto f_copy = [](const TFloat& src, TFloat& dst) { dst = src; };

        // copy input tensor into register
Chao Liu's avatar
Chao Liu committed
95
96
97
98
        threadwise_4d_tensor_op_in<TFloat,
                                   decltype(in_thread_src_desc),
                                   decltype(in_thread_dst_desc),
                                   decltype(f_copy)>(
Chao Liu's avatar
Chao Liu committed
99
100
101
102
103
            in_thread_src_desc,
            p_in + in_desc.Get1dIndex(
                       n_thread_work_begin, 0, hi_thread_work_begin, wi_thread_work_begin),
            in_thread_dst_desc,
            p_in_thread,
Chao Liu's avatar
Chao Liu committed
104
            f_copy);
Chao Liu's avatar
faster  
Chao Liu committed
105
106
107
108
109

        for(unsigned k_thread_work_begin = 0; k_thread_work_begin < KPerBlock;
            ++k_thread_work_begin)
        {
            // copy weight tensor into register
Chao Liu's avatar
Chao Liu committed
110
111
112
113
            threadwise_4d_tensor_op_wei<TFloat,
                                        decltype(wei_thread_src_desc),
                                        decltype(wei_thread_dst_desc),
                                        decltype(f_copy)>(
Chao Liu's avatar
faster  
Chao Liu committed
114
115
116
117
                wei_thread_src_desc,
                p_wei + wei_desc.Get1dIndex(k_thread_work_begin, 0, 0, 0),
                wei_thread_dst_desc,
                p_wei_thread,
Chao Liu's avatar
Chao Liu committed
118
                f_copy);
Chao Liu's avatar
faster  
Chao Liu committed
119
120

            // copy output tensor into register
Chao Liu's avatar
Chao Liu committed
121
122
123
124
125
126
127
128
129
130
131
132
            threadwise_4d_tensor_op_out<TFloat,
                                        decltype(out_thread_src_desc),
                                        decltype(out_thread_dst_desc),
                                        decltype(f_copy)>(
                out_thread_src_desc,
                p_out + out_desc.Get1dIndex(n_thread_work_begin,
                                            k_thread_work_begin,
                                            ho_thread_work_begin,
                                            wo_thread_work_begin),
                out_thread_dst_desc,
                p_out_thread,
                f_copy);
Chao Liu's avatar
faster  
Chao Liu committed
133
134
135
136
137
138
139
140
141
142
143
144
145

            // threadwise convolution
            threadwise_direct_convolution<TFloat,
                                          decltype(in_thread_dst_desc),
                                          decltype(wei_thread_dst_desc),
                                          decltype(out_thread_dst_desc)>(in_thread_dst_desc,
                                                                         p_in_thread,
                                                                         wei_thread_dst_desc,
                                                                         p_wei_thread,
                                                                         out_thread_dst_desc,
                                                                         p_out_thread);

            // accumulate output tensor into LDS
Chao Liu's avatar
Chao Liu committed
146
147
148
149
150
151
152
153
154
155
156
157
            threadwise_4d_tensor_op_out<TFloat,
                                        decltype(out_thread_dst_desc),
                                        decltype(out_thread_src_desc),
                                        decltype(f_copy)>(
                out_thread_dst_desc,
                p_out_thread,
                out_thread_src_desc,
                p_out + out_desc.Get1dIndex(n_thread_work_begin,
                                            k_thread_work_begin,
                                            ho_thread_work_begin,
                                            wo_thread_work_begin),
                f_copy);
Chao Liu's avatar
faster  
Chao Liu committed
158
        }
Chao Liu's avatar
Chao Liu committed
159
160
161
162
163
164
165
166
167
    }
}

template <class TFloat,
          class InDesc,
          class WeiDesc,
          class OutDesc,
          unsigned OutTileSizeH,
          unsigned OutTileSizeW,
Chao Liu's avatar
faster  
Chao Liu committed
168
169
170
          unsigned NPerBlock,
          unsigned KPerBlock,
          unsigned CPerBlock,
Chao Liu's avatar
Chao Liu committed
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
          unsigned YPerBlock,
          unsigned XPerBlock,
          unsigned NBlockCopyLen0,
          unsigned NBlockCopyLen1,
          unsigned NBlockCopyLen2,
          unsigned NBlockCopyLen3,
          unsigned BlockSize,
          unsigned GridSize>
__global__ void gridwise_convolution(InDesc,
                                     TFloat* const __restrict__ p_in,
                                     WeiDesc,
                                     TFloat* const __restrict__ p_wei,
                                     OutDesc,
                                     TFloat* __restrict__ p_out)
{
    constexpr auto I0 = Index<0>{};
    constexpr auto I1 = Index<1>{};
    constexpr auto I2 = Index<2>{};
    constexpr auto I3 = Index<3>{};

    constexpr auto in_desc  = InDesc{};
    constexpr auto wei_desc = WeiDesc{};
    constexpr auto out_desc = OutDesc{};

    constexpr unsigned S = wei_desc.GetLength(I2);
    constexpr unsigned R = wei_desc.GetLength(I3);

    constexpr unsigned HoPerBlock = OutTileSizeH * YPerBlock;
    constexpr unsigned WoPerBlock = OutTileSizeW * XPerBlock;

    constexpr unsigned HiPerBlock = YPerBlock * OutTileSizeH + S - 1;
    constexpr unsigned WiPerBlock = XPerBlock * OutTileSizeW + R - 1;

    constexpr unsigned NBlockWork = (out_desc.GetLength(I0) + NPerBlock - 1) / NPerBlock;
    constexpr unsigned KBlockWork = (out_desc.GetLength(I1) + KPerBlock - 1) / KPerBlock;
    constexpr unsigned YBlockWork = (out_desc.GetLength(I2) + HoPerBlock - 1) / HoPerBlock;
    constexpr unsigned XBlockWork = (out_desc.GetLength(I3) + WoPerBlock - 1) / WoPerBlock;

    constexpr auto in_block_glb_desc = make_ConstantTensorDescriptor(
Chao Liu's avatar
faster  
Chao Liu committed
210
        Sequence<NPerBlock, CPerBlock, HiPerBlock, WiPerBlock>{}, in_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
211
212

    constexpr auto wei_block_glb_desc = make_ConstantTensorDescriptor(
Chao Liu's avatar
faster  
Chao Liu committed
213
        Sequence<KPerBlock, CPerBlock, S, R>{}, wei_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281

    constexpr auto out_block_glb_desc = make_ConstantTensorDescriptor(
        Sequence<NPerBlock, KPerBlock, HoPerBlock, WoPerBlock>{}, out_desc.GetStrides());

    constexpr auto in_block_lds_desc =
        make_ConstantTensorDescriptor(in_block_glb_desc.GetLengths());
    constexpr auto wei_block_lds_desc =
        make_ConstantTensorDescriptor(wei_block_glb_desc.GetLengths());
    constexpr auto out_block_lds_desc =
        make_ConstantTensorDescriptor(out_block_glb_desc.GetLengths());

    constexpr unsigned in_block_size  = in_block_lds_desc.GetElementSize();
    constexpr unsigned wei_block_size = wei_block_lds_desc.GetElementSize();
    constexpr unsigned out_block_size = out_block_lds_desc.GetElementSize();

    __shared__ TFloat p_in_block[in_block_size];
    __shared__ TFloat p_wei_block[wei_block_size];
    __shared__ TFloat p_out_block[out_block_size];

    const unsigned block_id = blockIdx.x;

    unsigned itmp            = block_id;
    unsigned n_block_work_id = itmp / (KBlockWork * YBlockWork * XBlockWork);
    itmp -= n_block_work_id * (KBlockWork * YBlockWork * XBlockWork);
    unsigned k_block_work_id = itmp / (YBlockWork * XBlockWork);
    itmp -= k_block_work_id * (YBlockWork * XBlockWork);
    unsigned y_block_work_id = itmp / XBlockWork;
    unsigned x_block_work_id = itmp - y_block_work_id * XBlockWork;

    unsigned n_block_work_begin = n_block_work_id * NPerBlock;
    unsigned k_block_work_begin = k_block_work_id * KPerBlock;
    unsigned y_block_work_begin = y_block_work_id * YPerBlock;
    unsigned x_block_work_begin = x_block_work_id * XPerBlock;

    unsigned ho_block_work_begin = y_block_work_begin * OutTileSizeH;
    unsigned wo_block_work_begin = x_block_work_begin * OutTileSizeW;

    unsigned hi_block_work_begin = ho_block_work_begin; // minus padding
    unsigned wi_block_work_begin = wo_block_work_begin; // minus padding

#if 0
    if(threadIdx.x == 0)
    {
        print_ConstantTensorDescriptor( in_desc, "gridwise_convolution:  in_desc: ");
        print_ConstantTensorDescriptor(wei_desc, "gridwise_convolution: wei_desc: ");
        print_ConstantTensorDescriptor(out_desc, "gridwise_convolution: out_desc: ");
        print_ConstantTensorDescriptor( in_block_glb_desc, "gridwise_convolution:  in_block_glb_desc: ");
        print_ConstantTensorDescriptor(wei_block_glb_desc, "gridwise_convolution: wei_block_glb_desc: ");
        print_ConstantTensorDescriptor(out_block_glb_desc, "gridwise_convolution: out_block_glb_desc: ");
        print_ConstantTensorDescriptor( in_block_lds_desc, "gridwise_convolution:  in_block_lds_desc: ");
        print_ConstantTensorDescriptor(wei_block_lds_desc, "gridwise_convolution: wei_block_lds_desc: ");
        print_ConstantTensorDescriptor(out_block_lds_desc, "gridwise_convolution: out_block_lds_desc: ");

        printf("NBlockWork %u, KBlockWork %u, YBlockWork %u, XBlockWork %u \t"
               "block_id %u, n_block_work_id %u, k_block_work_id %u, y_block_work_id %u, "
               "x_block_work_id %u\n",
               NBlockWork,
               KBlockWork,
               YBlockWork,
               XBlockWork,
               block_id,
               n_block_work_id,
               k_block_work_id,
               y_block_work_id,
               x_block_work_id);
    }
#endif

Chao Liu's avatar
faster  
Chao Liu committed
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
    auto f_copy = [](const TFloat& src, TFloat& dst) { dst = src; };
    auto f_accu = [](const TFloat& src, TFloat& dst) { dst += src; };

    // copy output tensor to LDS
    blockwise_4d_tensor_op<TFloat,
                           decltype(out_block_glb_desc),
                           decltype(out_block_lds_desc),
                           NBlockCopyLen0,
                           NBlockCopyLen1,
                           NBlockCopyLen2,
                           NBlockCopyLen3,
                           decltype(f_copy),
                           BlockSize>(out_block_glb_desc,
                                      p_out + out_block_glb_desc.Get1dIndex(n_block_work_begin,
                                                                            k_block_work_begin,
                                                                            ho_block_work_begin,
                                                                            wo_block_work_begin),
                                      out_block_lds_desc,
                                      p_out_block,
                                      f_copy);

Chao Liu's avatar
Chao Liu committed
303
    for(unsigned c_block_work_begin = 0; c_block_work_begin < in_desc.GetLength(I1);
Chao Liu's avatar
faster  
Chao Liu committed
304
        c_block_work_begin += CPerBlock)
Chao Liu's avatar
Chao Liu committed
305
306
    {

Chao Liu's avatar
Chao Liu committed
307
#if 1
Chao Liu's avatar
Chao Liu committed
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
        // copy input tensor to LDS
        blockwise_4d_tensor_op<TFloat,
                               decltype(in_block_glb_desc),
                               decltype(in_block_lds_desc),
                               NBlockCopyLen0,
                               NBlockCopyLen1,
                               NBlockCopyLen2,
                               NBlockCopyLen3,
                               decltype(f_copy),
                               BlockSize>(in_block_glb_desc,
                                          p_in + in_block_glb_desc.Get1dIndex(n_block_work_begin,
                                                                              c_block_work_begin,
                                                                              hi_block_work_begin,
                                                                              wi_block_work_begin),
                                          in_block_lds_desc,
                                          p_in_block,
                                          f_copy);
Chao Liu's avatar
Chao Liu committed
325
#endif
Chao Liu's avatar
Chao Liu committed
326

Chao Liu's avatar
Chao Liu committed
327
#if 1
Chao Liu's avatar
Chao Liu committed
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
        // copy weight tensor to LDS
        blockwise_4d_tensor_op<TFloat,
                               decltype(wei_block_glb_desc),
                               decltype(wei_block_lds_desc),
                               NBlockCopyLen0,
                               NBlockCopyLen1,
                               NBlockCopyLen2,
                               NBlockCopyLen3,
                               decltype(f_copy),
                               BlockSize>(
            wei_block_glb_desc,
            p_wei + wei_block_glb_desc.Get1dIndex(k_block_work_begin, c_block_work_begin, 0, 0),
            wei_block_lds_desc,
            p_wei_block,
            f_copy);
Chao Liu's avatar
Chao Liu committed
343
#endif
Chao Liu's avatar
Chao Liu committed
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365

#if 1
        __syncthreads();
#endif

        // blockwise convolution
        blockwise_convolution<TFloat,
                              decltype(in_block_lds_desc),
                              decltype(wei_block_lds_desc),
                              decltype(out_block_lds_desc),
                              OutTileSizeH,
                              OutTileSizeW,
                              BlockSize>(in_block_lds_desc,
                                         p_in_block,
                                         wei_block_lds_desc,
                                         p_wei_block,
                                         out_block_lds_desc,
                                         p_out_block);

#if 1
        __syncthreads();
#endif
Chao Liu's avatar
faster  
Chao Liu committed
366
    }
Chao Liu's avatar
Chao Liu committed
367

Chao Liu's avatar
faster  
Chao Liu committed
368
369
370
371
372
373
374
375
376
377
378
379
380
    // copy output tensor from LDS to device mem
    blockwise_4d_tensor_op<TFloat,
                           decltype(out_block_lds_desc),
                           decltype(out_block_glb_desc),
                           NBlockCopyLen0,
                           NBlockCopyLen1,
                           NBlockCopyLen2,
                           NBlockCopyLen3,
                           decltype(f_copy),
                           BlockSize>(out_block_lds_desc,
                                      p_out_block,
                                      out_block_glb_desc,
                                      p_out + out_block_glb_desc.Get1dIndex(n_block_work_begin,
Chao Liu's avatar
Chao Liu committed
381
382
383
                                                                            k_block_work_begin,
                                                                            ho_block_work_begin,
                                                                            wo_block_work_begin),
Chao Liu's avatar
faster  
Chao Liu committed
384
                                      f_copy);
Chao Liu's avatar
Chao Liu committed
385
}