hetero_plugin_config.hpp
Go to the documentation of this file.
1 // Copyright (C) 2018-2020 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 /**
6  * @brief A header that defines advanced related properties for Heterogeneous plugins.
7  * These properties should be used in SetConfig() and LoadNetwork() methods of plugins
8  *
9  * @file hetero_plugin_config.hpp
10  */
11 
12 #pragma once
13 
14 #include <string>
15 #include <vector>
16 
17 #include "ie_plugin_config.hpp"
18 
19 namespace InferenceEngine {
20 
21 /**
22  * @brief Heterogeneous plugin configuration
23  */
24 namespace HeteroConfigParams {
25 
26 /**
27  * @def HETERO_CONFIG_KEY(name)
28  * @brief Shortcut for defining HETERO configuration keys
29  */
30 #define HETERO_CONFIG_KEY(name) InferenceEngine::HeteroConfigParams::_CONFIG_KEY(HETERO_##name)
31 #define DECLARE_HETERO_CONFIG_KEY(name) DECLARE_CONFIG_KEY(HETERO_##name)
32 #define DECLARE_HETERO_CONFIG_VALUE(name) DECLARE_CONFIG_VALUE(HETERO_##name)
33 
34 /**
35  * @brief The key for enabling of dumping the topology with details of layers and details how
36  * this network would be executed on different devices to the disk in GraphViz format.
37  * This option should be used with values: CONFIG_VALUE(NO) (default) or CONFIG_VALUE(YES)
38  */
39 DECLARE_HETERO_CONFIG_KEY(DUMP_GRAPH_DOT);
40 
41 } // namespace HeteroConfigParams
42 } // namespace InferenceEngine
Inference Engine API.
Definition: ie_argmax_layer.hpp:15
a header for advanced hardware related properties for IE plugins