gridwise_direct_convolution_1.cuh 8.6 KB
Newer Older
Chao Liu's avatar
Chao Liu committed
1
#pragma once
Chao Liu's avatar
Chao Liu committed
2
#include "ConstantTensorDescriptor.cuh"
Chao Liu's avatar
Chao Liu committed
3
#include "blockwise_4d_tensor_op.cuh"
Chao Liu's avatar
rename  
Chao Liu committed
4
#include "blockwise_direct_convolution.cuh"
Chao Liu's avatar
Chao Liu committed
5

Chao Liu's avatar
Chao Liu committed
6
template <class Float,
Chao Liu's avatar
Chao Liu committed
7
8
9
          class InGlobalDesc,
          class WeiGlobalDesc,
          class OutGlobalDesc,
Chao Liu's avatar
Chao Liu committed
10
11
          unsigned OutTileSizeH,
          unsigned OutTileSizeW,
Chao Liu's avatar
faster  
Chao Liu committed
12
13
14
          unsigned NPerBlock,
          unsigned KPerBlock,
          unsigned CPerBlock,
Chao Liu's avatar
Chao Liu committed
15
16
          unsigned YPerBlock,
          unsigned XPerBlock,
Chao Liu's avatar
Chao Liu committed
17
18
19
          unsigned NPerThread,
          unsigned KPerThread,
          unsigned CPerThread,
Chao Liu's avatar
Chao Liu committed
20
21
          unsigned BlockSize,
          unsigned GridSize>
Chao Liu's avatar
Chao Liu committed
22
__global__ void gridwise_direct_convolution_1(InGlobalDesc,
Chao Liu's avatar
Chao Liu committed
23
                                              Float* const __restrict__ p_in_global,
Chao Liu's avatar
Chao Liu committed
24
                                              WeiGlobalDesc,
Chao Liu's avatar
Chao Liu committed
25
                                              Float* const __restrict__ p_wei_global,
Chao Liu's avatar
Chao Liu committed
26
                                              OutGlobalDesc,
Chao Liu's avatar
Chao Liu committed
27
                                              Float* __restrict__ p_out_global)
