mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
17 lines
502 B
C++
17 lines
502 B
C++
#pragma once
|
|
|
|
#include "LearningModelSessionOptionsExperimental.g.h"
|
|
|
|
namespace WINML_EXPERIMENTALP {
|
|
|
|
struct LearningModelSessionOptionsExperimental : LearningModelSessionOptionsExperimentalT<LearningModelSessionOptionsExperimental>
|
|
{
|
|
LearningModelSessionOptionsExperimental(const winml::LearningModelSession& options);
|
|
|
|
wfc::IMapView<winrt::hstring, uint32_t> GetNamedDimensionOverrides();
|
|
|
|
private:
|
|
wfc::IMapView<winrt::hstring, uint32_t> overrides_;
|
|
};
|
|
|
|
} // namespace WINML_EXPERIMENTALP
|