summaryrefslogtreecommitdiff
path: root/inference-engine/tests/mock_extension/mock_extension.cpp
blob: 47881a36aa0330ac64ffad576bceebd561918d2c (plain)
1
2
3
4
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright (C) 2018 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
//

#include "mock_extension.hpp"
#include "mkldnn/mkldnn_extension.hpp"
#include "ie_plugin.hpp"
#include <iostream>


using namespace std;
using namespace InferenceEngine;
#define ACTION_IF_NOT_NULL(action) (nullptr == _target) ? NOT_IMPLEMENTED : _target->action
#define IF_NOT_NULL(action) if (nullptr != _target) {_target->action;}

MockMKLDNNExtensionShared::MockMKLDNNExtensionShared (MKLDNExtension *target) {
    _target = target;
}

void MockMKLDNNExtensionShared::GetVersion(const InferenceEngine::Version *& versionInfo) const noexcept {
    IF_NOT_NULL(GetVersion(versionInfo));
}

void MockMKLDNNExtensionShared::SetLogCallback(InferenceEngine::IErrorListener &listener) noexcept {
    IF_NOT_NULL(SetLogCallback(listener));
}

void MockMKLDNNExtensionShared::Unload() noexcept {
    IF_NOT_NULL(Unload());
}

InferenceEngine::StatusCode MockMKLDNNExtensionShared::CreateGenericPrimitive(GenericPrimitive*& primitive,
                                                   const InferenceEngine::CNNLayerPtr& layer,
                                                   InferenceEngine::ResponseDesc *resp) const noexcept  {

    return ACTION_IF_NOT_NULL(CreateGenericPrimitive(primitive, layer, resp));
}




MKLDNExtension * __target = nullptr;

INFERENCE_EXTENSION_API(StatusCode) CreateMKLDNNExtension(MKLDNExtension*& ext, ResponseDesc* resp) noexcept {
    try {
        ext = new MockMKLDNNExtensionShared(__target);
        return OK;
    }
    catch (std::exception&) {
        return GENERAL_ERROR;
    }
}

//INFERENCE_ENGINE_API( InferenceEngine::IInferencePlugin*) CreatePluginEngineProxy(InferenceEngine::IInferencePlugin * target) {
//    return new MockPlugin(target);
//}

INFERENCE_EXTENSION_API(void) InjectProxyMKLDNNExtension(MKLDNExtension * target) {
    __target = target;
}