mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-07 00:13:17 +00:00
18 lines
713 B
C++
18 lines
713 B
C++
#include "pch.h"
|
|||
#include "LearningModelSessionOptionsExperimental.h"
|
|||
#include "winrt/Windows.Foundation.Collections.h"
|
|||
#include "LearningModelSession.h"
|
|||
#include "iengine.h"
|
|||
|
|||
namespace WINML_EXPERIMENTALP {
|
|||
LearningModelSessionOptionsExperimental::LearningModelSessionOptionsExperimental(const winml::LearningModelSession& session) {
|
|||
com_ptr<WINMLP::LearningModelSession> session_impl = session.as<WINMLP::LearningModelSession>();
|
|||
_winml::IEngine* engine = session_impl->GetEngine();
|
|||
engine->GetNamedDimensionOverrides(overrides_);
|
|||
}
|
|||
|
|||
wfc::IMapView<winrt::hstring, uint32_t> LearningModelSessionOptionsExperimental::GetNamedDimensionOverrides() {
|
|||
return overrides_;
|
|||
}
|
|||
|
|||
} // namespace WINML_EXPERIMENTALP
|