2021-01-22 23:15:53 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "LearningModelSessionExperimental.g.h"
|
|
|
|
|
|
|
|
|
|
namespace WINML_EXPERIMENTALP {
|
|
|
|
|
|
|
|
|
|
struct LearningModelSessionExperimental : LearningModelSessionExperimentalT<LearningModelSessionExperimental> {
|
|
|
|
|
LearningModelSessionExperimental(const winml::LearningModelSession& session);
|
|
|
|
|
|
|
|
|
|
WINML_EXPERIMENTAL::LearningModelSessionOptionsExperimental Options();
|
|
|
|
|
|
2023-07-26 04:56:50 +00:00
|
|
|
private:
|
2021-01-22 23:15:53 +00:00
|
|
|
winml::LearningModelSession _session;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace WINML_EXPERIMENTALP
|
|
|
|
|
|
|
|
|
|
namespace WINML_EXPERIMENTAL::factory_implementation {
|
|
|
|
|
|
2023-07-26 04:56:50 +00:00
|
|
|
struct LearningModelSessionExperimental : LearningModelSessionExperimentalT<
|
|
|
|
|
LearningModelSessionExperimental,
|
|
|
|
|
implementation::LearningModelSessionExperimental> {};
|
2021-01-22 23:15:53 +00:00
|
|
|
|
2023-07-26 04:56:50 +00:00
|
|
|
} // namespace WINML_EXPERIMENTAL::factory_implementation
|