mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-06 04:28:32 +00:00
18 lines
546 B
C++
18 lines
546 B
C++
#include "pch.h"
|
|||
|
|||
#include "LearningModelSessionOptionsExperimental.h"
|
|||
#include "LearningModelSessionExperimental.h"
|
|||
|
|||
namespace WINML_EXPERIMENTALP {
|
|||
|
|||
LearningModelSessionExperimental::LearningModelSessionExperimental(const winml::LearningModelSession& session) : _session(session) {
|
|||
int i = 0;
|
|||
i++;
|
|||
}
|
|||
|
|||
|
|||
WINML_EXPERIMENTAL::LearningModelSessionOptionsExperimental LearningModelSessionExperimental::Options() {
|
|||
return winrt::make<WINML_EXPERIMENTALP::LearningModelSessionOptionsExperimental>(_session);
|
|||
}
|
|||
|
|||
} // namespace WINML_EXPERIMENTALP
|