mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
* Migrate winml to Microsoft Namespace (packaging changes are pending) * add ns_prefix toggle * fix packaging * Users/sheilk/add missing raw header (#3484) * add dualapipartition * wrong variable for repo root Co-authored-by: Sheil Kumar <sheilk@microsoft.com> * remove existence check to force failures * extra paren * dualapipartition needs to be referenced from the source * add microsoft.ai.machinelearning.dll to the output dir * rename the idl file so that assembly info is correctly added into the winmd * fix namespaces * update namespaces * default to microsoft, and add namespace override as build argument * update cmakesetings.json as well * remove from cmakelists.txt Co-authored-by: Sheil Kumar <sheilk@microsoft.com> Co-authored-by: Changming Sun <chasun@microsoft.com>
128 lines
3.7 KiB
C++
128 lines
3.7 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "TensorKindFrom.h"
|
|
|
|
#include "MapFeatureDescriptor.h"
|
|
#include "TensorFeatureDescriptor.h"
|
|
|
|
namespace _winml {
|
|
|
|
//
|
|
// MapBase
|
|
//
|
|
// This is the base class for all data based Map types.
|
|
//
|
|
// Supported derived classes:
|
|
// <String, Float>, <String, Int64>, <String, Double>, <String, String>
|
|
// <Int64, Float>, <Int64, Int64>, <Int64, Double>, <Int64, String>
|
|
//
|
|
template <
|
|
typename TDerived,
|
|
typename TKey,
|
|
typename TValue>
|
|
struct MapBase : winrt::implements<
|
|
MapBase<TDerived, TKey, TValue>,
|
|
winml::ILearningModelFeatureValue,
|
|
_winml::IMapFeatureValue,
|
|
_winml::ILotusValueProviderPrivate> {
|
|
static_assert(
|
|
std::is_same<TKey, int64_t>::value ||
|
|
std::is_same<TKey, winrt::hstring>::value,
|
|
"Map keys must be int64_t or winrt::hstring!");
|
|
|
|
static_assert(
|
|
std::is_same<TValue, int64_t>::value ||
|
|
std::is_same<TValue, double>::value ||
|
|
std::is_same<TValue, float>::value ||
|
|
std::is_same<TValue, winrt::hstring>::value,
|
|
"Map values must be int64_t, double, float, or winrt::hstring!");
|
|
|
|
using ABIMap = wfc::IMap<TKey, TValue>;
|
|
using ABIMapView = wfc::IMapView<TKey, TValue>;
|
|
|
|
MapBase(ABIMap const& data) : data_(data) {}
|
|
|
|
static winml::ILearningModelFeatureValue Create() {
|
|
auto abiMap = winrt::single_threaded_map<TKey, TValue>();
|
|
return winrt::make<TDerived>(abiMap);
|
|
}
|
|
|
|
static winml::ILearningModelFeatureValue Create(const ABIMap& data) {
|
|
return winrt::make<TDerived>(data);
|
|
}
|
|
|
|
static winml::ILearningModelFeatureValue Create(const ABIMapView& data) {
|
|
auto abiMap = winrt::single_threaded_map<TKey, TValue>();
|
|
for (const auto& pair : data) {
|
|
auto key = pair.Key();
|
|
auto value = pair.Value();
|
|
abiMap.Insert(key, value);
|
|
}
|
|
|
|
return winrt::make<TDerived>(abiMap);
|
|
}
|
|
// ILearningModelFeatureValue implementation
|
|
winml::LearningModelFeatureKind Kind() {
|
|
return winml::LearningModelFeatureKind::Map;
|
|
}
|
|
|
|
STDMETHOD(get_KeyKind)
|
|
(winml::TensorKind* kind) {
|
|
FAIL_FAST_IF_NULL(kind);
|
|
*kind = TensorKindFrom<TKey>::Type;
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHOD(get_ValueDescriptor)
|
|
(winml::ILearningModelFeatureDescriptor* result) {
|
|
FAIL_FAST_IF_NULL(result);
|
|
|
|
*result = TensorFeatureDescriptorFrom<TValue>::CreateAnonymous(std::vector<int64_t>{});
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHOD(GetValue)
|
|
(_winml::BindingContext& context, IValue** out) {
|
|
auto session = context.session.as<winmlp::LearningModelSession>();
|
|
auto engine = session->GetEngine();
|
|
|
|
if (context.type == _winml::BindingType::kInput) {
|
|
RETURN_IF_FAILED(engine->CreateMapValue(reinterpret_cast<::IInspectable*>(winrt::get_abi(data_)), TensorKindFrom<TKey>::Type, TensorKindFrom<TValue>::Type, out));
|
|
} else {
|
|
RETURN_IF_FAILED(engine->CreateNullValue(out));
|
|
}
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHOD(IsPlaceholder)
|
|
(bool* pIsPlaceHolder) {
|
|
FAIL_FAST_IF_NULL(pIsPlaceHolder);
|
|
*pIsPlaceHolder = false;
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHOD(UpdateSourceResourceData)
|
|
(BindingContext& context, IValue* value) {
|
|
data_.Clear();
|
|
auto session = context.session.as<winmlp::LearningModelSession>();
|
|
auto engine = session->GetEngine();
|
|
RETURN_IF_FAILED(engine->FillFromMapValue(reinterpret_cast<::IInspectable*>(winrt::get_abi(data_)), TensorKindFrom<TKey>::Type, TensorKindFrom<TValue>::Type, value));
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHOD(AbiRepresentation)
|
|
(
|
|
wf::IInspectable& abiRepresentation) {
|
|
data_.as(abiRepresentation);
|
|
return S_OK;
|
|
}
|
|
|
|
private:
|
|
ABIMap data_;
|
|
};
|
|
|
|
} // namespace _winml
|