Chao Liu's avatar
Chao Liu committed
28
{
Chao Liu's avatar
Chao Liu committed
29
30
31
32
    constexpr auto I0 = Number<0>{};
    constexpr auto I1 = Number<1>{};
    constexpr auto I2 = Number<2>{};
    constexpr auto I3 = Number<3>{};
Chao Liu's avatar
Chao Liu committed
33

Chao Liu's avatar
Chao Liu committed
34
35
36
    constexpr auto in_global_desc  = InGlobalDesc{};
    constexpr auto wei_global_desc = WeiGlobalDesc{};
    constexpr auto out_global_desc = OutGlobalDesc{};
Chao Liu's avatar
Chao Liu committed
37

Chao Liu's avatar
Chao Liu committed
38
39
    constexpr unsigned S = wei_global_desc.GetLength(I2);
    constexpr unsigned R = wei_global_desc.GetLength(I3);
Chao Liu's avatar
Chao Liu committed
40
41
42
43
44
45
46

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

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

Chao Liu's avatar
Chao Liu committed
47
48
49
50
    constexpr unsigned NBlockWork = (out_global_desc.GetLength(I0) + NPerBlock - 1) / NPerBlock;
    constexpr unsigned KBlockWork = (out_global_desc.GetLength(I1) + KPerBlock - 1) / KPerBlock;
    constexpr unsigned YBlockWork = (out_global_desc.GetLength(I2) + HoPerBlock - 1) / HoPerBlock;
    constexpr unsigned XBlockWork = (out_global_desc.GetLength(I3) + WoPerBlock - 1) / WoPerBlock;
Chao Liu's avatar
Chao Liu committed
51

Chao Liu's avatar
Chao Liu committed
52
    constexpr auto in_block_global_desc = make_ConstantTensorDescriptor(
Chao Liu's avatar
Chao Liu committed
53
        Sequence<NPerBlock, CPerBlock, HiPerBlock, WiPerBlock>{}, in_global_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
54

Chao Liu's avatar
Chao Liu committed
55
    constexpr auto wei_block_global_desc = make_ConstantTensorDescriptor(
Chao Liu's avatar
Chao Liu committed
56
        Sequence<KPerBlock, CPerBlock, S, R>{}, wei_global_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
57

Chao Liu's avatar
Chao Liu committed
58
    constexpr auto out_block_global_desc = make_ConstantTensorDescriptor(
Chao Liu's avatar
Chao Liu committed
59
        Sequence<NPerBlock, KPerBlock, HoPerBlock, WoPerBlock>{}, out_global_desc.GetStrides());
Chao Liu's avatar
Chao Liu committed
60

Chao Liu's avatar
Chao Liu committed
61
62
63
64
65
    constexpr auto in_block_desc = make_ConstantTensorDescriptor(in_block_global_desc.GetLengths());
    constexpr auto wei_block_desc =
        make_ConstantTensorDescriptor(wei_block_global_desc.GetLengths());
    constexpr auto out_block_desc =
        make_ConstantTensorDescriptor(out_block_global_desc.GetLengths());
Chao Liu's avatar
Chao Liu committed
66

Chao Liu's avatar
Chao Liu committed
67
68
69
    constexpr unsigned in_block_size  = in_block_desc.GetElementSpace();
    constexpr unsigned wei_block_size = wei_block_desc.GetElementSpace();
    constexpr unsigned out_block_size = out_block_desc.GetElementSpace();
Chao Liu's avatar
Chao Liu committed
70

Chao Liu's avatar
Chao Liu committed
71
72
73
    __shared__ Float p_in_block[in_block_size];
    __shared__ Float p_wei_block[wei_block_size];
    __shared__ Float p_out_block[out_block_size];
Chao Liu's avatar
Chao Liu committed
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98

    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)
    {
Chao Liu's avatar
Chao Liu committed
99
100
101
        print_ConstantTensorDescriptor( in_global_desc, "gridwise_convolution:  in_global_desc: ");
        print_ConstantTensorDescriptor(wei_global_desc, "gridwise_convolution: wei_global_desc: ");
        print_ConstantTensorDescriptor(out_global_desc, "gridwise_convolution: out_global_desc: ");
Chao Liu's avatar
Chao Liu committed
102
103
104
        print_ConstantTensorDescriptor( in_block_global_desc, "gridwise_convolution:  in_block_global_desc: ");
        print_ConstantTensorDescriptor(wei_block_global_desc, "gridwise_convolution: wei_block_global_desc: ");
        print_ConstantTensorDescriptor(out_block_global_desc, "gridwise_convolution: out_block_global_desc: ");
Chao Liu's avatar
Chao Liu committed
105
106
107
        print_ConstantTensorDescriptor( in_block_desc, "gridwise_convolution:  in_block_desc: ");
        print_ConstantTensorDescriptor(wei_block_desc, "gridwise_convolution: wei_block_desc: ");
        print_ConstantTensorDescriptor(out_block_desc, "gridwise_convolution: out_block_desc: ");
Chao Liu's avatar
Chao Liu committed
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123

        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
Chao Liu committed
124
    constexpr auto blockwise_in_copy =
125
126
127
128
129
        Blockwise4dTensorCopy1<BlockSize,
                               Float,
                               decltype(in_block_global_desc),
                               decltype(in_block_desc),
                               decltype(in_block_desc.GetLengths())>{};
Chao Liu's avatar
Chao Liu committed
130
131

    constexpr auto blockwise_wei_copy =
132
133
134
135
136
        Blockwise4dTensorCopy1<BlockSize,
                               Float,
                               decltype(wei_block_global_desc),
                               decltype(wei_block_desc),
                               decltype(wei_block_desc.GetLengths())>{};
Chao Liu's avatar
Chao Liu committed
137
138

    constexpr auto blockwise_out_copy =
139
140
141
142
143
        Blockwise4dTensorCopy1<BlockSize,
                               Float,
                               decltype(out_block_desc),
                               decltype(out_block_global_desc),
                               decltype(out_block_desc.GetLengths())>{};
Chao Liu's avatar
Chao Liu committed
144

Chao Liu's avatar
Chao Liu committed
145
    // set output tensor in LDS to 0
Chao Liu's avatar
Chao Liu committed
146
    blockwise_4d_tensor_set_zero<BlockSize>(out_block_desc, p_out_block);
Chao Liu's avatar
faster  
Chao Liu committed
147

Chao Liu's avatar
Chao Liu committed
148
    for(unsigned c_block_work_begin = 0; c_block_work_begin < in_global_desc.GetLength(I1);
Chao Liu's avatar
Chao Liu committed
149
        c_block_work_begin += CPerBlock)
Chao Liu's avatar
Chao Liu committed
150
151
    {
        // copy input tensor to LDS
152
        blockwise_in_copy.Run(p_in_global + in_global_desc.Get1dIndex(n_block_work_begin,
Chao Liu's avatar
Chao Liu committed
153
154
155
156
                                                                      c_block_work_begin,
                                                                      hi_block_work_begin,
                                                                      wi_block_work_begin),
                              p_in_block);
Chao Liu's avatar
Chao Liu committed
157
158

        // copy weight tensor to LDS
159
        blockwise_wei_copy.Run(
Chao Liu's avatar
Chao Liu committed
160
            p_wei_global + wei_global_desc.Get1dIndex(k_block_work_begin, c_block_work_begin, 0, 0),
Chao Liu's avatar
Chao Liu committed
161
            p_wei_block);
Chao Liu's avatar
Chao Liu committed
162
163
164
165

        __syncthreads();

        // blockwise convolution
Chao Liu's avatar
Chao Liu committed
166
        blockwise_direct_convolution<BlockSize,
Chao Liu's avatar
Chao Liu committed
167
                                     Float,
Chao Liu's avatar
Chao Liu committed
168
169
170
171
172
173
174
                                     decltype(in_block_desc),
                                     decltype(wei_block_desc),
                                     decltype(out_block_desc),
                                     OutTileSizeH,
                                     OutTileSizeW,
                                     NPerThread,
                                     KPerThread,
Chao Liu's avatar
Chao Liu committed
175
                                     CPerThread>(
Chao Liu's avatar
Chao Liu committed
176
            in_block_desc, p_in_block, wei_block_desc, p_wei_block, out_block_desc, p_out_block);
Chao Liu's avatar
Chao Liu committed
177
178

        __syncthreads();
Chao Liu's avatar
faster  
Chao Liu committed
179
    }
Chao Liu's avatar
Chao Liu committed
180

Chao Liu's avatar
faster  
Chao Liu committed
181
    // copy output tensor from LDS to device mem
182
    blockwise_out_copy.Run(p_out_block,
Chao Liu's avatar
Chao Liu committed
183
184
185
186
                           p_out_global + out_global_desc.Get1dIndex(n_block_work_begin,
                                                                     k_block_work_begin,
                                                                     ho_block_work_begin,
                                                                     wo_block_work_begin));
Chao Liu's avatar
Chao Liu committed
187
}