conv2d_bwd_weight.cpp 8.15 KB
Newer Older
1
2
3
4
5
6
7
8
#include <iostream>
#include <numeric>
#include <initializer_list>
#include <cstdlib>
#include <stdlib.h>
#include <half.hpp>
#include <vector>

Adam Osewski's avatar
Adam Osewski committed
9
#include "conv_util.hpp"
10
11
12
13
14
#include "profile_conv_bwd_weight_impl.hpp"

int test_self()
{
    bool pass = true;
15
    std::vector<ck::utils::conv::ConvParams> params;
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

    params.push_back({2, 128, 256, 256, {1, 1}, {7, 7}, {2, 2}, {1, 1}, {0, 0}, {0, 0}});
    params.push_back({2, 128, 256, 256, {3, 3}, {14, 14}, {1, 1}, {1, 1}, {1, 1}, {1, 1}});
    params.push_back({2, 128, 256, 256, {1, 1}, {3, 3}, {1, 1}, {1, 1}, {0, 0}, {0, 0}});

    for(auto& param : params)
    {
        // f32
        pass &= ck::profiler::profile_conv_bwd_weight_impl<2,
                                                           float,
                                                           float,
                                                           float,
                                                           ck::tensor_layout::convolution::NHWC,
                                                           ck::tensor_layout::convolution::KYXC,
                                                           ck::tensor_layout::convolution::NHWK>(
JD's avatar
JD committed
31
32
33
34
            true,  // do_verification
            1,     // init_method
            false, // do_log
            false, // time_kernel
Adam Osewski's avatar
Adam Osewski committed
35
36
37
38
39
            param.N_,
            param.K_,
            param.C_,
            param.input_spatial_lengths_,
            param.filter_spatial_lengths_,
40
            param.GetOutputSpatialLengths(),
Adam Osewski's avatar
Adam Osewski committed
41
42
43
44
            param.conv_filter_strides_,
            param.conv_filter_dilations_,
            param.input_left_pads_,
            param.input_right_pads_,
45
46
47
48
49
50
51
52
53
54
            2);

        // fp16
        pass &= ck::profiler::profile_conv_bwd_weight_impl<2,
                                                           ck::half_t,
                                                           ck::half_t,
                                                           ck::half_t,
                                                           ck::tensor_layout::convolution::NHWC,
                                                           ck::tensor_layout::convolution::KYXC,
                                                           ck::tensor_layout::convolution::NHWK>(
JD's avatar
JD committed
55
56
57
58
            true,  // do_verification
            1,     // init_method
            false, // do_log
            false, // time_kernel
Adam Osewski's avatar
Adam Osewski committed
59
60
61
62
63
            param.N_,
            param.K_,
            param.C_,
            param.input_spatial_lengths_,
            param.filter_spatial_lengths_,
64
            param.GetOutputSpatialLengths(),
Adam Osewski's avatar
Adam Osewski committed
65
66
67
68
            param.conv_filter_strides_,
            param.conv_filter_dilations_,
            param.input_left_pads_,
            param.input_right_pads_,
69
70
71
72
73
74
            2);
    }
    return pass;
}
int main(int argc, char* argv[])
{
JD's avatar
JD committed
75
76
    int data_type   = 1;
    int init_method = 1;
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138

    // Conv shape
    ck::index_t N               = 128;
    ck::index_t K               = 256;
    ck::index_t C               = 192;
    ck::index_t Y               = 3;
    ck::index_t X               = 3;
    ck::index_t Hi              = 71;
    ck::index_t Wi              = 71;
    ck::index_t conv_stride_h   = 2;
    ck::index_t conv_stride_w   = 2;
    ck::index_t conv_dilation_h = 1;
    ck::index_t conv_dilation_w = 1;
    ck::index_t in_left_pad_h   = 1;
    ck::index_t in_left_pad_w   = 1;
    ck::index_t in_right_pad_h  = 1;
    ck::index_t in_right_pad_w  = 1;
    ck::index_t split_k         = 1;

    bool pass = true;
    if(argc == 1)
    {
        pass = test_self();
    }
    else
    {
        if(argc == 3)
        {
            data_type   = std::stoi(argv[1]);
            init_method = std::stoi(argv[2]);
        }
        else if(argc == 19)
        {
            data_type   = std::stoi(argv[1]);
            init_method = std::stoi(argv[2]);

            N               = std::stoi(argv[3]);
            K               = std::stoi(argv[4]);
            C               = std::stoi(argv[5]);
            Y               = std::stoi(argv[6]);
            X               = std::stoi(argv[7]);
            Hi              = std::stoi(argv[8]);
            Wi              = std::stoi(argv[9]);
            conv_stride_h   = std::stoi(argv[10]);
            conv_stride_w   = std::stoi(argv[11]);
            conv_dilation_h = std::stoi(argv[12]);
            conv_dilation_w = std::stoi(argv[13]);
            in_left_pad_h   = std::stoi(argv[14]);
            in_left_pad_w   = std::stoi(argv[15]);
            in_right_pad_h  = std::stoi(argv[16]);
            in_right_pad_w  = std::stoi(argv[17]);
            split_k         = std::stoi(argv[18]);
        }
        else
        {
            printf("arg1: data type (0=fp32, 1=fp16, 2= bfp16, 3= int8_t )\n");
            printf("arg2: initialization (0=no init, 1=integer value, 2=decimal value)\n");
            printf("arg3 to 17: N, K, C, Y, X, Hi, Wi, Sy, Sx, Dy, Dx, LeftPy, LeftPx, RightPy, "
                   "RightPx\n");
            exit(1);
        }

139
140
141
142
143
144
145
146
147
148
        ck::utils::conv::ConvParams param{2,
                                          N,
                                          K,
                                          C,
                                          {Y, X},
                                          {Hi, Wi},
                                          {conv_stride_h, conv_stride_w},
                                          {conv_dilation_h, conv_dilation_w},
                                          {in_left_pad_h, in_left_pad_w},
                                          {in_right_pad_h, in_right_pad_w}};
149
150
151
152
153
154
155
156
157
        if(data_type == 0)
        {
            pass = ck::profiler::profile_conv_bwd_weight_impl<2,
                                                              float,
                                                              float,
                                                              float,
                                                              ck::tensor_layout::convolution::NHWC,
                                                              ck::tensor_layout::convolution::KYXC,
                                                              ck::tensor_layout::convolution::NHWK>(
JD's avatar
JD committed
158
                true, // do_verification
159
                init_method,
JD's avatar
JD committed
160
161
                false, // do_log
                false, // time_kernel
Adam Osewski's avatar
Adam Osewski committed
162
163
164
165
166
                param.N_,
                param.K_,
                param.C_,
                param.input_spatial_lengths_,
                param.filter_spatial_lengths_,
167
                param.GetOutputSpatialLengths(),
Adam Osewski's avatar
Adam Osewski committed
168
169
170
171
                param.conv_filter_strides_,
                param.conv_filter_dilations_,
                param.input_left_pads_,
                param.input_right_pads_,
172
173
174
175
176
177
178
179
180
181
182
                split_k);
        }
        else if(data_type == 1)
        {
            pass = ck::profiler::profile_conv_bwd_weight_impl<2,
                                                              ck::half_t,
                                                              ck::half_t,
                                                              ck::half_t,
                                                              ck::tensor_layout::convolution::NHWC,
                                                              ck::tensor_layout::convolution::KYXC,
                                                              ck::tensor_layout::convolution::NHWK>(
JD's avatar
JD committed
183
                true, // do_verification
184
                init_method,
JD's avatar
JD committed
185
186
                false, // do_log
                false, // time_kernel
Adam Osewski's avatar
Adam Osewski committed
187
188
189
190
191
                param.N_,
                param.K_,
                param.C_,
                param.input_spatial_lengths_,
                param.filter_spatial_lengths_,
192
                param.GetOutputSpatialLengths(),
Adam Osewski's avatar
Adam Osewski committed
193
194
195
196
                param.conv_filter_strides_,
                param.conv_filter_dilations_,
                param.input_left_pads_,
                param.input_right_pads_,
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
                split_k);
        }
        else
        {
            std::cout << "Not support data type" << std::endl;
            return 1;
        }
    }

    if(pass)
    {
        std::cout << "test conv2d bwd weight : Pass" << std::endl;
        return 0;
    }
    else
    {
        std::cout << "test conv2d bwd weight: Fail " << std::endl;
        return -1;
    }
}