mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
winml/ was previously excluded from lintrunner config. This change includes the directory and adds the clang-format config file specific to winml/ that fits existing style. --------- Signed-off-by: Justin Chu <justinchu@microsoft.com>
24 lines
823 B
C++
24 lines
823 B
C++
#pragma once
|
|
|
|
#include "LearningModelSessionExperimental.g.h"
|
|
|
|
namespace WINML_EXPERIMENTALP {
|
|
|
|
struct LearningModelSessionExperimental : LearningModelSessionExperimentalT<LearningModelSessionExperimental> {
|
|
LearningModelSessionExperimental(const winml::LearningModelSession& session);
|
|
|
|
WINML_EXPERIMENTAL::LearningModelSessionOptionsExperimental Options();
|
|
|
|
private:
|
|
winml::LearningModelSession _session;
|
|
};
|
|
|
|
} // namespace WINML_EXPERIMENTALP
|
|
|
|
namespace WINML_EXPERIMENTAL::factory_implementation {
|
|
|
|
struct LearningModelSessionExperimental : LearningModelSessionExperimentalT<
|
|
LearningModelSessionExperimental,
|
|
implementation::LearningModelSessionExperimental> {};
|
|
|
|
} // namespace WINML_EXPERIMENTAL::factory_implementation
|