|
|
|||
File indexing completed on 2025-12-16 10:20:35
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
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|