HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
provider_options.h
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License.
3 
4 #pragma once
5 
6 #include <string>
7 #include <unordered_map>
8 #include <vector>
9 
10 namespace onnxruntime {
11 
12 // data types for execution provider options
13 
14 using ProviderOptions = std::unordered_map<std::string, std::string>;
15 using ProviderOptionsVector = std::vector<ProviderOptions>;
16 using ProviderOptionsMap = std::unordered_map<std::string, ProviderOptions>;
17 
18 } // namespace onnxruntime
std::unordered_map< std::string, ProviderOptions > ProviderOptionsMap
std::unordered_map< std::string, std::string > ProviderOptions
std::vector< ProviderOptions > ProviderOptionsVector