mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
* Add ConcurrencyTests * Make ConcurrencyTests compatible with TAEF * Use test PCH in concurrency tests * Fix include header * Ignore unused code warnings on WINML_SKIP_TEST * Remove BOM * Remove conflicting namespace in older SDK * Refactor duplicate code * Fix unused DELAYLOAD * Fix unused DELAYLOAD * Remove link to internal bug * Address code style fixes * Add new concurrency tests
27 lines
846 B
C++
27 lines
846 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "std.h"
|
|
|
|
enum OutputBindingStrategy { Bound, Unbound, Empty };
|
|
|
|
namespace WinML::Engine::Test::ModelValidator
|
|
{
|
|
void FnsCandy16(
|
|
const std::string& instance,
|
|
winrt::Windows::AI::MachineLearning::LearningModelDeviceKind deviceKind,
|
|
OutputBindingStrategy outputBindingStrategy,
|
|
bool bindInputsAsIInspectable,
|
|
float dataTolerance = false);
|
|
|
|
void SqueezeNet(
|
|
const std::string& instance,
|
|
winrt::Windows::AI::MachineLearning::LearningModelDeviceKind deviceKind,
|
|
float dataTolerance,
|
|
bool bindAsImage = false,
|
|
OutputBindingStrategy outputBindingStrategy = OutputBindingStrategy::Bound,
|
|
bool bindInputsAsIInspectable = false
|
|
);
|
|
}
|