mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
* model building * fix build * winml adapter model building api * model building * make build * make build again * add model building with audio op * inplace and inorder fft * add ifft * works! * cleanup * add comments * switch to iterative rather than recursive and use parallelization * batched parallelization * fft->dft * cleanup * window functions * add melweightmatrix op * updates to make spectrogram test work * push latest * add onesided * cleanup * Clean up building apis and fix mel * cleanup * cleanup * naive stft * fix test output * middle c complete * 3 tones * cleanup * signal def new line * Add save functionality * Perf improvements, 10x improvement * cleanup * use bitreverse lookup table for performance * implement constant initializers for tensors * small changes * add matmul tests * merge issues * support add attribute * add tests for double data type windowfunctions and minor cleanup * stft onesided/and not tests * cleanup * cleanup * clean up * cleanup * remove threading attribute * forward declare orttypeinfo * warnings * fwd declare * fix warnings * 1 more warning * remove saving to e drive... * cleanup and fix stft test * add opset picker * small additions * add onnxruntime tests * add signed/unsigned * fix warning * fix warning * finish onnxruntime tests * make windows namespace build succeed * add experimental flag * add experimental api into nuget package * add experimental api build flag and add to windows ai nuget package * turn experimental for tests * add minimum opset version to new experimental domain * api cleanup * disable ms experimental ops test when --ms_experimental is not enabled * add macro behind flag * remove unused x * pr feedback Co-authored-by: Sheil Kumar <sheilk@microsoft.com>
106 lines
No EOL
3 KiB
C++
106 lines
No EOL
3 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "pch.h"
|
|
|
|
#include "LearningModel.h"
|
|
|
|
#include "TensorFeatureDescriptor.h"
|
|
|
|
namespace WINMLP {
|
|
TensorFeatureDescriptor::TensorFeatureDescriptor(
|
|
const char* name,
|
|
const char* description,
|
|
winml::TensorKind tensor_kind,
|
|
const std::vector<int64_t>& shape,
|
|
bool is_required,
|
|
bool has_unsupported_image_metadata) : name_(_winml::Strings::HStringFromUTF8(name)),
|
|
description_(_winml::Strings::HStringFromUTF8(description)),
|
|
tensor_kind_(tensor_kind),
|
|
shape_(shape),
|
|
is_required_(is_required),
|
|
has_unsupported_image_metadata_(has_unsupported_image_metadata) {
|
|
}
|
|
|
|
TensorFeatureDescriptor::TensorFeatureDescriptor(
|
|
hstring const& name,
|
|
hstring const& description,
|
|
winml::TensorKind const& kind,
|
|
array_view<int64_t const> shape) : name_(name),
|
|
description_(description),
|
|
tensor_kind_(kind),
|
|
shape_(shape.begin(), shape.end()),
|
|
is_required_(true),
|
|
has_unsupported_image_metadata_(false) {
|
|
}
|
|
|
|
winml::TensorKind
|
|
TensorFeatureDescriptor::TensorKind() try {
|
|
return tensor_kind_;
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
wfc::IVectorView<int64_t>
|
|
TensorFeatureDescriptor::Shape() try {
|
|
return winrt::single_threaded_vector<int64_t>(
|
|
std::vector<int64_t>(
|
|
std::begin(shape_),
|
|
std::end(shape_)))
|
|
.GetView();
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
winrt::hstring
|
|
TensorFeatureDescriptor::Name() try {
|
|
return name_;
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
winrt::hstring
|
|
TensorFeatureDescriptor::Description() try {
|
|
return description_;
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
winml::LearningModelFeatureKind
|
|
TensorFeatureDescriptor::Kind() try {
|
|
return LearningModelFeatureKind::Tensor;
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
bool TensorFeatureDescriptor::IsRequired() try {
|
|
return is_required_;
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
bool TensorFeatureDescriptor::IsUnsupportedMetaData() try {
|
|
return has_unsupported_image_metadata_;
|
|
}
|
|
WINML_CATCH_ALL
|
|
|
|
HRESULT
|
|
TensorFeatureDescriptor::GetName(
|
|
const wchar_t** name,
|
|
uint32_t* cchName) {
|
|
*name = name_.data();
|
|
*cchName = static_cast<uint32_t>(name_.size());
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT
|
|
TensorFeatureDescriptor::GetDescription(
|
|
const wchar_t** description,
|
|
uint32_t* cchDescription) {
|
|
*description = description_.data();
|
|
*cchDescription = static_cast<uint32_t>(description_.size());
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT TensorFeatureDescriptor::GetDescriptorInfo(
|
|
_winml::IEngineFactory* engine_factory,
|
|
_winml::IDescriptorInfo** info){
|
|
engine_factory->CreateTensorDescriptorInfo(tensor_kind_, shape_.data(), shape_.size(), info);
|
|
return S_OK;
|
|
};
|
|
|
|
} // namespace WINMLP
|