mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-04 23:59:56 +00:00
* Add winml macro wrappers on top of google test macros * change test methods to disabled * Add custom winml macros for both taef and google tests * PR comments * Refactor winml api tests * Move additional gtest specific macro definition into googleTestMacros.h
32 lines
No EOL
858 B
C++
32 lines
No EOL
858 B
C++
//-----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
// stl
|
|
#include <algorithm>
|
|
#include <codecvt>
|
|
#include <fcntl.h>
|
|
#include <future>
|
|
#include <io.h>
|
|
#include <locale>
|
|
#include <numeric>
|
|
#include <random>
|
|
#include <string_view>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "test.h"
|
|
|
|
// IUnknown must be declared before winrt/base.h is included to light up support for native COM
|
|
// interfaces with C++/WinRT types (e.g. winrt::com_ptr<ITensorNative>).
|
|
#include <Unknwn.h>
|
|
#include "winrt/base.h"
|
|
#include "winrt/Windows.Foundation.Collections.h"
|
|
#include "comp_generated/winrt/windows.ai.machinelearning.h"
|
|
|
|
// WinML
|
|
#include "Windows.AI.MachineLearning.Native.h" |