2021-08-11 07:37:36 +00:00
|
|
|
#include "pch.h"
|
2021-01-22 23:15:53 +00:00
|
|
|
|
|
|
|
|
#include "LearningModelSessionOptionsExperimental.h"
|
|
|
|
|
#include "LearningModelSessionExperimental.h"
|
|
|
|
|
|
|
|
|
|
namespace WINML_EXPERIMENTALP {
|
|
|
|
|
|
2021-02-12 22:17:10 +00:00
|
|
|
LearningModelSessionExperimental::LearningModelSessionExperimental(const winml::LearningModelSession& session) :
|
|
|
|
|
_session(session) {
|
2021-01-22 23:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WINML_EXPERIMENTAL::LearningModelSessionOptionsExperimental LearningModelSessionExperimental::Options() {
|
|
|
|
|
return winrt::make<WINML_EXPERIMENTALP::LearningModelSessionOptionsExperimental>(_session);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace WINML_EXPERIMENTALP
|