Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-08-27 09:38:45

0001 // Copyright (c) Microsoft Corporation. All rights reserved.
0002 // Licensed under the MIT License.
0003 
0004 #pragma once
0005 
0006 #include <string>
0007 #include <unordered_map>
0008 #include <vector>
0009 
0010 namespace onnxruntime {
0011 
0012 // data types for execution provider options
0013 
0014 using ProviderOptions = std::unordered_map<std::string, std::string>;
0015 using ProviderOptionsVector = std::vector<ProviderOptions>;
0016 using ProviderOptionsMap = std::unordered_map<std::string, ProviderOptions>;
0017 
0018 }  // namespace onnxruntime