Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / unit / engines / gna / matchers / conv_matcher.hpp
1 /*
2  * INTEL CONFIDENTIAL
3  * Copyright (C) 2018-2019 Intel Corporation.
4  *
5  * The source code contained or described herein and all documents
6  * related to the source code ("Material") are owned by Intel Corporation
7  * or its suppliers or licensors. Title to the Material remains with
8  * Intel Corporation or its suppliers and licensors. The Material may
9  * contain trade secrets and proprietary and confidential information
10  * of Intel Corporation and its suppliers and licensors, and is protected
11  * by worldwide copyright and trade secret laws and treaty provisions.
12  * No part of the Material may be used, copied, reproduced, modified,
13  * published, uploaded, posted, transmitted, distributed, or disclosed
14  * in any way without Intel's prior express written permission.
15  *
16  * No license under any patent, copyright, trade secret or other
17  * intellectual property right is granted to or conferred upon you by
18  * disclosure or delivery of the Materials, either expressly, by implication,
19  * inducement, estoppel or otherwise. Any license under such intellectual
20  * property rights must be express and approved by Intel in writing.
21  *
22  * Include any supplier copyright notices as supplier requires Intel to use.
23  *
24  * Include supplier trademarks or logos as supplier requires Intel to use,
25  * preceded by an asterisk. An asterisked footnote can be added as follows:
26  * *Third Party trademarks are the property of their respective owners.
27  *
28  * Unless otherwise agreed by Intel in writing, you may not remove or alter
29  * this notice or any other notice embedded in Materials by Intel or Intel's
30  * suppliers or licensors in any way.
31  */
32
33 #pragma once
34
35 #include"gna-api.h"
36 #include "nnet_base_matcher.hpp"
37 #include "quantization/quantization.h"
38
39 class ConvoluionLayerMatcher : public ::testing::MatcherInterface<const intel_nnet_type_t*> {
40     bool matchInserted;
41     int matchQuantity;
42  public:
43     ConvoluionLayerMatcher(bool matchInserted, int matchQuantity) : matchInserted(matchInserted), matchQuantity(matchQuantity) {}
44     bool MatchAndExplain(const intel_nnet_type_t *foo, ::testing::MatchResultListener *listener) const override {
45         if (foo == nullptr)
46             return false;
47         for(int i = 0; i < foo->nLayers; i++) {
48             if (foo->pLayers[i].nLayerKind != INTEL_CONVOLUTIONAL) continue;
49
50             auto conv = (intel_convolutional_layer_t*)foo->pLayers[i].pLayerStruct;
51
52             return matchInserted;
53         }
54         return !matchInserted;
55     };
56     void DescribeTo(::std::ostream *os) const override {
57         *os << "should "<< (matchInserted ? "" : "not ") << "have Convolution primitive as part of nnet structure";
58     }
59 };
60
61
62