Imported Upstream version 1.4.0
[platform/core/ml/nnfw.git] / compiler / mir-onnx-importer / ConvPoolHelpers.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef MIR_ONNX_CONV_POOL_HELPERS_H
18 #define MIR_ONNX_CONV_POOL_HELPERS_H
19
20 #include "mir/Shape.h"
21
22 #include <cstdint>
23 #include <string>
24 #include <vector>
25
26 namespace mir_onnx
27 {
28
29 void inferAutoPadding(const std::string &pad_type, const mir::Shape &input_shape,
30                       const std::vector<std::int32_t> &dilations,
31                       const std::vector<std::int32_t> &strides,
32                       const std::vector<std::int32_t> &window_size,
33                       std::vector<std::int32_t> &padding_before,
34                       std::vector<std::int32_t> &padding_after);
35
36 std::vector<std::int32_t> fixPads(const mir::Shape &input_shape,
37                                   const std::vector<std::int32_t> &pads,
38                                   const std::vector<std::int32_t> &strides,
39                                   const std::vector<std::int32_t> &dilation,
40                                   const std::vector<std::int32_t> &kernel_shape);
41
42 } // namespace mir_onnx
43
44 #endif // MIR_ONNX_CONV_POOL_HELPERS_H