multi_device_config.hpp
Go to the documentation of this file.
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 /**
6  * @brief A header that defines advanced related properties for Multi_Device plugin.
7  * These properties should be used in SetConfig() and LoadNetwork() methods
8  *
9  * @file multi_device_config.hpp
10  */
11 
12 #pragma once
13 
14 #include <string>
15 #include "ie_plugin_config.hpp"
16 
17 namespace InferenceEngine {
18 
19 namespace MultiDeviceConfigParams {
20 
21 #define MULTI_CONFIG_KEY(name) InferenceEngine::MultiDeviceConfigParams::_CONFIG_KEY(MULTI_##name)
22 #define DECLARE_MULTI_CONFIG_KEY(name) DECLARE_CONFIG_KEY(MULTI_##name)
23 #define DECLARE_MULTI_CONFIG_VALUE(name) DECLARE_CONFIG_VALUE(MULTI_##name)
24 
25 /**
26  * @brief Device Priorities config option, with comma-separated devices listed in the desired priority
27  */
28  DECLARE_MULTI_CONFIG_KEY(DEVICE_PRIORITIES);
29 
30 } // namespace MultiDeviceConfigParams
31 } // namespace InferenceEngine
Definition: ie_argmax_layer.hpp:11
a header for advanced hardware related properties for clDNN plugin To use in SetConfig() method of pl...