mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
* Make DmlEp Clang compatible for EPIC * Fix build issues occurred when engine/lotus points to ORT Github latest * Fix more build errors * Fixed one build issue and removed temporary changes for Clang * Addressed comments on the PR. * [WIP] - DmlEp ORT NO Exception * Made DmlEp compatible with ORT_NO_EXCEPTION * Fixed typo * Addressed comments on the PR, mostly nit styling and using approriate HR error code * Added dependency of ErrorHandling.h * Addressed comment on the PR Co-authored-by: Sumit Agarwal <sumitagarwal@microsoft.com>
13 lines
290 B
C
13 lines
290 B
C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "onnx.h"
|
|
#include "wil/wrl.h"
|
|
#include "dx.h"
|
|
|
|
#if USE_DML
|
|
#include <DirectML.h>
|
|
#include "core/providers/dml/DmlExecutionProvider/src/ErrorHandling.h"
|
|
#endif USE_DML
|