onnxruntime/winml/lib/Api.Experimental/LearningModelJoinOptions.cpp
Justin Chu 416dc2e84d
Fix clang-format comment indents on Windows for winml/ (#17144)
On Windows, clang-format has a bug when AlignTrailingComments.Kind is
set to `Leave`
(https://clang.llvm.org/docs/ClangFormatStyleOptions.html#aligntrailingcomments),
where it will keep adding indentation to comments after each formatting
runs.

This PR changes to always align comments so we do not hit the bug.

As a consequence of the options change we need to reformat some of the
files. Note that this option is aligned with the rest of the repository.
2023-08-14 23:50:14 -04:00

43 lines
1.4 KiB
C++

#include "lib/Api.Experimental/pch/pch.h"
#include "LearningModelJoinOptions.h"
namespace WINML_EXPERIMENTALP {
LearningModelJoinOptions::LearningModelJoinOptions() {
GUID guid;
WINML_THROW_IF_FAILED(CoCreateGuid(&guid));
OLECHAR* guidString;
WINML_THROW_IF_FAILED(StringFromCLSID(guid, &guidString));
join_prefix_ = winrt::to_string(winrt::hstring(guidString));
// ensure memory is freed
::CoTaskMemFree(guidString);
}
bool LearningModelJoinOptions::PromoteUnlinkedOutputsToFusedOutputs() {
return promote_unlinked_outputs_;
}
void LearningModelJoinOptions::PromoteUnlinkedOutputsToFusedOutputs(bool value) {
promote_unlinked_outputs_ = value;
}
winrt::hstring LearningModelJoinOptions::JoinedNodePrefix() {
return winrt::to_hstring(join_prefix_);
}
void LearningModelJoinOptions::JoinedNodePrefix(hstring const& join_prefix) {
join_prefix_ = winrt::to_string(join_prefix);
}
bool LearningModelJoinOptions::CloseModelOnJoin() {
return close_model_on_link_;
}
void LearningModelJoinOptions::CloseModelOnJoin(bool value) {
close_model_on_link_ = value;
}
void LearningModelJoinOptions::Link(hstring const& firstModelOutput, hstring const& secondModelInput) {
linkages_[winrt::to_string(firstModelOutput)] = winrt::to_string(secondModelInput);
}
const std::unordered_map<std::string, std::string>& LearningModelJoinOptions::GetLinkages() {
return linkages_;
}
} // namespace WINML_EXPERIMENTALP