summaryrefslogtreecommitdiff
path: root/inference-engine/src/inference_engine/ie_layers_internal.hpp
blob: bfe526a6dd045660843b55675e9f3a5a3e1fa136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2018 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
//

#pragma once

#include "ie_api.h"
#include "ie_layers.h"

namespace InferenceEngine {

class INFERENCE_ENGINE_API_CLASS(Paddings) {
public:
    PropertyVector<unsigned int> begin;
    PropertyVector<unsigned int> end;
};

INFERENCE_ENGINE_API_CPP(Paddings) getConvPaddings(const ConvolutionLayer &convLayer);

}  // namespace InferenceEngine