forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added common.hpp file with aliases (openvinotoolkit#7158)
- Loading branch information
1 parent
d8704a1
commit 4d0c11b
Showing
3 changed files
with
83 additions
and
67 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
inference-engine/src/inference_engine/include/openvino/runtime/common.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (C) 2018-2021 Intel Corporation | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
/** | ||
* @brief This is a header file for the OpenVINO Runtime common aliases that depend only from external API | ||
* | ||
* @file openvino/runtime/common.hpp | ||
*/ | ||
#pragma once | ||
|
||
#include <map> | ||
#include <string> | ||
|
||
namespace ov { | ||
namespace ie = InferenceEngine; | ||
namespace runtime { | ||
/** | ||
* @brief This type of map is commonly used to pass set of parameters | ||
*/ | ||
using ConfigMap = std::map<std::string, std::string>; | ||
} // namespace runtime | ||
} // namespace ov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters