conv_util.cpp 8.89 KB
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.
3

Chao Liu's avatar
Chao Liu committed
4
#include "ck/library/utility/conv_util.hpp"
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
38
39
40
41

namespace ck {
namespace utils {
namespace conv {

/**
 * @brief      Calculate number of FLOPs for Convolution
 *
 * @param[in]  N                       Batch size.
 * @param[in]  C                       Number of input channels.
 * @param[in]  K                       Number of output channels.
 * @param[in]  filter_spatial_lengths  Filter spatial dimensions lengths.
 * @param[in]  output_spatial_lengths  Convolution output spatial dimensions
 *                                     lengths.
 *
 * @return     The number of flops.
 */
std::size_t get_flops(ck::index_t N,
                      ck::index_t C,
                      ck::index_t K,
                      const std::vector<ck::index_t>& filter_spatial_lengths,
                      const std::vector<ck::index_t>& output_spatial_lengths)
{
    // 2 * N * K * <output spatial lengths product> * C * <filter spatial lengths product>
    return static_cast<std::size_t>(2) * N * K *
           std::accumulate(std::begin(output_spatial_lengths),
                           std::end(output_spatial_lengths),
                           static_cast<std::size_t>(1),
                           std::multiplies<std::size_t>()) *
           C *
           std::accumulate(std::begin(filter_spatial_lengths),
                           std::end(filter_spatial_lengths),
                           static_cast<std::size_t>(1),
                           std::multiplies<std::size_t>());
}

ConvParams::ConvParams()
Adam Osewski's avatar
Adam Osewski committed
42
43
44
45
46
47
48
49
50
51
    : num_dim_spatial_(2),
      N_(128),
      K_(256),
      C_(192),
      filter_spatial_lengths_(2, 3),
      input_spatial_lengths_(2, 71),
      conv_filter_strides_(2, 2),
      conv_filter_dilations_(2, 1),
      input_left_pads_(2, 1),
      input_right_pads_(2, 1)
52
53
54
55
56
57
58
59
60
61
62
63
64
{
}

ConvParams::ConvParams(ck::index_t n_dim,
                       ck::index_t n_batch,
                       ck::index_t n_out_channels,
                       ck::index_t n_in_channels,
                       const std::vector<ck::index_t>& filters_len,
                       const std::vector<ck::index_t>& input_len,
                       const std::vector<ck::index_t>& strides,
                       const std::vector<ck::index_t>& dilations,
                       const std::vector<ck::index_t>& left_pads,
                       const std::vector<ck::index_t>& right_pads)
Adam Osewski's avatar
Adam Osewski committed
65
66
67
68
69
70
71
72
73
74
    : num_dim_spatial_(n_dim),
      N_(n_batch),
      K_(n_out_channels),
      C_(n_in_channels),
      filter_spatial_lengths_(filters_len),
      input_spatial_lengths_(input_len),
      conv_filter_strides_(strides),
      conv_filter_dilations_(dilations),
      input_left_pads_(left_pads),
      input_right_pads_(right_pads)
75
{
Adam Osewski's avatar
Adam Osewski committed
76
77
78
79
80
81
    if(ck::type_convert<ck::index_t>(filter_spatial_lengths_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(input_spatial_lengths_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(conv_filter_strides_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(conv_filter_dilations_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(input_left_pads_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(input_right_pads_.size()) != num_dim_spatial_)
82
    {
JD's avatar
JD committed
83
84
85
        throw(
            std::runtime_error("ConvParams::GetOutputSpatialLengths: "
                               "parameter size is different from number of declared dimensions!"));
86
87
88
89
90
    }
}

std::vector<ck::index_t> ConvParams::GetOutputSpatialLengths() const
{
Adam Osewski's avatar
Adam Osewski committed
91
92
93
94
95
96
    if(ck::type_convert<ck::index_t>(filter_spatial_lengths_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(input_spatial_lengths_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(conv_filter_strides_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(conv_filter_dilations_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(input_left_pads_.size()) != num_dim_spatial_ ||
       ck::type_convert<ck::index_t>(input_right_pads_.size()) != num_dim_spatial_)
97
    {
JD's avatar
JD committed
98
99
100
        throw(
            std::runtime_error("ConvParams::GetOutputSpatialLengths: "
                               "parameter size is different from number of declared dimensions!"));
101
102
    }

Adam Osewski's avatar
Adam Osewski committed
103
104
    std::vector<ck::index_t> out_spatial_len(num_dim_spatial_, 0);
    for(ck::index_t i = 0; i < num_dim_spatial_; ++i)
105
106
107
    {
        // XEff = (X - 1) * conv_dilation_w + 1;
        // Wo = (Wi + in_left_pad_w + in_right_pad_w - XEff) / conv_stride_w + 1;
Adam Osewski's avatar
Adam Osewski committed
108
109
        const ck::index_t idx_eff =
            (filter_spatial_lengths_[i] - 1) * conv_filter_dilations_[i] + 1;
110
        out_spatial_len[i] =
Adam Osewski's avatar
Adam Osewski committed
111
112
            (input_spatial_lengths_[i] + input_left_pads_[i] + input_right_pads_[i] - idx_eff) /
                conv_filter_strides_[i] +
113
114
115
116
117
118
119
120
121
            1;
    }
    return out_spatial_len;
}

ConvParams parse_conv_params(int num_dim_spatial, int arg_idx, char* const argv[])
{
    ck::utils::conv::ConvParams params;

Adam Osewski's avatar
Adam Osewski committed
122
123
124
125
    params.num_dim_spatial_ = num_dim_spatial;
    params.N_               = std::stoi(argv[arg_idx++]);
    params.K_               = std::stoi(argv[arg_idx++]);
    params.C_               = std::stoi(argv[arg_idx++]);
126

Adam Osewski's avatar
Adam Osewski committed
127
    params.filter_spatial_lengths_.resize(num_dim_spatial);
128
129
    for(int i = 0; i < num_dim_spatial; ++i)
    {
Adam Osewski's avatar
Adam Osewski committed
130
        params.filter_spatial_lengths_[i] = std::stoi(argv[arg_idx++]);
131
    }
Adam Osewski's avatar
Adam Osewski committed
132
    params.input_spatial_lengths_.resize(num_dim_spatial);
133
134
    for(int i = 0; i < num_dim_spatial; ++i)
    {
Adam Osewski's avatar
Adam Osewski committed
135
        params.input_spatial_lengths_[i] = std::stoi(argv[arg_idx++]);
136
    }
Adam Osewski's avatar
Adam Osewski committed
137
    params.conv_filter_strides_.resize(num_dim_spatial);
138
139
    for(int i = 0; i < num_dim_spatial; ++i)
    {
Adam Osewski's avatar
Adam Osewski committed
140
        params.conv_filter_strides_[i] = std::stoi(argv[arg_idx++]);
141
    }
Adam Osewski's avatar
Adam Osewski committed
142
    params.conv_filter_dilations_.resize(num_dim_spatial);
143
144
    for(int i = 0; i < num_dim_spatial; ++i)
    {
Adam Osewski's avatar
Adam Osewski committed
145
        params.conv_filter_dilations_[i] = std::stoi(argv[arg_idx++]);
146
    }
Adam Osewski's avatar
Adam Osewski committed
147
    params.input_left_pads_.resize(num_dim_spatial);
148
149
    for(int i = 0; i < num_dim_spatial; ++i)
    {
Adam Osewski's avatar
Adam Osewski committed
150
        params.input_left_pads_[i] = std::stoi(argv[arg_idx++]);
151
    }
Adam Osewski's avatar
Adam Osewski committed
152
    params.input_right_pads_.resize(num_dim_spatial);
153
154
    for(int i = 0; i < num_dim_spatial; ++i)
    {
Adam Osewski's avatar
Adam Osewski committed
155
        params.input_right_pads_[i] = std::stoi(argv[arg_idx++]);
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
    }

    return params;
}

HostTensorDescriptor get_output_host_tensor_descriptor(const std::vector<std::size_t>& dims,
                                                       int num_dim_spatial)
{
    namespace tl = ck::tensor_layout::convolution;

    switch(num_dim_spatial)
    {
    case 3: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::NDHWK{});
    }
    case 2: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::NHWK{});
    }
    case 1: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::NWK{});
    }
    default: {
        throw std::runtime_error("Unsupported number of spatial dimensions provided!");
    }
    }
}

HostTensorDescriptor get_filters_host_tensor_descriptor(const std::vector<std::size_t>& dims,
                                                        int num_dim_spatial)
{
    namespace tl = ck::tensor_layout::convolution;

    switch(num_dim_spatial)
    {
    case 3: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::KZYXC{});
    }
    case 2: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::KYXC{});
    }
    case 1: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::KXC{});
    }
    default: {
        throw std::runtime_error("Unsupported number of spatial dimensions provided!");
    }
    }
}

