diff options
Diffstat (limited to 'onnxruntime-1.8.1/build/native/include/provider_options.h')
-rw-r--r-- | onnxruntime-1.8.1/build/native/include/provider_options.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/onnxruntime-1.8.1/build/native/include/provider_options.h b/onnxruntime-1.8.1/build/native/include/provider_options.h new file mode 100644 index 0000000..0e084c0 --- /dev/null +++ b/onnxruntime-1.8.1/build/native/include/provider_options.h @@ -0,0 +1,18 @@ +// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+#pragma once
+
+#include <string>
+#include <unordered_map>
+#include <vector>
+
+namespace onnxruntime {
+
+// data types for execution provider options
+
+using ProviderOptions = std::unordered_map<std::string, std::string>;
+using ProviderOptionsVector = std::vector<ProviderOptions>;
+using ProviderOptionsMap = std::unordered_map<std::string, ProviderOptions>;
+
+} // namespace onnxruntime
|