mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-25 22:26:24 +00:00
* commetns for dml graph transformer fixed ort value passing using the allocatir info * fixed and coded maps and sequences across the abi * cleaned up w4's cleaned up the model info ABI delayload directml.dll from winml * cleaned up namepsace aliases. renamed _winmla to winmla this was good PR feedback from tiago a while back.
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
namespace winrt::Windows::Foundation {}
|
|
namespace wf = ::winrt::Windows::Foundation;
|
|
|
|
namespace winrt::Windows::Foundation::Collections {}
|
|
namespace wfc = ::winrt::Windows::Foundation::Collections;
|
|
|
|
namespace winrt::Windows::Graphics {}
|
|
namespace wg = winrt::Windows::Graphics;
|
|
|
|
namespace winrt::Windows::Graphics::DirectX {}
|
|
namespace wgdx = winrt::Windows::Graphics::DirectX;
|
|
|
|
namespace winrt::Windows::Graphics::Imaging {}
|
|
namespace wgi = ::winrt::Windows::Graphics::Imaging;
|
|
|
|
namespace winrt::Windows::Storage {}
|
|
namespace ws = ::winrt::Windows::Storage;
|
|
|
|
namespace winrt::Windows::Storage::Streams {}
|
|
namespace wss = ::winrt::Windows::Storage::Streams;
|
|
|
|
namespace winrt::Windows::AI::MachineLearning {}
|
|
namespace winml = ::winrt::Windows::AI::MachineLearning;
|
|
|
|
namespace winrt::Windows::AI::MachineLearning::implementation {}
|
|
namespace winmlp = ::winrt::Windows::AI::MachineLearning::implementation;
|
|
|
|
namespace Windows::AI::MachineLearning::Adapter {}
|
|
namespace winmla = ::Windows::AI::MachineLearning::Adapter;
|
|
|
|
namespace Windows::AI::MachineLearning {}
|
|
namespace WinML = ::Windows::AI::MachineLearning;
|
|
|
|
namespace Windows::AI::MachineLearning::Telemetry {}
|
|
namespace _winmlt = ::Windows::AI::MachineLearning::Telemetry;
|