HostTensorDescriptor get_input_host_tensor_descriptor(const std::vector<std::size_t>& dims,
                                                      int num_dim_spatial)
{
    namespace tl = ck::tensor_layout::convolution;

    switch(num_dim_spatial)
    {
    case 3: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::NDHWC{});
    }
    case 2: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::NHWC{});
    }
    case 1: {
        return ck::utils::conv::get_host_tensor_descriptor(dims, tl::NWC{});
    }
    default: {
        throw std::runtime_error("Unsupported number of spatial dimensions provided!");
    }
    }
}

} // namespace conv
} // namespace utils
} // namespace ck

std::ostream& operator<<(std::ostream& os, const ck::utils::conv::ConvParams& p)
{
    os << "ConvParams {"
Adam Osewski's avatar
Adam Osewski committed
234
235
236
237
238
239
240
       << "\nnum_dim_spatial: " << p.num_dim_spatial_ << "\nN: " << p.N_ << "\nK: " << p.K_
       << "\nC: " << p.C_ << "\nfilter_spatial_lengths: " << p.filter_spatial_lengths_
       << "\ninput_spatial_lengths: " << p.input_spatial_lengths_
       << "\nconv_filter_strides: " << p.conv_filter_strides_
       << "\nconv_filter_dilations: " << p.conv_filter_dilations_
       << "\ninput_left_pads: " << p.input_left_pads_
       << "\ninput_right_pads: " << p.input_right_pads_;
241
242
    return os;
}