Open zhangjun opened 2 years ago
struct OrtSessionOptions { onnxruntime::SessionOptions value; std::vector<OrtCustomOpDomain*> custom_op_domains_; std::vector<std::shared_ptr<onnxruntime::IExecutionProviderFactory>> provider_factories; OrtSessionOptions() = default; ~OrtSessionOptions(); OrtSessionOptions(const OrtSessionOptions& other); OrtSessionOptions& operator=(const OrtSessionOptions& other); };
core/session/provider_bridge_ort.cc ORT_API_STATUS_IMPL
core/providers/get_execution_providers.cc
const std::vector<std::string>& GetAllExecutionProviderNames(); const std::vector<std::string>& GetAvailableExecutionProviderNames();
struct TensorrtExecutionProviderInfo { int device_id{0}; bool has_user_compute_stream{false}; void* user_compute_stream{nullptr}; bool has_trt_options{false}; int max_partition_iterations{1000}; int min_subgraph_size{1}; size_t max_workspace_size{1 << 30}; bool fp16_enable{false}; bool int8_enable{false}; std::string int8_calibration_table_name{""}; bool int8_use_native_calibration_table{false}; bool dla_enable{false}; int dla_core{0}; bool dump_subgraphs{false}; bool engine_cache_enable{false}; std::string engine_cache_path{""}; bool engine_decryption_enable{false}; std::string engine_decryption_lib_path{""}; bool force_sequential_engine_build{false}; static TensorrtExecutionProviderInfo FromProviderOptions(const ProviderOptions& options); static ProviderOptions ToProviderOptions(const TensorrtExecutionProviderInfo& info); static ProviderOptions ToProviderOptions(const OrtTensorRTProviderOptions& info); };
ONNX Runtime
core/session/provider_bridge_ort.cc ORT_API_STATUS_IMPL
core/providers/get_execution_providers.cc
TensorrtExecutionProviderInfo