onnxruntime/winml/lib/Api.Experimental/LearningModelJoinOptions.h
Justin Chu eeef157888
Format c++ code under winml/ (#16660)
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>
2023-07-25 21:56:50 -07:00

36 lines
1.1 KiB
C++

#pragma once
#include "LearningModelJoinOptions.g.h"
namespace WINML_EXPERIMENTALP {
struct LearningModelJoinOptions : LearningModelJoinOptionsT<LearningModelJoinOptions> {
LearningModelJoinOptions();
bool PromoteUnlinkedOutputsToFusedOutputs();
void PromoteUnlinkedOutputsToFusedOutputs(bool value);
winrt::hstring JoinedNodePrefix();
void JoinedNodePrefix(hstring const& join_prefix);
bool CloseModelOnJoin();
void CloseModelOnJoin(bool value);
void Link(hstring const& firstModelOutput, hstring const& secondModelInput);
public:
const std::unordered_map<std::string, std::string>& GetLinkages();
private:
bool promote_unlinked_outputs_ = true;
bool promote_unlinked_inputs_ = true;
bool close_model_on_link_ = false;
std::unordered_map<std::string, std::string> linkages_;
std::string join_prefix_;
};
} // namespace WINML_EXPERIMENTALP
namespace WINML_EXPERIMENTAL::factory_implementation {
struct LearningModelJoinOptions
: LearningModelJoinOptionsT<LearningModelJoinOptions, implementation::LearningModelJoinOptions> {};
}// namespace WINML_EXPERIMENTAL::factory_implementation