onnxruntime/winml/lib/Api.Experimental/LearningModelSessionOptionsExperimental.h
Ori Levari 6507b4f818
Reintroduce experimental api changes and fix remote build break (#6385)
Co-authored-by: Ori Levari <orlevari@microsoft.com>
2021-01-22 15:15:53 -08:00

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