2021-08-23 18:19:03 +00:00
|
|
|
#include "lib/Api.Experimental/pch/pch.h"
|
2021-01-22 23:15:53 +00:00
|
|
|
|
|
|
|
|
#include "LearningModelSessionOptionsExperimental.h"
|
|
|
|
|
#include "LearningModelSessionExperimental.h"
|
|
|
|
|
|
|
|
|
|
namespace WINML_EXPERIMENTALP {
|
|
|
|
|
|
2023-07-26 04:56:50 +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);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-26 04:56:50 +00:00
|
|
|
} // namespace WINML_EXPERIMENTALP
|